@chain-registry/assets 1.62.0 → 1.62.1
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/esm/mainnet/axelar.js +68 -0
- package/esm/mainnet/composable.js +72 -0
- package/esm/mainnet/onex.js +82 -0
- package/esm/mainnet/onomy.js +70 -0
- package/esm/mainnet/pryzm.js +78 -0
- package/esm/testnet/assets.js +2 -1
- package/esm/testnet/axelartestnet.js +0 -88
- package/esm/testnet/coreumtestnet.js +154 -0
- package/esm/testnet/index.js +1 -0
- package/esm/testnet/nobletestnet.js +0 -88
- package/esm/testnet/osmosistestnet.js +86 -88
- package/mainnet/axelar.js +68 -0
- package/mainnet/composable.js +72 -0
- package/mainnet/onex.js +82 -0
- package/mainnet/onomy.js +70 -0
- package/mainnet/pryzm.js +78 -0
- package/package.json +5 -5
- package/testnet/assets.js +2 -1
- package/testnet/axelartestnet.js +0 -88
- package/testnet/coreumtestnet.d.ts +3 -0
- package/testnet/coreumtestnet.js +156 -0
- package/testnet/index.d.ts +1 -0
- package/testnet/index.js +2 -1
- package/testnet/nobletestnet.js +0 -88
- package/testnet/osmosistestnet.js +86 -88
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
const assets = {
|
|
2
|
+
chain_name: 'coreumtestnet',
|
|
3
|
+
assets: [
|
|
4
|
+
{
|
|
5
|
+
description: 'The native token of Osmosis',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ibc/029B30FF00F46456D23708B98D542E93F5D019F6CA25714CB6A1DD577048B3ED',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['uosmo']
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'osmo',
|
|
12
|
+
exponent: 6,
|
|
13
|
+
aliases: []
|
|
14
|
+
}],
|
|
15
|
+
type_asset: 'sdk.coin',
|
|
16
|
+
base: 'ibc/029B30FF00F46456D23708B98D542E93F5D019F6CA25714CB6A1DD577048B3ED',
|
|
17
|
+
name: 'Osmosis Testnet',
|
|
18
|
+
display: 'osmo',
|
|
19
|
+
symbol: 'OSMO',
|
|
20
|
+
logo_URIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
23
|
+
},
|
|
24
|
+
images: [{
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
26
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
27
|
+
}],
|
|
28
|
+
coingecko_id: 'osmosis',
|
|
29
|
+
keywords: ['dex', 'staking'],
|
|
30
|
+
traces: [{
|
|
31
|
+
type: 'ibc',
|
|
32
|
+
counterparty: {
|
|
33
|
+
channel_id: 'channel-7894',
|
|
34
|
+
base_denom: 'uosmo',
|
|
35
|
+
chain_name: 'osmosistestnet'
|
|
36
|
+
},
|
|
37
|
+
chain: {
|
|
38
|
+
channel_id: 'channel-47'
|
|
39
|
+
}
|
|
40
|
+
}]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
denom_units: [{
|
|
44
|
+
denom: 'ibc/9758ED5861A9084634A5BE820D2DFE6F3F9FE0DA95B462887C7D8EC150A00F08',
|
|
45
|
+
exponent: 0,
|
|
46
|
+
aliases: ['uion']
|
|
47
|
+
}, {
|
|
48
|
+
denom: 'ion',
|
|
49
|
+
exponent: 6
|
|
50
|
+
}],
|
|
51
|
+
type_asset: 'sdk.coin',
|
|
52
|
+
base: 'ibc/9758ED5861A9084634A5BE820D2DFE6F3F9FE0DA95B462887C7D8EC150A00F08',
|
|
53
|
+
name: 'Ion',
|
|
54
|
+
display: 'ion',
|
|
55
|
+
symbol: 'ION',
|
|
56
|
+
logo_URIs: {
|
|
57
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
58
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
59
|
+
},
|
|
60
|
+
images: [{
|
|
61
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
62
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
63
|
+
}],
|
|
64
|
+
coingecko_id: 'ion',
|
|
65
|
+
keywords: ['memecoin'],
|
|
66
|
+
traces: [{
|
|
67
|
+
type: 'ibc',
|
|
68
|
+
counterparty: {
|
|
69
|
+
channel_id: 'channel-7894',
|
|
70
|
+
base_denom: 'uion',
|
|
71
|
+
chain_name: 'osmosistestnet'
|
|
72
|
+
},
|
|
73
|
+
chain: {
|
|
74
|
+
channel_id: 'channel-47'
|
|
75
|
+
}
|
|
76
|
+
}]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
description: 'The native token of Osmosis',
|
|
80
|
+
denom_units: [{
|
|
81
|
+
denom: 'ibc/029B30FF00F46456D23708B98D542E93F5D019F6CA25714CB6A1DD577048B3ED',
|
|
82
|
+
exponent: 0,
|
|
83
|
+
aliases: ['uosmo']
|
|
84
|
+
}, {
|
|
85
|
+
denom: 'osmo',
|
|
86
|
+
exponent: 6,
|
|
87
|
+
aliases: []
|
|
88
|
+
}],
|
|
89
|
+
type_asset: 'sdk.coin',
|
|
90
|
+
base: 'ibc/029B30FF00F46456D23708B98D542E93F5D019F6CA25714CB6A1DD577048B3ED',
|
|
91
|
+
name: 'Osmosis Testnet',
|
|
92
|
+
display: 'osmo',
|
|
93
|
+
symbol: 'OSMO',
|
|
94
|
+
logo_URIs: {
|
|
95
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
96
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
97
|
+
},
|
|
98
|
+
images: [{
|
|
99
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
100
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
101
|
+
}],
|
|
102
|
+
coingecko_id: 'osmosis',
|
|
103
|
+
keywords: ['dex', 'staking'],
|
|
104
|
+
traces: [{
|
|
105
|
+
type: 'ibc',
|
|
106
|
+
counterparty: {
|
|
107
|
+
channel_id: 'channel-7894',
|
|
108
|
+
base_denom: 'uosmo',
|
|
109
|
+
chain_name: 'osmosistestnet'
|
|
110
|
+
},
|
|
111
|
+
chain: {
|
|
112
|
+
channel_id: 'channel-47'
|
|
113
|
+
}
|
|
114
|
+
}]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
denom_units: [{
|
|
118
|
+
denom: 'ibc/9758ED5861A9084634A5BE820D2DFE6F3F9FE0DA95B462887C7D8EC150A00F08',
|
|
119
|
+
exponent: 0,
|
|
120
|
+
aliases: ['uion']
|
|
121
|
+
}, {
|
|
122
|
+
denom: 'ion',
|
|
123
|
+
exponent: 6
|
|
124
|
+
}],
|
|
125
|
+
type_asset: 'sdk.coin',
|
|
126
|
+
base: 'ibc/9758ED5861A9084634A5BE820D2DFE6F3F9FE0DA95B462887C7D8EC150A00F08',
|
|
127
|
+
name: 'Ion',
|
|
128
|
+
display: 'ion',
|
|
129
|
+
symbol: 'ION',
|
|
130
|
+
logo_URIs: {
|
|
131
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
132
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
133
|
+
},
|
|
134
|
+
images: [{
|
|
135
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
136
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
137
|
+
}],
|
|
138
|
+
coingecko_id: 'ion',
|
|
139
|
+
keywords: ['memecoin'],
|
|
140
|
+
traces: [{
|
|
141
|
+
type: 'ibc',
|
|
142
|
+
counterparty: {
|
|
143
|
+
channel_id: 'channel-7894',
|
|
144
|
+
base_denom: 'uion',
|
|
145
|
+
chain_name: 'osmosistestnet'
|
|
146
|
+
},
|
|
147
|
+
chain: {
|
|
148
|
+
channel_id: 'channel-47'
|
|
149
|
+
}
|
|
150
|
+
}]
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
};
|
|
154
|
+
export default assets;
|
package/esm/testnet/index.js
CHANGED
|
@@ -4,6 +4,7 @@ export * as axelartestnet from './axelartestnet';
|
|
|
4
4
|
export * as celestiatestnet3 from './celestiatestnet3';
|
|
5
5
|
export * as chain4energytestnet from './chain4energytestnet';
|
|
6
6
|
export * as composabletestnet from './composabletestnet';
|
|
7
|
+
export * as coreumtestnet from './coreumtestnet';
|
|
7
8
|
export * as cosmoshubtestnet from './cosmoshubtestnet';
|
|
8
9
|
export * as doravotatestnet from './doravotatestnet';
|
|
9
10
|
export * as dydxtestnet from './dydxtestnet';
|
|
@@ -84,50 +84,6 @@ const assets = {
|
|
|
84
84
|
}
|
|
85
85
|
}]
|
|
86
86
|
},
|
|
87
|
-
{
|
|
88
|
-
description: 'The native token of MANTRA',
|
|
89
|
-
denom_units: [{
|
|
90
|
-
denom: 'ibc/81B164F4C8A85A47FDC4D7E4041B5911988837212CB73E93AE5676F291602B2E',
|
|
91
|
-
exponent: 0,
|
|
92
|
-
aliases: ['uom']
|
|
93
|
-
}, {
|
|
94
|
-
denom: 'om',
|
|
95
|
-
exponent: 6,
|
|
96
|
-
aliases: []
|
|
97
|
-
}],
|
|
98
|
-
base: 'ibc/81B164F4C8A85A47FDC4D7E4041B5911988837212CB73E93AE5676F291602B2E',
|
|
99
|
-
name: 'MANTRA Chain',
|
|
100
|
-
display: 'om',
|
|
101
|
-
symbol: 'OM',
|
|
102
|
-
logo_URIs: {
|
|
103
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png',
|
|
104
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg'
|
|
105
|
-
},
|
|
106
|
-
coingecko_id: '',
|
|
107
|
-
keywords: [
|
|
108
|
-
'mantra',
|
|
109
|
-
'staking',
|
|
110
|
-
'delegating',
|
|
111
|
-
'governance',
|
|
112
|
-
'regulation',
|
|
113
|
-
'defi'
|
|
114
|
-
],
|
|
115
|
-
images: [{
|
|
116
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png',
|
|
117
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg'
|
|
118
|
-
}],
|
|
119
|
-
traces: [{
|
|
120
|
-
type: 'ibc',
|
|
121
|
-
counterparty: {
|
|
122
|
-
channel_id: 'channel-3',
|
|
123
|
-
base_denom: 'uom',
|
|
124
|
-
chain_name: 'mantrachaintestnet'
|
|
125
|
-
},
|
|
126
|
-
chain: {
|
|
127
|
-
channel_id: 'channel-174'
|
|
128
|
-
}
|
|
129
|
-
}]
|
|
130
|
-
},
|
|
131
87
|
{
|
|
132
88
|
description: 'The native token of Elys Network',
|
|
133
89
|
denom_units: [
|
|
@@ -211,50 +167,6 @@ const assets = {
|
|
|
211
167
|
}
|
|
212
168
|
}]
|
|
213
169
|
},
|
|
214
|
-
{
|
|
215
|
-
description: 'The native token of MANTRA',
|
|
216
|
-
denom_units: [{
|
|
217
|
-
denom: 'ibc/81B164F4C8A85A47FDC4D7E4041B5911988837212CB73E93AE5676F291602B2E',
|
|
218
|
-
exponent: 0,
|
|
219
|
-
aliases: ['uom']
|
|
220
|
-
}, {
|
|
221
|
-
denom: 'om',
|
|
222
|
-
exponent: 6,
|
|
223
|
-
aliases: []
|
|
224
|
-
}],
|
|
225
|
-
base: 'ibc/81B164F4C8A85A47FDC4D7E4041B5911988837212CB73E93AE5676F291602B2E',
|
|
226
|
-
name: 'MANTRA Chain',
|
|
227
|
-
display: 'om',
|
|
228
|
-
symbol: 'OM',
|
|
229
|
-
logo_URIs: {
|
|
230
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png',
|
|
231
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg'
|
|
232
|
-
},
|
|
233
|
-
coingecko_id: '',
|
|
234
|
-
keywords: [
|
|
235
|
-
'mantra',
|
|
236
|
-
'staking',
|
|
237
|
-
'delegating',
|
|
238
|
-
'governance',
|
|
239
|
-
'regulation',
|
|
240
|
-
'defi'
|
|
241
|
-
],
|
|
242
|
-
images: [{
|
|
243
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png',
|
|
244
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg'
|
|
245
|
-
}],
|
|
246
|
-
traces: [{
|
|
247
|
-
type: 'ibc',
|
|
248
|
-
counterparty: {
|
|
249
|
-
channel_id: 'channel-3',
|
|
250
|
-
base_denom: 'uom',
|
|
251
|
-
chain_name: 'mantrachaintestnet'
|
|
252
|
-
},
|
|
253
|
-
chain: {
|
|
254
|
-
channel_id: 'channel-174'
|
|
255
|
-
}
|
|
256
|
-
}]
|
|
257
|
-
},
|
|
258
170
|
{
|
|
259
171
|
description: 'The native token of Osmosis',
|
|
260
172
|
denom_units: [{
|
|
@@ -204,6 +204,49 @@ const assets = {
|
|
|
204
204
|
}
|
|
205
205
|
}]
|
|
206
206
|
},
|
|
207
|
+
{
|
|
208
|
+
description: 'The native token of Coreum',
|
|
209
|
+
denom_units: [{
|
|
210
|
+
denom: 'ibc/35CA3AB73EF616E989E6DDD91EA33BEBAF77CA710641973028460CCFE69452AB',
|
|
211
|
+
exponent: 0,
|
|
212
|
+
aliases: ['utestcore']
|
|
213
|
+
}, {
|
|
214
|
+
denom: 'testcore',
|
|
215
|
+
exponent: 6
|
|
216
|
+
}],
|
|
217
|
+
base: 'ibc/35CA3AB73EF616E989E6DDD91EA33BEBAF77CA710641973028460CCFE69452AB',
|
|
218
|
+
name: 'Coreum',
|
|
219
|
+
display: 'testcore',
|
|
220
|
+
symbol: 'TESTCORE',
|
|
221
|
+
logo_URIs: {
|
|
222
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
|
|
223
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
|
|
224
|
+
},
|
|
225
|
+
coingecko_id: 'coreum',
|
|
226
|
+
keywords: [
|
|
227
|
+
'dex',
|
|
228
|
+
'staking',
|
|
229
|
+
'wasm',
|
|
230
|
+
'assets',
|
|
231
|
+
'nft',
|
|
232
|
+
'XRPL'
|
|
233
|
+
],
|
|
234
|
+
images: [{
|
|
235
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
|
|
236
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
|
|
237
|
+
}],
|
|
238
|
+
traces: [{
|
|
239
|
+
type: 'ibc',
|
|
240
|
+
counterparty: {
|
|
241
|
+
channel_id: 'channel-47',
|
|
242
|
+
base_denom: 'utestcore',
|
|
243
|
+
chain_name: 'coreumtestnet'
|
|
244
|
+
},
|
|
245
|
+
chain: {
|
|
246
|
+
channel_id: 'channel-7894'
|
|
247
|
+
}
|
|
248
|
+
}]
|
|
249
|
+
},
|
|
207
250
|
{
|
|
208
251
|
description: 'The native staking and governance token of the Theta testnet version of the Cosmos Hub.',
|
|
209
252
|
denom_units: [{
|
|
@@ -479,50 +522,6 @@ const assets = {
|
|
|
479
522
|
}
|
|
480
523
|
}]
|
|
481
524
|
},
|
|
482
|
-
{
|
|
483
|
-
description: 'The native token of MANTRA',
|
|
484
|
-
denom_units: [{
|
|
485
|
-
denom: 'ibc/F25F6570FF2BD0CD6EB85761BD9CA411C2D5201E8D308D5A49BAD845B5D5E9B2',
|
|
486
|
-
exponent: 0,
|
|
487
|
-
aliases: ['uom']
|
|
488
|
-
}, {
|
|
489
|
-
denom: 'om',
|
|
490
|
-
exponent: 6,
|
|
491
|
-
aliases: []
|
|
492
|
-
}],
|
|
493
|
-
base: 'ibc/F25F6570FF2BD0CD6EB85761BD9CA411C2D5201E8D308D5A49BAD845B5D5E9B2',
|
|
494
|
-
name: 'MANTRA Chain',
|
|
495
|
-
display: 'om',
|
|
496
|
-
symbol: 'OM',
|
|
497
|
-
logo_URIs: {
|
|
498
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png',
|
|
499
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg'
|
|
500
|
-
},
|
|
501
|
-
coingecko_id: '',
|
|
502
|
-
keywords: [
|
|
503
|
-
'mantra',
|
|
504
|
-
'staking',
|
|
505
|
-
'delegating',
|
|
506
|
-
'governance',
|
|
507
|
-
'regulation',
|
|
508
|
-
'defi'
|
|
509
|
-
],
|
|
510
|
-
images: [{
|
|
511
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png',
|
|
512
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg'
|
|
513
|
-
}],
|
|
514
|
-
traces: [{
|
|
515
|
-
type: 'ibc',
|
|
516
|
-
counterparty: {
|
|
517
|
-
channel_id: 'channel-1',
|
|
518
|
-
base_denom: 'uom',
|
|
519
|
-
chain_name: 'mantrachaintestnet'
|
|
520
|
-
},
|
|
521
|
-
chain: {
|
|
522
|
-
channel_id: 'channel-7944'
|
|
523
|
-
}
|
|
524
|
-
}]
|
|
525
|
-
},
|
|
526
525
|
{
|
|
527
526
|
description: 'The native token of Mars Protocol',
|
|
528
527
|
denom_units: [{
|
|
@@ -880,6 +879,49 @@ const assets = {
|
|
|
880
879
|
}
|
|
881
880
|
}]
|
|
882
881
|
},
|
|
882
|
+
{
|
|
883
|
+
description: 'The native token of Coreum',
|
|
884
|
+
denom_units: [{
|
|
885
|
+
denom: 'ibc/35CA3AB73EF616E989E6DDD91EA33BEBAF77CA710641973028460CCFE69452AB',
|
|
886
|
+
exponent: 0,
|
|
887
|
+
aliases: ['utestcore']
|
|
888
|
+
}, {
|
|
889
|
+
denom: 'testcore',
|
|
890
|
+
exponent: 6
|
|
891
|
+
}],
|
|
892
|
+
base: 'ibc/35CA3AB73EF616E989E6DDD91EA33BEBAF77CA710641973028460CCFE69452AB',
|
|
893
|
+
name: 'Coreum',
|
|
894
|
+
display: 'testcore',
|
|
895
|
+
symbol: 'TESTCORE',
|
|
896
|
+
logo_URIs: {
|
|
897
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
|
|
898
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
|
|
899
|
+
},
|
|
900
|
+
coingecko_id: 'coreum',
|
|
901
|
+
keywords: [
|
|
902
|
+
'dex',
|
|
903
|
+
'staking',
|
|
904
|
+
'wasm',
|
|
905
|
+
'assets',
|
|
906
|
+
'nft',
|
|
907
|
+
'XRPL'
|
|
908
|
+
],
|
|
909
|
+
images: [{
|
|
910
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
|
|
911
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
|
|
912
|
+
}],
|
|
913
|
+
traces: [{
|
|
914
|
+
type: 'ibc',
|
|
915
|
+
counterparty: {
|
|
916
|
+
channel_id: 'channel-47',
|
|
917
|
+
base_denom: 'utestcore',
|
|
918
|
+
chain_name: 'coreumtestnet'
|
|
919
|
+
},
|
|
920
|
+
chain: {
|
|
921
|
+
channel_id: 'channel-7894'
|
|
922
|
+
}
|
|
923
|
+
}]
|
|
924
|
+
},
|
|
883
925
|
{
|
|
884
926
|
description: 'The native staking and governance token of the Theta testnet version of the Cosmos Hub.',
|
|
885
927
|
denom_units: [{
|
|
@@ -1155,50 +1197,6 @@ const assets = {
|
|
|
1155
1197
|
}
|
|
1156
1198
|
}]
|
|
1157
1199
|
},
|
|
1158
|
-
{
|
|
1159
|
-
description: 'The native token of MANTRA',
|
|
1160
|
-
denom_units: [{
|
|
1161
|
-
denom: 'ibc/F25F6570FF2BD0CD6EB85761BD9CA411C2D5201E8D308D5A49BAD845B5D5E9B2',
|
|
1162
|
-
exponent: 0,
|
|
1163
|
-
aliases: ['uom']
|
|
1164
|
-
}, {
|
|
1165
|
-
denom: 'om',
|
|
1166
|
-
exponent: 6,
|
|
1167
|
-
aliases: []
|
|
1168
|
-
}],
|
|
1169
|
-
base: 'ibc/F25F6570FF2BD0CD6EB85761BD9CA411C2D5201E8D308D5A49BAD845B5D5E9B2',
|
|
1170
|
-
name: 'MANTRA Chain',
|
|
1171
|
-
display: 'om',
|
|
1172
|
-
symbol: 'OM',
|
|
1173
|
-
logo_URIs: {
|
|
1174
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png',
|
|
1175
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg'
|
|
1176
|
-
},
|
|
1177
|
-
coingecko_id: '',
|
|
1178
|
-
keywords: [
|
|
1179
|
-
'mantra',
|
|
1180
|
-
'staking',
|
|
1181
|
-
'delegating',
|
|
1182
|
-
'governance',
|
|
1183
|
-
'regulation',
|
|
1184
|
-
'defi'
|
|
1185
|
-
],
|
|
1186
|
-
images: [{
|
|
1187
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png',
|
|
1188
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg'
|
|
1189
|
-
}],
|
|
1190
|
-
traces: [{
|
|
1191
|
-
type: 'ibc',
|
|
1192
|
-
counterparty: {
|
|
1193
|
-
channel_id: 'channel-1',
|
|
1194
|
-
base_denom: 'uom',
|
|
1195
|
-
chain_name: 'mantrachaintestnet'
|
|
1196
|
-
},
|
|
1197
|
-
chain: {
|
|
1198
|
-
channel_id: 'channel-7944'
|
|
1199
|
-
}
|
|
1200
|
-
}]
|
|
1201
|
-
},
|
|
1202
1200
|
{
|
|
1203
1201
|
description: 'The native token of Mars Protocol',
|
|
1204
1202
|
denom_units: [{
|
package/mainnet/axelar.js
CHANGED
|
@@ -1971,6 +1971,40 @@ const assets = {
|
|
|
1971
1971
|
}
|
|
1972
1972
|
}]
|
|
1973
1973
|
},
|
|
1974
|
+
{
|
|
1975
|
+
description: 'The native token of PRYZM',
|
|
1976
|
+
denom_units: [{
|
|
1977
|
+
denom: 'ibc/073577C4EBEA41C59CEC70217300F09D4F4A6442B5EF22E882E1CD9CEDEAD799',
|
|
1978
|
+
exponent: 0,
|
|
1979
|
+
aliases: ['upryzm']
|
|
1980
|
+
}, {
|
|
1981
|
+
denom: 'pryzm',
|
|
1982
|
+
exponent: 6
|
|
1983
|
+
}],
|
|
1984
|
+
base: 'ibc/073577C4EBEA41C59CEC70217300F09D4F4A6442B5EF22E882E1CD9CEDEAD799',
|
|
1985
|
+
name: 'Pryzm',
|
|
1986
|
+
display: 'pryzm',
|
|
1987
|
+
symbol: 'PRYZM',
|
|
1988
|
+
logo_URIs: {
|
|
1989
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.png',
|
|
1990
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.svg'
|
|
1991
|
+
},
|
|
1992
|
+
images: [{
|
|
1993
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.png',
|
|
1994
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.svg'
|
|
1995
|
+
}],
|
|
1996
|
+
traces: [{
|
|
1997
|
+
type: 'ibc',
|
|
1998
|
+
counterparty: {
|
|
1999
|
+
channel_id: 'channel-13',
|
|
2000
|
+
base_denom: 'upryzm',
|
|
2001
|
+
chain_name: 'pryzm'
|
|
2002
|
+
},
|
|
2003
|
+
chain: {
|
|
2004
|
+
channel_id: 'channel-155'
|
|
2005
|
+
}
|
|
2006
|
+
}]
|
|
2007
|
+
},
|
|
1974
2008
|
{
|
|
1975
2009
|
description: 'The native staking and governance token of Saga.',
|
|
1976
2010
|
denom_units: [{
|
|
@@ -3764,6 +3798,40 @@ const assets = {
|
|
|
3764
3798
|
}
|
|
3765
3799
|
}]
|
|
3766
3800
|
},
|
|
3801
|
+
{
|
|
3802
|
+
description: 'The native token of PRYZM',
|
|
3803
|
+
denom_units: [{
|
|
3804
|
+
denom: 'ibc/073577C4EBEA41C59CEC70217300F09D4F4A6442B5EF22E882E1CD9CEDEAD799',
|
|
3805
|
+
exponent: 0,
|
|
3806
|
+
aliases: ['upryzm']
|
|
3807
|
+
}, {
|
|
3808
|
+
denom: 'pryzm',
|
|
3809
|
+
exponent: 6
|
|
3810
|
+
}],
|
|
3811
|
+
base: 'ibc/073577C4EBEA41C59CEC70217300F09D4F4A6442B5EF22E882E1CD9CEDEAD799',
|
|
3812
|
+
name: 'Pryzm',
|
|
3813
|
+
display: 'pryzm',
|
|
3814
|
+
symbol: 'PRYZM',
|
|
3815
|
+
logo_URIs: {
|
|
3816
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.png',
|
|
3817
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.svg'
|
|
3818
|
+
},
|
|
3819
|
+
images: [{
|
|
3820
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.png',
|
|
3821
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pryzm.svg'
|
|
3822
|
+
}],
|
|
3823
|
+
traces: [{
|
|
3824
|
+
type: 'ibc',
|
|
3825
|
+
counterparty: {
|
|
3826
|
+
channel_id: 'channel-13',
|
|
3827
|
+
base_denom: 'upryzm',
|
|
3828
|
+
chain_name: 'pryzm'
|
|
3829
|
+
},
|
|
3830
|
+
chain: {
|
|
3831
|
+
channel_id: 'channel-155'
|
|
3832
|
+
}
|
|
3833
|
+
}]
|
|
3834
|
+
},
|
|
3767
3835
|
{
|
|
3768
3836
|
description: 'The native staking and governance token of Saga.',
|
|
3769
3837
|
denom_units: [{
|
package/mainnet/composable.js
CHANGED
|
@@ -1980,6 +1980,42 @@ const assets = {
|
|
|
1980
1980
|
}
|
|
1981
1981
|
}]
|
|
1982
1982
|
},
|
|
1983
|
+
{
|
|
1984
|
+
description: 'dogwifhat is a meme coin that operates on Solana.',
|
|
1985
|
+
type_asset: 'erc20',
|
|
1986
|
+
address: 'EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm',
|
|
1987
|
+
denom_units: [{
|
|
1988
|
+
denom: 'ibc/BA34EAA22BBDA46C228DC70E4ED7E42A0867D5B051D625F953CC7B1CEF58C071',
|
|
1989
|
+
exponent: 0,
|
|
1990
|
+
aliases: ['EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm']
|
|
1991
|
+
}, {
|
|
1992
|
+
denom: 'wif',
|
|
1993
|
+
exponent: 6
|
|
1994
|
+
}],
|
|
1995
|
+
base: 'ibc/BA34EAA22BBDA46C228DC70E4ED7E42A0867D5B051D625F953CC7B1CEF58C071',
|
|
1996
|
+
name: 'dogwifhat',
|
|
1997
|
+
display: 'wif',
|
|
1998
|
+
symbol: 'WIF',
|
|
1999
|
+
coingecko_id: 'dogwifcoin',
|
|
2000
|
+
images: [{
|
|
2001
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/wif.png'
|
|
2002
|
+
}],
|
|
2003
|
+
socials: {
|
|
2004
|
+
website: 'https://dogwifcoin.org/',
|
|
2005
|
+
twitter: 'https://twitter.com/dogwifcoin'
|
|
2006
|
+
},
|
|
2007
|
+
traces: [{
|
|
2008
|
+
type: 'ibc',
|
|
2009
|
+
counterparty: {
|
|
2010
|
+
channel_id: 'channel-1',
|
|
2011
|
+
base_denom: 'EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm',
|
|
2012
|
+
chain_name: 'solana'
|
|
2013
|
+
},
|
|
2014
|
+
chain: {
|
|
2015
|
+
channel_id: 'channel-71'
|
|
2016
|
+
}
|
|
2017
|
+
}]
|
|
2018
|
+
},
|
|
1983
2019
|
{
|
|
1984
2020
|
description: 'The native token of Stargaze',
|
|
1985
2021
|
denom_units: [{
|
|
@@ -3731,6 +3767,42 @@ const assets = {
|
|
|
3731
3767
|
}
|
|
3732
3768
|
}]
|
|
3733
3769
|
},
|
|
3770
|
+
{
|
|
3771
|
+
description: 'dogwifhat is a meme coin that operates on Solana.',
|
|
3772
|
+
type_asset: 'erc20',
|
|
3773
|
+
address: 'EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm',
|
|
3774
|
+
denom_units: [{
|
|
3775
|
+
denom: 'ibc/BA34EAA22BBDA46C228DC70E4ED7E42A0867D5B051D625F953CC7B1CEF58C071',
|
|
3776
|
+
exponent: 0,
|
|
3777
|
+
aliases: ['EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm']
|
|
3778
|
+
}, {
|
|
3779
|
+
denom: 'wif',
|
|
3780
|
+
exponent: 6
|
|
3781
|
+
}],
|
|
3782
|
+
base: 'ibc/BA34EAA22BBDA46C228DC70E4ED7E42A0867D5B051D625F953CC7B1CEF58C071',
|
|
3783
|
+
name: 'dogwifhat',
|
|
3784
|
+
display: 'wif',
|
|
3785
|
+
symbol: 'WIF',
|
|
3786
|
+
coingecko_id: 'dogwifcoin',
|
|
3787
|
+
images: [{
|
|
3788
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/wif.png'
|
|
3789
|
+
}],
|
|
3790
|
+
socials: {
|
|
3791
|
+
website: 'https://dogwifcoin.org/',
|
|
3792
|
+
twitter: 'https://twitter.com/dogwifcoin'
|
|
3793
|
+
},
|
|
3794
|
+
traces: [{
|
|
3795
|
+
type: 'ibc',
|
|
3796
|
+
counterparty: {
|
|
3797
|
+
channel_id: 'channel-1',
|
|
3798
|
+
base_denom: 'EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm',
|
|
3799
|
+
chain_name: 'solana'
|
|
3800
|
+
},
|
|
3801
|
+
chain: {
|
|
3802
|
+
channel_id: 'channel-71'
|
|
3803
|
+
}
|
|
3804
|
+
}]
|
|
3805
|
+
},
|
|
3734
3806
|
{
|
|
3735
3807
|
description: 'The native token cw20 for SIENNA on Secret Network',
|
|
3736
3808
|
denom_units: [{
|