Skip to content

Commit 4f76162

Browse files
committed
add ccudos configuration
1 parent c383fcc commit 4f76162

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

scripts/ibc/tokenregistration/generate-erc20-jsons.sh

+12
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,15 @@ sifnoded q tokenregistry generate \
106106
--token_permission_ibc_import=true -o json | jq > $SIFCHAIN_ID/cinj.json
107107

108108
echo "\n\ngenerated entry for cinj"
109+
110+
sifnoded q tokenregistry generate \
111+
--token_denom=ccudos \
112+
--token_base_denom=ccudos \
113+
--token_decimals=18 \
114+
--token_display_name="Cudos" \
115+
--token_external_symbol="CUDOS" \
116+
--token_permission_clp=true \
117+
--token_permission_ibc_export=true \
118+
--token_permission_ibc_import=true -o json | jq > $SIFCHAIN_ID/ccudos.json
119+
120+
echo "\n\ngenerated entry for ccudos"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"entries": [
3+
{
4+
"decimals": "18",
5+
"denom": "ccudos",
6+
"base_denom": "ccudos",
7+
"path": "",
8+
"ibc_channel_id": "",
9+
"ibc_counterparty_channel_id": "",
10+
"display_name": "Cudos",
11+
"display_symbol": "",
12+
"network": "",
13+
"address": "",
14+
"external_symbol": "CUDOS",
15+
"transfer_limit": "",
16+
"permissions": [
17+
"CLP",
18+
"IBCEXPORT",
19+
"IBCIMPORT"
20+
],
21+
"unit_denom": "",
22+
"ibc_counterparty_denom": "",
23+
"ibc_counterparty_chain_id": ""
24+
}
25+
]
26+
}

0 commit comments

Comments
 (0)