File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ rly start gm_mocha-4
298
298
Transfer TIA from Mocha to our rollup:
299
299
300
300
``` bash
301
- ACCOUNT_ON_ROLLUP=" $( gmd keys show -a --keyring-backend test gm-key-2) "
301
+ ACCOUNT_ON_ROLLUP=" $( rollkit keys show -a --keyring-backend test gm-key-2) "
302
302
CHANNEL_ID_ON_MOCHA=" $( rly q channels mocha gm_rollup | jq -r .channel_id | tail -1) "
303
303
304
304
rly tx transfer mocha gm_rollup 1000000utia " $ACCOUNT_ON_ROLLUP " " $CHANNEL_ID_ON_MOCHA " --path gm_mocha-4
@@ -307,7 +307,7 @@ rly tx transfer mocha gm_rollup 1000000utia "$ACCOUNT_ON_ROLLUP" "$CHANNEL_ID_ON
307
307
Verify the account on our rollup is funded with IBC TIA:
308
308
309
309
``` bash
310
- gmd q bank balances " $( gmd keys show -a --keyring-backend test gm-key-2) "
310
+ rollkit q bank balances " $( rollkit keys show -a --keyring-backend test gm-key-2) "
311
311
# =>
312
312
# balances:
313
313
# - amount: "1000000"
@@ -323,10 +323,10 @@ gmd q bank balances "$(gmd keys show -a --keyring-backend test gm-key-2)"
323
323
Finally, send a transaction on our rollup using IBC TIA as the gas token:
324
324
325
325
``` bash
326
- ACCOUNT_ON_ROLLUP=" $( gmd keys show -a --keyring-backend test gm-key-2) "
326
+ ACCOUNT_ON_ROLLUP=" $( rollkit keys show -a --keyring-backend test gm-key-2) "
327
327
328
328
# Send the transaction
329
- TX_HASH=$( gmd tx bank send " $ACCOUNT_ON_ROLLUP " " $ACCOUNT_ON_ROLLUP " 1stake --keyring-backend test --chain-id gm --gas-prices 0.02ibc/C3E53D20BC7A4CC993B17C7971F8ECD06A433C10B6A96F4C4C3714F0624C56DA -y --output json | jq -r .txhash)
329
+ TX_HASH=$( rollkit tx bank send " $ACCOUNT_ON_ROLLUP " " $ACCOUNT_ON_ROLLUP " 1stake --keyring-backend test --chain-id gm --gas-prices 0.02ibc/C3E53D20BC7A4CC993B17C7971F8ECD06A433C10B6A96F4C4C3714F0624C56DA -y --output json | jq -r .txhash)
330
330
331
331
# Verify success
332
332
rollkit q tx " $TX_HASH " --output json | jq .code # => 0
You can’t perform that action at this time.
0 commit comments