@juno-network/assets 0.13.0 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main/asset_list.js +152 -2
- package/main/assets.js +37 -0
- package/main/chain.js +75 -15
- package/main/testnet.js +8 -10
- package/module/asset_list.js +152 -2
- package/module/assets.js +37 -0
- package/module/chain.js +75 -15
- package/module/testnet.js +8 -10
- package/package.json +5 -5
- package/src/asset_list.ts +195 -2
- package/src/assets.ts +49 -0
- package/src/chain.ts +96 -17
- package/src/testnet.ts +10 -13
- package/types/index.d.ts +5 -5
package/module/chain.js
CHANGED
|
@@ -9,14 +9,12 @@ const chain = {
|
|
|
9
9
|
bech32_prefix: 'juno',
|
|
10
10
|
daemon_name: 'junod',
|
|
11
11
|
node_home: '$HOME/.juno',
|
|
12
|
-
genesis: {
|
|
13
|
-
genesis_url: 'https://download.dimi.sh/juno-phoenix2-genesis.tar.gz'
|
|
14
|
-
},
|
|
15
12
|
key_algos: ['secp256k1'],
|
|
16
13
|
slip44: 118,
|
|
17
14
|
fees: {
|
|
18
15
|
fee_tokens: [{
|
|
19
16
|
denom: 'ujuno',
|
|
17
|
+
fixed_min_gas_price: 0.0025,
|
|
20
18
|
low_gas_price: 0.03,
|
|
21
19
|
average_gas_price: 0.04,
|
|
22
20
|
high_gas_price: 0.05
|
|
@@ -29,12 +27,15 @@ const chain = {
|
|
|
29
27
|
},
|
|
30
28
|
codebase: {
|
|
31
29
|
git_repo: 'https://github.com/CosmosContracts/juno',
|
|
32
|
-
recommended_version: '
|
|
33
|
-
compatible_versions: ['
|
|
30
|
+
recommended_version: 'v11.0.0',
|
|
31
|
+
compatible_versions: ['v11.0.0'],
|
|
34
32
|
cosmos_sdk_version: '0.45',
|
|
35
33
|
tendermint_version: '0.34',
|
|
36
|
-
cosmwasm_version: '0.
|
|
37
|
-
cosmwasm_enabled: true
|
|
34
|
+
cosmwasm_version: '0.28',
|
|
35
|
+
cosmwasm_enabled: true,
|
|
36
|
+
genesis: {
|
|
37
|
+
genesis_url: 'https://download.dimi.sh/juno-phoenix2-genesis.tar.gz'
|
|
38
|
+
}
|
|
38
39
|
},
|
|
39
40
|
peers: {
|
|
40
41
|
seeds: [{
|
|
@@ -55,6 +56,10 @@ const chain = {
|
|
|
55
56
|
id: '20e1000e88125698264454a884812746c2eb4807',
|
|
56
57
|
address: 'seeds.lavenderfive.com:12656',
|
|
57
58
|
provider: 'Lavender.Five Nodes 🐝'
|
|
59
|
+
}, {
|
|
60
|
+
id: 'ea67180befe4d9ca71142d21ada8ff58cc08f71c',
|
|
61
|
+
address: 'seeds.goldenratiostaking.net:1627',
|
|
62
|
+
provider: 'Golden Ratio Staking'
|
|
58
63
|
}],
|
|
59
64
|
persistent_peers: [{
|
|
60
65
|
id: 'b1f46f1a1955fc773d3b73180179b0e0a07adce1',
|
|
@@ -101,15 +106,15 @@ const chain = {
|
|
|
101
106
|
}, {
|
|
102
107
|
address: 'https://juno-rpc.polkachu.com',
|
|
103
108
|
provider: 'Polkachu'
|
|
109
|
+
}, {
|
|
110
|
+
address: 'https://juno.rpc.interchain.ivaldilabs.xyz',
|
|
111
|
+
provider: 'Ivaldi Labs'
|
|
104
112
|
}, {
|
|
105
113
|
address: 'https://juno-rpc.lavenderfive.com:443',
|
|
106
114
|
provider: 'Lavender.Five Nodes 🐝'
|
|
107
115
|
}, {
|
|
108
116
|
address: 'https://rpc.juno.pupmos.network',
|
|
109
117
|
provider: 'PUPMØS'
|
|
110
|
-
}, {
|
|
111
|
-
address: 'https://rpc.junomint.com',
|
|
112
|
-
provider: 'EZStaking.io'
|
|
113
118
|
}, {
|
|
114
119
|
address: 'https://rpc-juno-ia.cosmosia.notional.ventures/',
|
|
115
120
|
provider: 'Notional'
|
|
@@ -117,8 +122,29 @@ const chain = {
|
|
|
117
122
|
address: 'https://rpc.juno.chaintools.tech/',
|
|
118
123
|
provider: 'ChainTools'
|
|
119
124
|
}, {
|
|
120
|
-
address: 'https://
|
|
125
|
+
address: 'https://rpc.juno.silknodes.io/',
|
|
126
|
+
provider: 'Silk Nodes'
|
|
127
|
+
}, {
|
|
128
|
+
address: 'https://juno-rpc.kleomedes.network',
|
|
121
129
|
provider: 'Kleomedes'
|
|
130
|
+
}, {
|
|
131
|
+
address: 'https://rpc.juno.interbloc.org',
|
|
132
|
+
provider: 'Interbloc'
|
|
133
|
+
}, {
|
|
134
|
+
address: 'https://juno.nodejumper.io',
|
|
135
|
+
provider: 'Nodejumper 🚀'
|
|
136
|
+
}, {
|
|
137
|
+
address: 'https://juno.rpc.stakin.com',
|
|
138
|
+
provider: 'Stakin'
|
|
139
|
+
}, {
|
|
140
|
+
address: 'https://juno-rpc.icycro.org',
|
|
141
|
+
provider: 'IcyCRO 🧊'
|
|
142
|
+
}, {
|
|
143
|
+
address: 'https://rpc-juno.goldenratiostaking.net',
|
|
144
|
+
provider: 'Golden Ratio Staking'
|
|
145
|
+
}, {
|
|
146
|
+
address: 'https://rpc.juno.bh.rocks',
|
|
147
|
+
provider: 'BlockHunters 🎯'
|
|
122
148
|
}],
|
|
123
149
|
rest: [{
|
|
124
150
|
address: 'https://lcd-juno.whispernode.com',
|
|
@@ -126,6 +152,9 @@ const chain = {
|
|
|
126
152
|
}, {
|
|
127
153
|
address: 'https://lcd-juno.itastakers.com',
|
|
128
154
|
provider: 'itastakers'
|
|
155
|
+
}, {
|
|
156
|
+
address: 'https://juno.rest.interchain.ivaldilabs.xyz',
|
|
157
|
+
provider: 'Ivaldi Labs'
|
|
129
158
|
}, {
|
|
130
159
|
address: 'https://rest-juno.ecostake.com',
|
|
131
160
|
provider: 'ecostake'
|
|
@@ -135,9 +164,6 @@ const chain = {
|
|
|
135
164
|
}, {
|
|
136
165
|
address: 'https://api.juno.pupmos.network',
|
|
137
166
|
provider: 'PUPMØS'
|
|
138
|
-
}, {
|
|
139
|
-
address: 'https://lcd.junomint.com',
|
|
140
|
-
provider: 'EZStaking.io'
|
|
141
167
|
}, {
|
|
142
168
|
address: 'https://api-juno-ia.cosmosia.notional.ventures/',
|
|
143
169
|
provider: 'Notional'
|
|
@@ -148,8 +174,23 @@ const chain = {
|
|
|
148
174
|
address: 'https://juno-api.polkachu.com',
|
|
149
175
|
provider: 'Polkachu'
|
|
150
176
|
}, {
|
|
151
|
-
address: 'https://
|
|
177
|
+
address: 'https://api.juno.silknodes.io/',
|
|
178
|
+
provider: 'Silk Nodes'
|
|
179
|
+
}, {
|
|
180
|
+
address: 'https://juno-api.kleomedes.network',
|
|
152
181
|
provider: 'Kleomedes'
|
|
182
|
+
}, {
|
|
183
|
+
address: 'https://api.juno.interbloc.org',
|
|
184
|
+
provider: 'Interbloc'
|
|
185
|
+
}, {
|
|
186
|
+
address: 'https://juno.nodejumper.io:1317',
|
|
187
|
+
provider: 'Nodejumper 🚀'
|
|
188
|
+
}, {
|
|
189
|
+
address: 'https://juno.rest.stakin.com',
|
|
190
|
+
provider: 'Stakin'
|
|
191
|
+
}, {
|
|
192
|
+
address: 'https://api.juno.bh.rocks',
|
|
193
|
+
provider: 'BlockHunters 🎯'
|
|
153
194
|
}],
|
|
154
195
|
grpc: [{
|
|
155
196
|
address: '35.243.205.230:9090',
|
|
@@ -166,9 +207,28 @@ const chain = {
|
|
|
166
207
|
}, {
|
|
167
208
|
address: 'juno-grpc.polkachu.com:12690',
|
|
168
209
|
provider: 'Polkachu'
|
|
210
|
+
}, {
|
|
211
|
+
address: 'https://grpc.juno.silknodes.io/',
|
|
212
|
+
provider: 'Silk Nodes'
|
|
213
|
+
}, {
|
|
214
|
+
address: 'juno.grpc.interchain.ivaldilabs.xyz:443',
|
|
215
|
+
provider: 'Ivaldi Labs'
|
|
216
|
+
}, {
|
|
217
|
+
address: 'https://juno.nodejumper.io:9090',
|
|
218
|
+
provider: 'Nodejumper 🚀'
|
|
219
|
+
}, {
|
|
220
|
+
address: 'juno.grpc.stakin.com:443',
|
|
221
|
+
provider: 'Stakin'
|
|
222
|
+
}, {
|
|
223
|
+
address: 'https://grpc.juno.bh.rocks:443',
|
|
224
|
+
provider: 'BlockHunters 🎯'
|
|
169
225
|
}]
|
|
170
226
|
},
|
|
171
227
|
explorers: [{
|
|
228
|
+
kind: 'EZStaking Tools',
|
|
229
|
+
url: 'https://ezstaking.tools/juno',
|
|
230
|
+
tx_page: 'https://ezstaking.tools/juno/txs/${txHash}'
|
|
231
|
+
}, {
|
|
172
232
|
kind: 'ping.pub',
|
|
173
233
|
url: 'https://ping.pub/juno',
|
|
174
234
|
tx_page: 'https://ping.pub/juno/tx/${txHash}'
|
package/module/testnet.js
CHANGED
|
@@ -8,9 +8,6 @@ const testnet = {
|
|
|
8
8
|
bech32_prefix: 'juno',
|
|
9
9
|
daemon_name: 'junod',
|
|
10
10
|
node_home: '$HOME/.juno',
|
|
11
|
-
genesis: {
|
|
12
|
-
genesis_url: 'https://raw.githubusercontent.com/CosmosContracts/testnets/main/uni-5/genesis.json'
|
|
13
|
-
},
|
|
14
11
|
key_algos: ['secp256k1'],
|
|
15
12
|
slip44: 118,
|
|
16
13
|
fees: {
|
|
@@ -33,7 +30,10 @@ const testnet = {
|
|
|
33
30
|
cosmos_sdk_version: '0.45',
|
|
34
31
|
tendermint_version: '0.34',
|
|
35
32
|
cosmwasm_version: '0.27',
|
|
36
|
-
cosmwasm_enabled: true
|
|
33
|
+
cosmwasm_enabled: true,
|
|
34
|
+
genesis: {
|
|
35
|
+
genesis_url: 'https://raw.githubusercontent.com/CosmosContracts/testnets/main/uni-5/genesis.json'
|
|
36
|
+
}
|
|
37
37
|
},
|
|
38
38
|
peers: {
|
|
39
39
|
seeds: [],
|
|
@@ -45,9 +45,6 @@ const testnet = {
|
|
|
45
45
|
},
|
|
46
46
|
apis: {
|
|
47
47
|
rpc: [{
|
|
48
|
-
address: 'https://rpc.uni.junomint.com',
|
|
49
|
-
provider: 'EZStaking.io'
|
|
50
|
-
}, {
|
|
51
48
|
address: 'https://rpc.uni.junonetwork.io',
|
|
52
49
|
provider: 'Juno'
|
|
53
50
|
}, {
|
|
@@ -55,9 +52,6 @@ const testnet = {
|
|
|
55
52
|
provider: 'Polkachu'
|
|
56
53
|
}],
|
|
57
54
|
rest: [{
|
|
58
|
-
address: 'https://lcd.uni.junomint.com',
|
|
59
|
-
provider: 'EZStaking.io'
|
|
60
|
-
}, {
|
|
61
55
|
address: 'https://api.uni.junonetwork.io',
|
|
62
56
|
provider: 'Juno'
|
|
63
57
|
}, {
|
|
@@ -70,6 +64,10 @@ const testnet = {
|
|
|
70
64
|
}]
|
|
71
65
|
},
|
|
72
66
|
explorers: [{
|
|
67
|
+
kind: 'EZStaking Tools',
|
|
68
|
+
url: 'https://testnet.ezstaking.tools/juno-testnet',
|
|
69
|
+
tx_page: 'https://testnet.ezstaking.tools/juno-testnet/txs/${txHash}'
|
|
70
|
+
}, {
|
|
73
71
|
kind: 'Mintscan',
|
|
74
72
|
url: 'https://testnet.mintscan.io/juno-testnet',
|
|
75
73
|
tx_page: 'https://testnet.mintscan.io/juno-testnet/txs/${txHash}'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juno-network/assets",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "Chain Registry info for Juno",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/CosmosContracts/typescript",
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
"@babel/plugin-transform-runtime": "7.19.1",
|
|
56
56
|
"@babel/preset-env": "7.19.4",
|
|
57
57
|
"@babel/preset-typescript": "^7.17.12",
|
|
58
|
-
"@chain-registry/utils": "^1.
|
|
58
|
+
"@chain-registry/utils": "^1.3.0",
|
|
59
59
|
"@types/jest": "^29.1.2",
|
|
60
60
|
"@typescript-eslint/eslint-plugin": "5.40.0",
|
|
61
61
|
"@typescript-eslint/parser": "5.40.0",
|
|
62
62
|
"babel-core": "7.0.0-bridge.0",
|
|
63
63
|
"babel-jest": "29.1.2",
|
|
64
64
|
"babel-watch": "^7.0.0",
|
|
65
|
-
"chain-registry": "^1.
|
|
65
|
+
"chain-registry": "^1.5.0",
|
|
66
66
|
"cross-env": "^7.0.2",
|
|
67
67
|
"eslint": "8.25.0",
|
|
68
68
|
"eslint-config-prettier": "^8.5.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
80
|
"@babel/runtime": "^7.19.4",
|
|
81
|
-
"@chain-registry/types": "0.
|
|
81
|
+
"@chain-registry/types": "0.13.1"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "1835ae4c91f21c44dc24424dc98af3329281d3d2"
|
|
84
84
|
}
|
package/src/asset_list.ts
CHANGED
|
@@ -98,7 +98,7 @@ const asset_list: AssetList = {
|
|
|
98
98
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
|
|
99
99
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg'
|
|
100
100
|
},
|
|
101
|
-
coingecko_id: 'axelar
|
|
101
|
+
coingecko_id: 'axelar',
|
|
102
102
|
traces: [
|
|
103
103
|
{
|
|
104
104
|
type: 'ibc',
|
|
@@ -1458,7 +1458,7 @@ const asset_list: AssetList = {
|
|
|
1458
1458
|
}
|
|
1459
1459
|
],
|
|
1460
1460
|
base: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
|
|
1461
|
-
name: 'Cosmos',
|
|
1461
|
+
name: 'Cosmos Hub Atom',
|
|
1462
1462
|
display: 'atom',
|
|
1463
1463
|
symbol: 'ATOM',
|
|
1464
1464
|
logo_URIs: {
|
|
@@ -1590,6 +1590,162 @@ const asset_list: AssetList = {
|
|
|
1590
1590
|
}
|
|
1591
1591
|
]
|
|
1592
1592
|
},
|
|
1593
|
+
{
|
|
1594
|
+
description:
|
|
1595
|
+
'e-Money CHF stablecoin. Audited and backed by fiat CHF deposits and government bonds.',
|
|
1596
|
+
denom_units: [
|
|
1597
|
+
{
|
|
1598
|
+
denom:
|
|
1599
|
+
'ibc/B70EF98FDC157B72A6C9165C61156B66D5E47B3C0F99C6B22D3A2AF692C06C90',
|
|
1600
|
+
exponent: 0,
|
|
1601
|
+
aliases: ['echf']
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
denom:
|
|
1605
|
+
'ibc/B70EF98FDC157B72A6C9165C61156B66D5E47B3C0F99C6B22D3A2AF692C06C90',
|
|
1606
|
+
exponent: 6,
|
|
1607
|
+
aliases: ['echf']
|
|
1608
|
+
}
|
|
1609
|
+
],
|
|
1610
|
+
base: 'ibc/B70EF98FDC157B72A6C9165C61156B66D5E47B3C0F99C6B22D3A2AF692C06C90',
|
|
1611
|
+
name: 'e-Money CHF',
|
|
1612
|
+
display: 'chf',
|
|
1613
|
+
symbol: 'ECHF',
|
|
1614
|
+
logo_URIs: {
|
|
1615
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.png'
|
|
1616
|
+
},
|
|
1617
|
+
coingecko_id: '',
|
|
1618
|
+
traces: [
|
|
1619
|
+
{
|
|
1620
|
+
type: 'ibc',
|
|
1621
|
+
counterparty: {
|
|
1622
|
+
channel_id: 'channel-15',
|
|
1623
|
+
base_denom: 'echf',
|
|
1624
|
+
chain_name: 'emoney'
|
|
1625
|
+
},
|
|
1626
|
+
chain: {
|
|
1627
|
+
channel_id: 'channel-9'
|
|
1628
|
+
}
|
|
1629
|
+
}
|
|
1630
|
+
]
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
description:
|
|
1634
|
+
'e-Money NOK stablecoin. Audited and backed by fiat NOK deposits and government bonds.',
|
|
1635
|
+
denom_units: [
|
|
1636
|
+
{
|
|
1637
|
+
denom:
|
|
1638
|
+
'ibc/9BE96C01CFAF0AF7AF505AEF9E70C6F3DA04C79DAD4480722B1F537D6B6E04A5',
|
|
1639
|
+
exponent: 0,
|
|
1640
|
+
aliases: ['enok']
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
denom:
|
|
1644
|
+
'ibc/9BE96C01CFAF0AF7AF505AEF9E70C6F3DA04C79DAD4480722B1F537D6B6E04A5',
|
|
1645
|
+
exponent: 6,
|
|
1646
|
+
aliases: ['enok']
|
|
1647
|
+
}
|
|
1648
|
+
],
|
|
1649
|
+
base: 'ibc/9BE96C01CFAF0AF7AF505AEF9E70C6F3DA04C79DAD4480722B1F537D6B6E04A5',
|
|
1650
|
+
name: 'e-Money NOK',
|
|
1651
|
+
display: 'nok',
|
|
1652
|
+
symbol: 'ENOK',
|
|
1653
|
+
logo_URIs: {
|
|
1654
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.png'
|
|
1655
|
+
},
|
|
1656
|
+
coingecko_id: '',
|
|
1657
|
+
traces: [
|
|
1658
|
+
{
|
|
1659
|
+
type: 'ibc',
|
|
1660
|
+
counterparty: {
|
|
1661
|
+
channel_id: 'channel-15',
|
|
1662
|
+
base_denom: 'enok',
|
|
1663
|
+
chain_name: 'emoney'
|
|
1664
|
+
},
|
|
1665
|
+
chain: {
|
|
1666
|
+
channel_id: 'channel-9'
|
|
1667
|
+
}
|
|
1668
|
+
}
|
|
1669
|
+
]
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
description:
|
|
1673
|
+
'e-Money DKK stablecoin. Audited and backed by fiat DKK deposits and government bonds.',
|
|
1674
|
+
denom_units: [
|
|
1675
|
+
{
|
|
1676
|
+
denom:
|
|
1677
|
+
'ibc/FD7935608ED5FF20F07FD029342E49B1EBD7265FCD4CC5BFC2AE17BF845B336D',
|
|
1678
|
+
exponent: 0,
|
|
1679
|
+
aliases: ['edkk']
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
denom:
|
|
1683
|
+
'ibc/FD7935608ED5FF20F07FD029342E49B1EBD7265FCD4CC5BFC2AE17BF845B336D',
|
|
1684
|
+
exponent: 6,
|
|
1685
|
+
aliases: ['edkk']
|
|
1686
|
+
}
|
|
1687
|
+
],
|
|
1688
|
+
base: 'ibc/FD7935608ED5FF20F07FD029342E49B1EBD7265FCD4CC5BFC2AE17BF845B336D',
|
|
1689
|
+
name: 'e-Money DKK',
|
|
1690
|
+
display: 'dkk',
|
|
1691
|
+
symbol: 'EDKK',
|
|
1692
|
+
logo_URIs: {
|
|
1693
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.png'
|
|
1694
|
+
},
|
|
1695
|
+
coingecko_id: '',
|
|
1696
|
+
traces: [
|
|
1697
|
+
{
|
|
1698
|
+
type: 'ibc',
|
|
1699
|
+
counterparty: {
|
|
1700
|
+
channel_id: 'channel-15',
|
|
1701
|
+
base_denom: 'edkk',
|
|
1702
|
+
chain_name: 'emoney'
|
|
1703
|
+
},
|
|
1704
|
+
chain: {
|
|
1705
|
+
channel_id: 'channel-9'
|
|
1706
|
+
}
|
|
1707
|
+
}
|
|
1708
|
+
]
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
description:
|
|
1712
|
+
'e-Money SEK stablecoin. Audited and backed by fiat SEK deposits and government bonds.',
|
|
1713
|
+
denom_units: [
|
|
1714
|
+
{
|
|
1715
|
+
denom:
|
|
1716
|
+
'ibc/A62F3F3A9D4C91BA3853659411944619A456361CE78EAFC8E6F4C49E52561F08',
|
|
1717
|
+
exponent: 0,
|
|
1718
|
+
aliases: ['esek']
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
denom:
|
|
1722
|
+
'ibc/A62F3F3A9D4C91BA3853659411944619A456361CE78EAFC8E6F4C49E52561F08',
|
|
1723
|
+
exponent: 6,
|
|
1724
|
+
aliases: ['esek']
|
|
1725
|
+
}
|
|
1726
|
+
],
|
|
1727
|
+
base: 'ibc/A62F3F3A9D4C91BA3853659411944619A456361CE78EAFC8E6F4C49E52561F08',
|
|
1728
|
+
name: 'e-Money SEK',
|
|
1729
|
+
display: 'sek',
|
|
1730
|
+
symbol: 'ESEK',
|
|
1731
|
+
logo_URIs: {
|
|
1732
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.png'
|
|
1733
|
+
},
|
|
1734
|
+
coingecko_id: '',
|
|
1735
|
+
traces: [
|
|
1736
|
+
{
|
|
1737
|
+
type: 'ibc',
|
|
1738
|
+
counterparty: {
|
|
1739
|
+
channel_id: 'channel-15',
|
|
1740
|
+
base_denom: 'esek',
|
|
1741
|
+
chain_name: 'emoney'
|
|
1742
|
+
},
|
|
1743
|
+
chain: {
|
|
1744
|
+
channel_id: 'channel-9'
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1747
|
+
]
|
|
1748
|
+
},
|
|
1593
1749
|
{
|
|
1594
1750
|
description: 'The native token of Osmosis',
|
|
1595
1751
|
denom_units: [
|
|
@@ -1704,6 +1860,43 @@ const asset_list: AssetList = {
|
|
|
1704
1860
|
}
|
|
1705
1861
|
]
|
|
1706
1862
|
},
|
|
1863
|
+
{
|
|
1864
|
+
description: 'PSTAKE Liquid-Staked ATOM',
|
|
1865
|
+
denom_units: [
|
|
1866
|
+
{
|
|
1867
|
+
denom:
|
|
1868
|
+
'ibc/436673B3C7C0923C904EEA4AC97AB0DD7DC5627751AE7E2F8CFF489A3D43D805',
|
|
1869
|
+
exponent: 0,
|
|
1870
|
+
aliases: ['stk/uatom']
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
denom: 'stkatom',
|
|
1874
|
+
exponent: 6,
|
|
1875
|
+
aliases: ['stk/atom']
|
|
1876
|
+
}
|
|
1877
|
+
],
|
|
1878
|
+
base: 'ibc/436673B3C7C0923C904EEA4AC97AB0DD7DC5627751AE7E2F8CFF489A3D43D805',
|
|
1879
|
+
name: 'PSTAKE staked ATOM',
|
|
1880
|
+
display: 'stkatom',
|
|
1881
|
+
symbol: 'stkATOM',
|
|
1882
|
+
logo_URIs: {
|
|
1883
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png',
|
|
1884
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg'
|
|
1885
|
+
},
|
|
1886
|
+
traces: [
|
|
1887
|
+
{
|
|
1888
|
+
type: 'ibc',
|
|
1889
|
+
counterparty: {
|
|
1890
|
+
channel_id: 'channel-37',
|
|
1891
|
+
base_denom: 'stk/uatom',
|
|
1892
|
+
chain_name: 'persistence'
|
|
1893
|
+
},
|
|
1894
|
+
chain: {
|
|
1895
|
+
channel_id: 'channel-33'
|
|
1896
|
+
}
|
|
1897
|
+
}
|
|
1898
|
+
]
|
|
1899
|
+
},
|
|
1707
1900
|
{
|
|
1708
1901
|
description:
|
|
1709
1902
|
'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.',
|
package/src/assets.ts
CHANGED
|
@@ -478,6 +478,55 @@ const assets: AssetList = {
|
|
|
478
478
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg'
|
|
479
479
|
}
|
|
480
480
|
},
|
|
481
|
+
{
|
|
482
|
+
description: 'The native token cw20 for MuseDAO on Juno Chain',
|
|
483
|
+
type_asset: 'cw20',
|
|
484
|
+
address:
|
|
485
|
+
'juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3',
|
|
486
|
+
denom_units: [
|
|
487
|
+
{
|
|
488
|
+
denom:
|
|
489
|
+
'cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3',
|
|
490
|
+
exponent: 0
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
denom: 'muse',
|
|
494
|
+
exponent: 6
|
|
495
|
+
}
|
|
496
|
+
],
|
|
497
|
+
base: 'cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3',
|
|
498
|
+
name: 'MuseDAO',
|
|
499
|
+
display: 'muse',
|
|
500
|
+
symbol: 'MUSE',
|
|
501
|
+
logo_URIs: {
|
|
502
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png'
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
description: 'The native token cw20 for Loop Finance on Juno Chain',
|
|
507
|
+
type_asset: 'cw20',
|
|
508
|
+
address:
|
|
509
|
+
'juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup',
|
|
510
|
+
denom_units: [
|
|
511
|
+
{
|
|
512
|
+
denom:
|
|
513
|
+
'cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup',
|
|
514
|
+
exponent: 0
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
denom: 'loop',
|
|
518
|
+
exponent: 6
|
|
519
|
+
}
|
|
520
|
+
],
|
|
521
|
+
base: 'cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup',
|
|
522
|
+
name: 'Loop Finance',
|
|
523
|
+
display: 'loop',
|
|
524
|
+
symbol: 'LOOP',
|
|
525
|
+
logo_URIs: {
|
|
526
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/loop.png'
|
|
527
|
+
},
|
|
528
|
+
coingecko_id: 'loop'
|
|
529
|
+
},
|
|
481
530
|
{
|
|
482
531
|
description: 'The native token cw20 for Neta on Juno Chain',
|
|
483
532
|
type_asset: 'cw20',
|