We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running the command to send funds from the address on parent network to the address on subnet:
ipc-cli cross-msg fund \ --from 0x203bE92E679AFc8aF781B00633b18B4F1103d16f \ --to 0x258392F3070739fa6D608cCB71ACAaa63fd42D10 \ --gateway-address 0x0341fA160C66aBB112195192aE359a6D61df45cd \ --subnet /r314159/t410fug7q7fgzeehfgr6qlubzs45z2sjzcbw3nbhpiyi \ 200
results in
[2023-11-14T10:58:23Z ERROR ipc_cli] main process failed: error processing command Some(CrossMsg(CrossMsgsCommandsArgs { command: Fund(FundArgs { gateway_address: Some("0x0341fA160C66aBB112195192aE359a6D61df45cd"), from: Some("0x203bE92E679AFc8aF781B00633b18B4F1103d16f"), to: Some("0x258392F3070739fa6D608cCB71ACAaa63fd42D10"), subnet: "/r314159/t410fug7q7fgzeehfgr6qlubzs45z2sjzcbw3nbhpiyi", amount: 200.0 }) })): Unknown address network
It works when the gateway-address parameter isn't provided and this address is just taken from the config.toml
config.toml
The text was updated successfully, but these errors were encountered:
My take on this one is we should not pass Gateway as a parameter any more and should use whatever is in the config. cc @adlrocha.
Gateway
Sorry, something went wrong.
My take on this one is we should not pass Gateway as a parameter any more and should use whatever is in the config
Yes, I agree with you. We should simplify the CLI to remove --gateway-address as a flag and leverage the config for everything.
--gateway-address
No branches or pull requests
Running the command to send funds from the address on parent network to the address on subnet:
results in
It works when the gateway-address parameter isn't provided and this address is just taken from the
config.toml
The text was updated successfully, but these errors were encountered: