From 813aa08f582ca4972d810b4dec96f60ccb6dfa9a Mon Sep 17 00:00:00 2001 From: Yasin Date: Thu, 10 Oct 2024 18:08:21 +0300 Subject: [PATCH] revert lib --- contracts/test/lib.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/test/lib.js b/contracts/test/lib.js index 6bc9b13d3..f69d2dcff 100644 --- a/contracts/test/lib.js +++ b/contracts/test/lib.js @@ -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}` } @@ -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}` } @@ -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}` }