You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-6Lines changed: 24 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -33,12 +33,14 @@ make install
33
33
2. Create your chain using the `spawn` command and customize it to your needs!
34
34
35
35
```shell
36
+
GITHUB_USERNAME=rollchains
37
+
36
38
spawn new rollchain \
37
-
--bech32=roll # the prefix for addresses \
38
-
--denom=uroll # the coin denomination to create \
39
-
--bin=rolld # the name of the binary \
40
-
--disabled=cosmwasm # modules to disable. By default all modules are enabled [tokenfactory, PoA, globalfee, cosmwasm] \
41
-
--org={your_github_username} # the github username or organization to use for the module imports
39
+
--bech32=roll `# the prefix for addresses` \
40
+
--denom=uroll `# the coin denomination to create` \
41
+
--bin=rolld `# the name of the binary` \
42
+
--disabled=cosmwasm `# modules to disable. By default all modules are enabled [tokenfactory, PoA, globalfee, cosmwasm]` \
43
+
--org=${GITHUB_USERNAME}`# the github username or organization to use for the module imports`
42
44
```
43
45
44
46
> *NOTE:*`spawn` creates a ready to use repository complete with `git` and GitHub CI. It can be quickly pushed to a new repository getting you and your team up and running quickly.
@@ -64,7 +66,23 @@ rolld tx bank send acc0 $(rolld keys show acc1 -a) 1337uroll --chain-id=chainid-
64
66
rolld q bank balances $(rolld keys show acc1 -a)
65
67
```
66
68
67
-
5. Push your new chain to a new repository
69
+
5. (optional) Send an IBC transaction
70
+
71
+
```shell
72
+
# submit a cross chain transfer from acc0 to the other address
73
+
rolld tx ibc-transfer transfer transfer channel-0 cosmos1hj5fveer5cjtn4wd6wstzugjfdxzl0xpxvjjvr 7uroll --from=acc0 --chain-id=chainid-1 --yes
74
+
75
+
# Query the other side to confirm it went through
76
+
sleep 10
77
+
78
+
curl -X POST -H "Content-Type: application/json" -d '{
"mnemonic": "decorate bright ozone fork gallery riot bus exhaust worth way bone indoor calm squirrel merry zero scheme cotton until shop any excess stage laundry"
0 commit comments