Skip to content

Commit

Permalink
revert lib
Browse files Browse the repository at this point in the history
  • Loading branch information
kollegian committed Oct 10, 2024
1 parent 445b62e commit 813aa08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/test/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ async function getPointerForCw721(cw721Address) {
}

async function deployErc20PointerForCw20(provider, cw20Address, attempts=10, from=adminKeyName, evmRpc="") {
let command = `seid tx evm register-evm-pointer CW20 ${cw20Address} --from=${from} --fees=24200usei -b block`
let command = `seid tx evm register-evm-pointer CW20 ${cw20Address} --from=${from} -b block`
if (evmRpc) {
command = command + ` --evm-rpc=${evmRpc}`
}
Expand All @@ -234,7 +234,7 @@ async function deployErc20PointerForCw20(provider, cw20Address, attempts=10, fro
}

async function deployErc20PointerNative(provider, name, from=adminKeyName, evmRpc="") {
let command = `seid tx evm call-precompile pointer addNativePointer ${name} --from=${from} --fees=24200usei -b block`
let command = `seid tx evm call-precompile pointer addNativePointer ${name} --from=${from} -b block`
if (evmRpc) {
command = command + ` --evm-rpc=${evmRpc}`
}
Expand All @@ -253,7 +253,7 @@ async function deployErc20PointerNative(provider, name, from=adminKeyName, evmRp
}

async function deployErc721PointerForCw721(provider, cw721Address, from=adminKeyName, evmRpc="") {
let command = `seid tx evm register-evm-pointer CW721 ${cw721Address} --from=${from} --fees=24200usei -b block`
let command = `seid tx evm register-evm-pointer CW721 ${cw721Address} --from=${from} -b block`
if (evmRpc) {
command = command + ` --evm-rpc=${evmRpc}`
}
Expand Down

0 comments on commit 813aa08

Please sign in to comment.