@chain-registry/assets 1.64.56 → 1.64.58
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/composable.js +10 -2
- package/esm/testnet/assets.js +2 -1
- package/esm/testnet/index.js +1 -0
- package/esm/testnet/osmosistestnet.js +68 -0
- package/esm/testnet/stargazetestnet.js +68 -0
- package/esm/testnet/symphonytestnet.js +220 -0
- package/mainnet/composable.js +10 -2
- package/package.json +5 -5
- package/testnet/assets.js +2 -1
- package/testnet/index.d.ts +1 -0
- package/testnet/index.js +2 -1
- package/testnet/osmosistestnet.js +68 -0
- package/testnet/stargazetestnet.js +68 -0
- package/testnet/symphonytestnet.d.ts +3 -0
- package/testnet/symphonytestnet.js +222 -0
|
@@ -249,7 +249,11 @@ const assets = {
|
|
|
249
249
|
},
|
|
250
250
|
coingecko_id: 'shiba-inu',
|
|
251
251
|
images: [{
|
|
252
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg'
|
|
252
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg',
|
|
253
|
+
theme: {
|
|
254
|
+
primary_color_hex: '#FFA409',
|
|
255
|
+
background_color_hex: '#00000000'
|
|
256
|
+
}
|
|
253
257
|
}],
|
|
254
258
|
traces: [{
|
|
255
259
|
type: 'ibc',
|
|
@@ -1986,7 +1990,11 @@ const assets = {
|
|
|
1986
1990
|
},
|
|
1987
1991
|
coingecko_id: 'shiba-inu',
|
|
1988
1992
|
images: [{
|
|
1989
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg'
|
|
1993
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg',
|
|
1994
|
+
theme: {
|
|
1995
|
+
primary_color_hex: '#FFA409',
|
|
1996
|
+
background_color_hex: '#00000000'
|
|
1997
|
+
}
|
|
1990
1998
|
}],
|
|
1991
1999
|
traces: [{
|
|
1992
2000
|
type: 'ibc',
|
package/esm/testnet/assets.js
CHANGED
|
@@ -33,8 +33,9 @@ import _sagatestnet from './sagatestnet';
|
|
|
33
33
|
import _sgetestnet from './sgetestnet';
|
|
34
34
|
import _stargazetestnet from './stargazetestnet';
|
|
35
35
|
import _swisstroniktestnet from './swisstroniktestnet';
|
|
36
|
+
import _symphonytestnet from './symphonytestnet';
|
|
36
37
|
import _terra2testnet from './terra2testnet';
|
|
37
38
|
import _titantestnet from './titantestnet';
|
|
38
39
|
import _xiontestnet from './xiontestnet';
|
|
39
|
-
const assets = [_akashtestnet, _archwaytestnet, _axelartestnet, _celestiatestnet3, _chain4energytestnet, _composabletestnet, _coreumtestnet, _cosmoshubtestnet, _doravotatestnet, _dydxtestnet, _elystestnet, _empowertestnet, _entrypointtestnet, _impacthubtestnet, _injectivetestnet, _jackaltestnet2, _junotestnet, _kujiratestnet, _kyvetestnet, _lavatestnet, _likecointestnet, _mantrachaintestnet, _marstestnet, _neutrontestnet, _nobletestnet, _noistestnet, _nolustestnet, _osmosistestnet, _osmosistestnet4, _persistencetestnet2, _quicksilvertestnet, _sagatestnet, _sgetestnet, _stargazetestnet, _swisstroniktestnet, _terra2testnet, _titantestnet, _xiontestnet];
|
|
40
|
+
const assets = [_akashtestnet, _archwaytestnet, _axelartestnet, _celestiatestnet3, _chain4energytestnet, _composabletestnet, _coreumtestnet, _cosmoshubtestnet, _doravotatestnet, _dydxtestnet, _elystestnet, _empowertestnet, _entrypointtestnet, _impacthubtestnet, _injectivetestnet, _jackaltestnet2, _junotestnet, _kujiratestnet, _kyvetestnet, _lavatestnet, _likecointestnet, _mantrachaintestnet, _marstestnet, _neutrontestnet, _nobletestnet, _noistestnet, _nolustestnet, _osmosistestnet, _osmosistestnet4, _persistencetestnet2, _quicksilvertestnet, _sagatestnet, _sgetestnet, _stargazetestnet, _swisstroniktestnet, _symphonytestnet, _terra2testnet, _titantestnet, _xiontestnet];
|
|
40
41
|
export default assets;
|
package/esm/testnet/index.js
CHANGED
|
@@ -33,6 +33,7 @@ export * as sagatestnet from './sagatestnet';
|
|
|
33
33
|
export * as sgetestnet from './sgetestnet';
|
|
34
34
|
export * as stargazetestnet from './stargazetestnet';
|
|
35
35
|
export * as swisstroniktestnet from './swisstroniktestnet';
|
|
36
|
+
export * as symphonytestnet from './symphonytestnet';
|
|
36
37
|
export * as terra2testnet from './terra2testnet';
|
|
37
38
|
export * as titantestnet from './titantestnet';
|
|
38
39
|
export * as xiontestnet from './xiontestnet';
|
|
@@ -1656,6 +1656,40 @@ const assets = {
|
|
|
1656
1656
|
}
|
|
1657
1657
|
}]
|
|
1658
1658
|
},
|
|
1659
|
+
{
|
|
1660
|
+
description: 'The native token of Symphony',
|
|
1661
|
+
denom_units: [{
|
|
1662
|
+
denom: 'ibc/AD18AE96582181A04267D08DFDD9C60F46E6B68E8FCC20DC88209AE8E9A8E0C7',
|
|
1663
|
+
exponent: 0,
|
|
1664
|
+
aliases: ['note']
|
|
1665
|
+
}, {
|
|
1666
|
+
denom: 'mld',
|
|
1667
|
+
exponent: 6,
|
|
1668
|
+
aliases: ['melody']
|
|
1669
|
+
}],
|
|
1670
|
+
type_asset: 'sdk.coin',
|
|
1671
|
+
base: 'ibc/AD18AE96582181A04267D08DFDD9C60F46E6B68E8FCC20DC88209AE8E9A8E0C7',
|
|
1672
|
+
name: 'Melody',
|
|
1673
|
+
display: 'mld',
|
|
1674
|
+
symbol: 'MLD',
|
|
1675
|
+
logo_URIs: {
|
|
1676
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
1677
|
+
},
|
|
1678
|
+
images: [{
|
|
1679
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
1680
|
+
}],
|
|
1681
|
+
traces: [{
|
|
1682
|
+
type: 'ibc',
|
|
1683
|
+
counterparty: {
|
|
1684
|
+
channel_id: 'channel-0',
|
|
1685
|
+
base_denom: 'note',
|
|
1686
|
+
chain_name: 'symphonytestnet'
|
|
1687
|
+
},
|
|
1688
|
+
chain: {
|
|
1689
|
+
channel_id: 'channnel-8686'
|
|
1690
|
+
}
|
|
1691
|
+
}]
|
|
1692
|
+
},
|
|
1659
1693
|
{
|
|
1660
1694
|
description: 'The native token of the Titan network.',
|
|
1661
1695
|
denom_units: [
|
|
@@ -2043,6 +2077,40 @@ const assets = {
|
|
|
2043
2077
|
}
|
|
2044
2078
|
}]
|
|
2045
2079
|
},
|
|
2080
|
+
{
|
|
2081
|
+
description: 'The native token of Symphony',
|
|
2082
|
+
denom_units: [{
|
|
2083
|
+
denom: 'ibc/AD18AE96582181A04267D08DFDD9C60F46E6B68E8FCC20DC88209AE8E9A8E0C7',
|
|
2084
|
+
exponent: 0,
|
|
2085
|
+
aliases: ['note']
|
|
2086
|
+
}, {
|
|
2087
|
+
denom: 'mld',
|
|
2088
|
+
exponent: 6,
|
|
2089
|
+
aliases: ['melody']
|
|
2090
|
+
}],
|
|
2091
|
+
type_asset: 'sdk.coin',
|
|
2092
|
+
base: 'ibc/AD18AE96582181A04267D08DFDD9C60F46E6B68E8FCC20DC88209AE8E9A8E0C7',
|
|
2093
|
+
name: 'Melody',
|
|
2094
|
+
display: 'mld',
|
|
2095
|
+
symbol: 'MLD',
|
|
2096
|
+
logo_URIs: {
|
|
2097
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
2098
|
+
},
|
|
2099
|
+
images: [{
|
|
2100
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
2101
|
+
}],
|
|
2102
|
+
traces: [{
|
|
2103
|
+
type: 'ibc',
|
|
2104
|
+
counterparty: {
|
|
2105
|
+
channel_id: 'channel-0',
|
|
2106
|
+
base_denom: 'note',
|
|
2107
|
+
chain_name: 'symphonytestnet'
|
|
2108
|
+
},
|
|
2109
|
+
chain: {
|
|
2110
|
+
channel_id: 'channnel-8686'
|
|
2111
|
+
}
|
|
2112
|
+
}]
|
|
2113
|
+
},
|
|
2046
2114
|
{
|
|
2047
2115
|
description: 'The native token of the Titan network.',
|
|
2048
2116
|
denom_units: [
|
|
@@ -293,6 +293,40 @@ const assets = {
|
|
|
293
293
|
}
|
|
294
294
|
}]
|
|
295
295
|
},
|
|
296
|
+
{
|
|
297
|
+
description: 'The native token of Symphony',
|
|
298
|
+
denom_units: [{
|
|
299
|
+
denom: 'ibc/4349702B8734A8372397BBBCD845AF21DF7EA780265D31058E56C5FE3308C11C',
|
|
300
|
+
exponent: 0,
|
|
301
|
+
aliases: ['note']
|
|
302
|
+
}, {
|
|
303
|
+
denom: 'mld',
|
|
304
|
+
exponent: 6,
|
|
305
|
+
aliases: ['melody']
|
|
306
|
+
}],
|
|
307
|
+
type_asset: 'sdk.coin',
|
|
308
|
+
base: 'ibc/4349702B8734A8372397BBBCD845AF21DF7EA780265D31058E56C5FE3308C11C',
|
|
309
|
+
name: 'Melody',
|
|
310
|
+
display: 'mld',
|
|
311
|
+
symbol: 'MLD',
|
|
312
|
+
logo_URIs: {
|
|
313
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
314
|
+
},
|
|
315
|
+
images: [{
|
|
316
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
317
|
+
}],
|
|
318
|
+
traces: [{
|
|
319
|
+
type: 'ibc',
|
|
320
|
+
counterparty: {
|
|
321
|
+
channel_id: 'channel-2',
|
|
322
|
+
base_denom: 'note',
|
|
323
|
+
chain_name: 'symphonytestnet'
|
|
324
|
+
},
|
|
325
|
+
chain: {
|
|
326
|
+
channel_id: 'channel-638'
|
|
327
|
+
}
|
|
328
|
+
}]
|
|
329
|
+
},
|
|
296
330
|
{
|
|
297
331
|
description: 'The native token of the Titan network.',
|
|
298
332
|
denom_units: [
|
|
@@ -340,6 +374,40 @@ const assets = {
|
|
|
340
374
|
}
|
|
341
375
|
}]
|
|
342
376
|
},
|
|
377
|
+
{
|
|
378
|
+
description: 'The native token of Symphony',
|
|
379
|
+
denom_units: [{
|
|
380
|
+
denom: 'ibc/4349702B8734A8372397BBBCD845AF21DF7EA780265D31058E56C5FE3308C11C',
|
|
381
|
+
exponent: 0,
|
|
382
|
+
aliases: ['note']
|
|
383
|
+
}, {
|
|
384
|
+
denom: 'mld',
|
|
385
|
+
exponent: 6,
|
|
386
|
+
aliases: ['melody']
|
|
387
|
+
}],
|
|
388
|
+
type_asset: 'sdk.coin',
|
|
389
|
+
base: 'ibc/4349702B8734A8372397BBBCD845AF21DF7EA780265D31058E56C5FE3308C11C',
|
|
390
|
+
name: 'Melody',
|
|
391
|
+
display: 'mld',
|
|
392
|
+
symbol: 'MLD',
|
|
393
|
+
logo_URIs: {
|
|
394
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
395
|
+
},
|
|
396
|
+
images: [{
|
|
397
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
398
|
+
}],
|
|
399
|
+
traces: [{
|
|
400
|
+
type: 'ibc',
|
|
401
|
+
counterparty: {
|
|
402
|
+
channel_id: 'channel-2',
|
|
403
|
+
base_denom: 'note',
|
|
404
|
+
chain_name: 'symphonytestnet'
|
|
405
|
+
},
|
|
406
|
+
chain: {
|
|
407
|
+
channel_id: 'channel-638'
|
|
408
|
+
}
|
|
409
|
+
}]
|
|
410
|
+
},
|
|
343
411
|
{
|
|
344
412
|
description: 'The native token of the Titan network.',
|
|
345
413
|
denom_units: [
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
const assets = {
|
|
2
|
+
chain_name: 'symphonytestnet',
|
|
3
|
+
assets: [
|
|
4
|
+
{
|
|
5
|
+
description: 'The native token of Osmosis',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['uosmo']
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'osmo',
|
|
12
|
+
exponent: 6,
|
|
13
|
+
aliases: []
|
|
14
|
+
}],
|
|
15
|
+
type_asset: 'sdk.coin',
|
|
16
|
+
base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
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: 'channnel-8686',
|
|
34
|
+
base_denom: 'uosmo',
|
|
35
|
+
chain_name: 'osmosistestnet'
|
|
36
|
+
},
|
|
37
|
+
chain: {
|
|
38
|
+
channel_id: 'channel-0'
|
|
39
|
+
}
|
|
40
|
+
}]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
denom_units: [{
|
|
44
|
+
denom: 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16',
|
|
45
|
+
exponent: 0,
|
|
46
|
+
aliases: ['uion']
|
|
47
|
+
}, {
|
|
48
|
+
denom: 'ion',
|
|
49
|
+
exponent: 6
|
|
50
|
+
}],
|
|
51
|
+
type_asset: 'sdk.coin',
|
|
52
|
+
base: 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16',
|
|
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: 'channnel-8686',
|
|
70
|
+
base_denom: 'uion',
|
|
71
|
+
chain_name: 'osmosistestnet'
|
|
72
|
+
},
|
|
73
|
+
chain: {
|
|
74
|
+
channel_id: 'channel-0'
|
|
75
|
+
}
|
|
76
|
+
}]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
description: 'The native token of Stargaze',
|
|
80
|
+
denom_units: [{
|
|
81
|
+
denom: 'ibc/C6469BA9DC791E65B3C1596CD2005941324C00659E2DF90D5E08D86B82E7E08B',
|
|
82
|
+
exponent: 0,
|
|
83
|
+
aliases: ['ustars']
|
|
84
|
+
}, {
|
|
85
|
+
denom: 'stars',
|
|
86
|
+
exponent: 6
|
|
87
|
+
}],
|
|
88
|
+
base: 'ibc/C6469BA9DC791E65B3C1596CD2005941324C00659E2DF90D5E08D86B82E7E08B',
|
|
89
|
+
name: 'Stargaze',
|
|
90
|
+
display: 'stars',
|
|
91
|
+
symbol: 'STARS',
|
|
92
|
+
logo_URIs: {
|
|
93
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png'
|
|
94
|
+
},
|
|
95
|
+
coingecko_id: 'stargaze',
|
|
96
|
+
images: [{
|
|
97
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png'
|
|
98
|
+
}],
|
|
99
|
+
traces: [{
|
|
100
|
+
type: 'ibc',
|
|
101
|
+
counterparty: {
|
|
102
|
+
channel_id: 'channel-638',
|
|
103
|
+
base_denom: 'ustars',
|
|
104
|
+
chain_name: 'stargazetestnet'
|
|
105
|
+
},
|
|
106
|
+
chain: {
|
|
107
|
+
channel_id: 'channel-2'
|
|
108
|
+
}
|
|
109
|
+
}]
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
description: 'The native token of Osmosis',
|
|
113
|
+
denom_units: [{
|
|
114
|
+
denom: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
115
|
+
exponent: 0,
|
|
116
|
+
aliases: ['uosmo']
|
|
117
|
+
}, {
|
|
118
|
+
denom: 'osmo',
|
|
119
|
+
exponent: 6,
|
|
120
|
+
aliases: []
|
|
121
|
+
}],
|
|
122
|
+
type_asset: 'sdk.coin',
|
|
123
|
+
base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
124
|
+
name: 'Osmosis Testnet',
|
|
125
|
+
display: 'osmo',
|
|
126
|
+
symbol: 'OSMO',
|
|
127
|
+
logo_URIs: {
|
|
128
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
129
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
130
|
+
},
|
|
131
|
+
images: [{
|
|
132
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
133
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
134
|
+
}],
|
|
135
|
+
coingecko_id: 'osmosis',
|
|
136
|
+
keywords: ['dex', 'staking'],
|
|
137
|
+
traces: [{
|
|
138
|
+
type: 'ibc',
|
|
139
|
+
counterparty: {
|
|
140
|
+
channel_id: 'channnel-8686',
|
|
141
|
+
base_denom: 'uosmo',
|
|
142
|
+
chain_name: 'osmosistestnet'
|
|
143
|
+
},
|
|
144
|
+
chain: {
|
|
145
|
+
channel_id: 'channel-0'
|
|
146
|
+
}
|
|
147
|
+
}]
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
denom_units: [{
|
|
151
|
+
denom: 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16',
|
|
152
|
+
exponent: 0,
|
|
153
|
+
aliases: ['uion']
|
|
154
|
+
}, {
|
|
155
|
+
denom: 'ion',
|
|
156
|
+
exponent: 6
|
|
157
|
+
}],
|
|
158
|
+
type_asset: 'sdk.coin',
|
|
159
|
+
base: 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16',
|
|
160
|
+
name: 'Ion',
|
|
161
|
+
display: 'ion',
|
|
162
|
+
symbol: 'ION',
|
|
163
|
+
logo_URIs: {
|
|
164
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
165
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
166
|
+
},
|
|
167
|
+
images: [{
|
|
168
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
169
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
170
|
+
}],
|
|
171
|
+
coingecko_id: 'ion',
|
|
172
|
+
keywords: ['memecoin'],
|
|
173
|
+
traces: [{
|
|
174
|
+
type: 'ibc',
|
|
175
|
+
counterparty: {
|
|
176
|
+
channel_id: 'channnel-8686',
|
|
177
|
+
base_denom: 'uion',
|
|
178
|
+
chain_name: 'osmosistestnet'
|
|
179
|
+
},
|
|
180
|
+
chain: {
|
|
181
|
+
channel_id: 'channel-0'
|
|
182
|
+
}
|
|
183
|
+
}]
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
description: 'The native token of Stargaze',
|
|
187
|
+
denom_units: [{
|
|
188
|
+
denom: 'ibc/C6469BA9DC791E65B3C1596CD2005941324C00659E2DF90D5E08D86B82E7E08B',
|
|
189
|
+
exponent: 0,
|
|
190
|
+
aliases: ['ustars']
|
|
191
|
+
}, {
|
|
192
|
+
denom: 'stars',
|
|
193
|
+
exponent: 6
|
|
194
|
+
}],
|
|
195
|
+
base: 'ibc/C6469BA9DC791E65B3C1596CD2005941324C00659E2DF90D5E08D86B82E7E08B',
|
|
196
|
+
name: 'Stargaze',
|
|
197
|
+
display: 'stars',
|
|
198
|
+
symbol: 'STARS',
|
|
199
|
+
logo_URIs: {
|
|
200
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png'
|
|
201
|
+
},
|
|
202
|
+
coingecko_id: 'stargaze',
|
|
203
|
+
images: [{
|
|
204
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png'
|
|
205
|
+
}],
|
|
206
|
+
traces: [{
|
|
207
|
+
type: 'ibc',
|
|
208
|
+
counterparty: {
|
|
209
|
+
channel_id: 'channel-638',
|
|
210
|
+
base_denom: 'ustars',
|
|
211
|
+
chain_name: 'stargazetestnet'
|
|
212
|
+
},
|
|
213
|
+
chain: {
|
|
214
|
+
channel_id: 'channel-2'
|
|
215
|
+
}
|
|
216
|
+
}]
|
|
217
|
+
}
|
|
218
|
+
]
|
|
219
|
+
};
|
|
220
|
+
export default assets;
|
package/mainnet/composable.js
CHANGED
|
@@ -251,7 +251,11 @@ const assets = {
|
|
|
251
251
|
},
|
|
252
252
|
coingecko_id: 'shiba-inu',
|
|
253
253
|
images: [{
|
|
254
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg'
|
|
254
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg',
|
|
255
|
+
theme: {
|
|
256
|
+
primary_color_hex: '#FFA409',
|
|
257
|
+
background_color_hex: '#00000000'
|
|
258
|
+
}
|
|
255
259
|
}],
|
|
256
260
|
traces: [{
|
|
257
261
|
type: 'ibc',
|
|
@@ -1988,7 +1992,11 @@ const assets = {
|
|
|
1988
1992
|
},
|
|
1989
1993
|
coingecko_id: 'shiba-inu',
|
|
1990
1994
|
images: [{
|
|
1991
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg'
|
|
1995
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg',
|
|
1996
|
+
theme: {
|
|
1997
|
+
primary_color_hex: '#FFA409',
|
|
1998
|
+
background_color_hex: '#00000000'
|
|
1999
|
+
}
|
|
1992
2000
|
}],
|
|
1993
2001
|
traces: [{
|
|
1994
2002
|
type: 'ibc',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/assets",
|
|
3
|
-
"version": "1.64.
|
|
3
|
+
"version": "1.64.58",
|
|
4
4
|
"description": "Chain Registry Asset Lists",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.46.
|
|
33
|
-
"chain-registry": "^1.63.
|
|
32
|
+
"@chain-registry/utils": "^1.46.48",
|
|
33
|
+
"chain-registry": "^1.63.58"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.45.
|
|
36
|
+
"@chain-registry/types": "^0.45.48"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "68d610563154e1cbe5cbed7b3f0545e7bb44dbc0"
|
|
47
47
|
}
|
package/testnet/assets.js
CHANGED
|
@@ -38,8 +38,9 @@ const sagatestnet_1 = __importDefault(require("./sagatestnet"));
|
|
|
38
38
|
const sgetestnet_1 = __importDefault(require("./sgetestnet"));
|
|
39
39
|
const stargazetestnet_1 = __importDefault(require("./stargazetestnet"));
|
|
40
40
|
const swisstroniktestnet_1 = __importDefault(require("./swisstroniktestnet"));
|
|
41
|
+
const symphonytestnet_1 = __importDefault(require("./symphonytestnet"));
|
|
41
42
|
const terra2testnet_1 = __importDefault(require("./terra2testnet"));
|
|
42
43
|
const titantestnet_1 = __importDefault(require("./titantestnet"));
|
|
43
44
|
const xiontestnet_1 = __importDefault(require("./xiontestnet"));
|
|
44
|
-
const assets = [akashtestnet_1.default, archwaytestnet_1.default, axelartestnet_1.default, celestiatestnet3_1.default, chain4energytestnet_1.default, composabletestnet_1.default, coreumtestnet_1.default, cosmoshubtestnet_1.default, doravotatestnet_1.default, dydxtestnet_1.default, elystestnet_1.default, empowertestnet_1.default, entrypointtestnet_1.default, impacthubtestnet_1.default, injectivetestnet_1.default, jackaltestnet2_1.default, junotestnet_1.default, kujiratestnet_1.default, kyvetestnet_1.default, lavatestnet_1.default, likecointestnet_1.default, mantrachaintestnet_1.default, marstestnet_1.default, neutrontestnet_1.default, nobletestnet_1.default, noistestnet_1.default, nolustestnet_1.default, osmosistestnet_1.default, osmosistestnet4_1.default, persistencetestnet2_1.default, quicksilvertestnet_1.default, sagatestnet_1.default, sgetestnet_1.default, stargazetestnet_1.default, swisstroniktestnet_1.default, terra2testnet_1.default, titantestnet_1.default, xiontestnet_1.default];
|
|
45
|
+
const assets = [akashtestnet_1.default, archwaytestnet_1.default, axelartestnet_1.default, celestiatestnet3_1.default, chain4energytestnet_1.default, composabletestnet_1.default, coreumtestnet_1.default, cosmoshubtestnet_1.default, doravotatestnet_1.default, dydxtestnet_1.default, elystestnet_1.default, empowertestnet_1.default, entrypointtestnet_1.default, impacthubtestnet_1.default, injectivetestnet_1.default, jackaltestnet2_1.default, junotestnet_1.default, kujiratestnet_1.default, kyvetestnet_1.default, lavatestnet_1.default, likecointestnet_1.default, mantrachaintestnet_1.default, marstestnet_1.default, neutrontestnet_1.default, nobletestnet_1.default, noistestnet_1.default, nolustestnet_1.default, osmosistestnet_1.default, osmosistestnet4_1.default, persistencetestnet2_1.default, quicksilvertestnet_1.default, sagatestnet_1.default, sgetestnet_1.default, stargazetestnet_1.default, swisstroniktestnet_1.default, symphonytestnet_1.default, terra2testnet_1.default, titantestnet_1.default, xiontestnet_1.default];
|
|
45
46
|
exports.default = assets;
|
package/testnet/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export * as sagatestnet from './sagatestnet';
|
|
|
33
33
|
export * as sgetestnet from './sgetestnet';
|
|
34
34
|
export * as stargazetestnet from './stargazetestnet';
|
|
35
35
|
export * as swisstroniktestnet from './swisstroniktestnet';
|
|
36
|
+
export * as symphonytestnet from './symphonytestnet';
|
|
36
37
|
export * as terra2testnet from './terra2testnet';
|
|
37
38
|
export * as titantestnet from './titantestnet';
|
|
38
39
|
export * as xiontestnet from './xiontestnet';
|
package/testnet/index.js
CHANGED
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.xiontestnet = exports.titantestnet = exports.terra2testnet = exports.swisstroniktestnet = exports.stargazetestnet = exports.sgetestnet = exports.sagatestnet = exports.quicksilvertestnet = exports.persistencetestnet2 = exports.osmosistestnet4 = exports.osmosistestnet = exports.nolustestnet = exports.noistestnet = exports.nobletestnet = exports.neutrontestnet = exports.marstestnet = exports.mantrachaintestnet = exports.likecointestnet = exports.lavatestnet = exports.kyvetestnet = exports.kujiratestnet = exports.junotestnet = exports.jackaltestnet2 = exports.injectivetestnet = exports.impacthubtestnet = exports.entrypointtestnet = exports.empowertestnet = exports.elystestnet = exports.dydxtestnet = exports.doravotatestnet = exports.cosmoshubtestnet = exports.coreumtestnet = exports.composabletestnet = exports.chain4energytestnet = exports.celestiatestnet3 = exports.axelartestnet = exports.archwaytestnet = exports.akashtestnet = void 0;
|
|
26
|
+
exports.xiontestnet = exports.titantestnet = exports.terra2testnet = exports.symphonytestnet = exports.swisstroniktestnet = exports.stargazetestnet = exports.sgetestnet = exports.sagatestnet = exports.quicksilvertestnet = exports.persistencetestnet2 = exports.osmosistestnet4 = exports.osmosistestnet = exports.nolustestnet = exports.noistestnet = exports.nobletestnet = exports.neutrontestnet = exports.marstestnet = exports.mantrachaintestnet = exports.likecointestnet = exports.lavatestnet = exports.kyvetestnet = exports.kujiratestnet = exports.junotestnet = exports.jackaltestnet2 = exports.injectivetestnet = exports.impacthubtestnet = exports.entrypointtestnet = exports.empowertestnet = exports.elystestnet = exports.dydxtestnet = exports.doravotatestnet = exports.cosmoshubtestnet = exports.coreumtestnet = exports.composabletestnet = exports.chain4energytestnet = exports.celestiatestnet3 = exports.axelartestnet = exports.archwaytestnet = exports.akashtestnet = void 0;
|
|
27
27
|
exports.akashtestnet = __importStar(require("./akashtestnet"));
|
|
28
28
|
exports.archwaytestnet = __importStar(require("./archwaytestnet"));
|
|
29
29
|
exports.axelartestnet = __importStar(require("./axelartestnet"));
|
|
@@ -59,6 +59,7 @@ exports.sagatestnet = __importStar(require("./sagatestnet"));
|
|
|
59
59
|
exports.sgetestnet = __importStar(require("./sgetestnet"));
|
|
60
60
|
exports.stargazetestnet = __importStar(require("./stargazetestnet"));
|
|
61
61
|
exports.swisstroniktestnet = __importStar(require("./swisstroniktestnet"));
|
|
62
|
+
exports.symphonytestnet = __importStar(require("./symphonytestnet"));
|
|
62
63
|
exports.terra2testnet = __importStar(require("./terra2testnet"));
|
|
63
64
|
exports.titantestnet = __importStar(require("./titantestnet"));
|
|
64
65
|
exports.xiontestnet = __importStar(require("./xiontestnet"));
|
|
@@ -1658,6 +1658,40 @@ const assets = {
|
|
|
1658
1658
|
}
|
|
1659
1659
|
}]
|
|
1660
1660
|
},
|
|
1661
|
+
{
|
|
1662
|
+
description: 'The native token of Symphony',
|
|
1663
|
+
denom_units: [{
|
|
1664
|
+
denom: 'ibc/AD18AE96582181A04267D08DFDD9C60F46E6B68E8FCC20DC88209AE8E9A8E0C7',
|
|
1665
|
+
exponent: 0,
|
|
1666
|
+
aliases: ['note']
|
|
1667
|
+
}, {
|
|
1668
|
+
denom: 'mld',
|
|
1669
|
+
exponent: 6,
|
|
1670
|
+
aliases: ['melody']
|
|
1671
|
+
}],
|
|
1672
|
+
type_asset: 'sdk.coin',
|
|
1673
|
+
base: 'ibc/AD18AE96582181A04267D08DFDD9C60F46E6B68E8FCC20DC88209AE8E9A8E0C7',
|
|
1674
|
+
name: 'Melody',
|
|
1675
|
+
display: 'mld',
|
|
1676
|
+
symbol: 'MLD',
|
|
1677
|
+
logo_URIs: {
|
|
1678
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
1679
|
+
},
|
|
1680
|
+
images: [{
|
|
1681
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
1682
|
+
}],
|
|
1683
|
+
traces: [{
|
|
1684
|
+
type: 'ibc',
|
|
1685
|
+
counterparty: {
|
|
1686
|
+
channel_id: 'channel-0',
|
|
1687
|
+
base_denom: 'note',
|
|
1688
|
+
chain_name: 'symphonytestnet'
|
|
1689
|
+
},
|
|
1690
|
+
chain: {
|
|
1691
|
+
channel_id: 'channnel-8686'
|
|
1692
|
+
}
|
|
1693
|
+
}]
|
|
1694
|
+
},
|
|
1661
1695
|
{
|
|
1662
1696
|
description: 'The native token of the Titan network.',
|
|
1663
1697
|
denom_units: [
|
|
@@ -2045,6 +2079,40 @@ const assets = {
|
|
|
2045
2079
|
}
|
|
2046
2080
|
}]
|
|
2047
2081
|
},
|
|
2082
|
+
{
|
|
2083
|
+
description: 'The native token of Symphony',
|
|
2084
|
+
denom_units: [{
|
|
2085
|
+
denom: 'ibc/AD18AE96582181A04267D08DFDD9C60F46E6B68E8FCC20DC88209AE8E9A8E0C7',
|
|
2086
|
+
exponent: 0,
|
|
2087
|
+
aliases: ['note']
|
|
2088
|
+
}, {
|
|
2089
|
+
denom: 'mld',
|
|
2090
|
+
exponent: 6,
|
|
2091
|
+
aliases: ['melody']
|
|
2092
|
+
}],
|
|
2093
|
+
type_asset: 'sdk.coin',
|
|
2094
|
+
base: 'ibc/AD18AE96582181A04267D08DFDD9C60F46E6B68E8FCC20DC88209AE8E9A8E0C7',
|
|
2095
|
+
name: 'Melody',
|
|
2096
|
+
display: 'mld',
|
|
2097
|
+
symbol: 'MLD',
|
|
2098
|
+
logo_URIs: {
|
|
2099
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
2100
|
+
},
|
|
2101
|
+
images: [{
|
|
2102
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
2103
|
+
}],
|
|
2104
|
+
traces: [{
|
|
2105
|
+
type: 'ibc',
|
|
2106
|
+
counterparty: {
|
|
2107
|
+
channel_id: 'channel-0',
|
|
2108
|
+
base_denom: 'note',
|
|
2109
|
+
chain_name: 'symphonytestnet'
|
|
2110
|
+
},
|
|
2111
|
+
chain: {
|
|
2112
|
+
channel_id: 'channnel-8686'
|
|
2113
|
+
}
|
|
2114
|
+
}]
|
|
2115
|
+
},
|
|
2048
2116
|
{
|
|
2049
2117
|
description: 'The native token of the Titan network.',
|
|
2050
2118
|
denom_units: [
|
|
@@ -295,6 +295,40 @@ const assets = {
|
|
|
295
295
|
}
|
|
296
296
|
}]
|
|
297
297
|
},
|
|
298
|
+
{
|
|
299
|
+
description: 'The native token of Symphony',
|
|
300
|
+
denom_units: [{
|
|
301
|
+
denom: 'ibc/4349702B8734A8372397BBBCD845AF21DF7EA780265D31058E56C5FE3308C11C',
|
|
302
|
+
exponent: 0,
|
|
303
|
+
aliases: ['note']
|
|
304
|
+
}, {
|
|
305
|
+
denom: 'mld',
|
|
306
|
+
exponent: 6,
|
|
307
|
+
aliases: ['melody']
|
|
308
|
+
}],
|
|
309
|
+
type_asset: 'sdk.coin',
|
|
310
|
+
base: 'ibc/4349702B8734A8372397BBBCD845AF21DF7EA780265D31058E56C5FE3308C11C',
|
|
311
|
+
name: 'Melody',
|
|
312
|
+
display: 'mld',
|
|
313
|
+
symbol: 'MLD',
|
|
314
|
+
logo_URIs: {
|
|
315
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
316
|
+
},
|
|
317
|
+
images: [{
|
|
318
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
319
|
+
}],
|
|
320
|
+
traces: [{
|
|
321
|
+
type: 'ibc',
|
|
322
|
+
counterparty: {
|
|
323
|
+
channel_id: 'channel-2',
|
|
324
|
+
base_denom: 'note',
|
|
325
|
+
chain_name: 'symphonytestnet'
|
|
326
|
+
},
|
|
327
|
+
chain: {
|
|
328
|
+
channel_id: 'channel-638'
|
|
329
|
+
}
|
|
330
|
+
}]
|
|
331
|
+
},
|
|
298
332
|
{
|
|
299
333
|
description: 'The native token of the Titan network.',
|
|
300
334
|
denom_units: [
|
|
@@ -342,6 +376,40 @@ const assets = {
|
|
|
342
376
|
}
|
|
343
377
|
}]
|
|
344
378
|
},
|
|
379
|
+
{
|
|
380
|
+
description: 'The native token of Symphony',
|
|
381
|
+
denom_units: [{
|
|
382
|
+
denom: 'ibc/4349702B8734A8372397BBBCD845AF21DF7EA780265D31058E56C5FE3308C11C',
|
|
383
|
+
exponent: 0,
|
|
384
|
+
aliases: ['note']
|
|
385
|
+
}, {
|
|
386
|
+
denom: 'mld',
|
|
387
|
+
exponent: 6,
|
|
388
|
+
aliases: ['melody']
|
|
389
|
+
}],
|
|
390
|
+
type_asset: 'sdk.coin',
|
|
391
|
+
base: 'ibc/4349702B8734A8372397BBBCD845AF21DF7EA780265D31058E56C5FE3308C11C',
|
|
392
|
+
name: 'Melody',
|
|
393
|
+
display: 'mld',
|
|
394
|
+
symbol: 'MLD',
|
|
395
|
+
logo_URIs: {
|
|
396
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
397
|
+
},
|
|
398
|
+
images: [{
|
|
399
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/coin_icon.png'
|
|
400
|
+
}],
|
|
401
|
+
traces: [{
|
|
402
|
+
type: 'ibc',
|
|
403
|
+
counterparty: {
|
|
404
|
+
channel_id: 'channel-2',
|
|
405
|
+
base_denom: 'note',
|
|
406
|
+
chain_name: 'symphonytestnet'
|
|
407
|
+
},
|
|
408
|
+
chain: {
|
|
409
|
+
channel_id: 'channel-638'
|
|
410
|
+
}
|
|
411
|
+
}]
|
|
412
|
+
},
|
|
345
413
|
{
|
|
346
414
|
description: 'The native token of the Titan network.',
|
|
347
415
|
denom_units: [
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const assets = {
|
|
4
|
+
chain_name: 'symphonytestnet',
|
|
5
|
+
assets: [
|
|
6
|
+
{
|
|
7
|
+
description: 'The native token of Osmosis',
|
|
8
|
+
denom_units: [{
|
|
9
|
+
denom: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
10
|
+
exponent: 0,
|
|
11
|
+
aliases: ['uosmo']
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'osmo',
|
|
14
|
+
exponent: 6,
|
|
15
|
+
aliases: []
|
|
16
|
+
}],
|
|
17
|
+
type_asset: 'sdk.coin',
|
|
18
|
+
base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
19
|
+
name: 'Osmosis Testnet',
|
|
20
|
+
display: 'osmo',
|
|
21
|
+
symbol: 'OSMO',
|
|
22
|
+
logo_URIs: {
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
25
|
+
},
|
|
26
|
+
images: [{
|
|
27
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
28
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
29
|
+
}],
|
|
30
|
+
coingecko_id: 'osmosis',
|
|
31
|
+
keywords: ['dex', 'staking'],
|
|
32
|
+
traces: [{
|
|
33
|
+
type: 'ibc',
|
|
34
|
+
counterparty: {
|
|
35
|
+
channel_id: 'channnel-8686',
|
|
36
|
+
base_denom: 'uosmo',
|
|
37
|
+
chain_name: 'osmosistestnet'
|
|
38
|
+
},
|
|
39
|
+
chain: {
|
|
40
|
+
channel_id: 'channel-0'
|
|
41
|
+
}
|
|
42
|
+
}]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
denom_units: [{
|
|
46
|
+
denom: 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16',
|
|
47
|
+
exponent: 0,
|
|
48
|
+
aliases: ['uion']
|
|
49
|
+
}, {
|
|
50
|
+
denom: 'ion',
|
|
51
|
+
exponent: 6
|
|
52
|
+
}],
|
|
53
|
+
type_asset: 'sdk.coin',
|
|
54
|
+
base: 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16',
|
|
55
|
+
name: 'Ion',
|
|
56
|
+
display: 'ion',
|
|
57
|
+
symbol: 'ION',
|
|
58
|
+
logo_URIs: {
|
|
59
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
60
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
61
|
+
},
|
|
62
|
+
images: [{
|
|
63
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
64
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
65
|
+
}],
|
|
66
|
+
coingecko_id: 'ion',
|
|
67
|
+
keywords: ['memecoin'],
|
|
68
|
+
traces: [{
|
|
69
|
+
type: 'ibc',
|
|
70
|
+
counterparty: {
|
|
71
|
+
channel_id: 'channnel-8686',
|
|
72
|
+
base_denom: 'uion',
|
|
73
|
+
chain_name: 'osmosistestnet'
|
|
74
|
+
},
|
|
75
|
+
chain: {
|
|
76
|
+
channel_id: 'channel-0'
|
|
77
|
+
}
|
|
78
|
+
}]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
description: 'The native token of Stargaze',
|
|
82
|
+
denom_units: [{
|
|
83
|
+
denom: 'ibc/C6469BA9DC791E65B3C1596CD2005941324C00659E2DF90D5E08D86B82E7E08B',
|
|
84
|
+
exponent: 0,
|
|
85
|
+
aliases: ['ustars']
|
|
86
|
+
}, {
|
|
87
|
+
denom: 'stars',
|
|
88
|
+
exponent: 6
|
|
89
|
+
}],
|
|
90
|
+
base: 'ibc/C6469BA9DC791E65B3C1596CD2005941324C00659E2DF90D5E08D86B82E7E08B',
|
|
91
|
+
name: 'Stargaze',
|
|
92
|
+
display: 'stars',
|
|
93
|
+
symbol: 'STARS',
|
|
94
|
+
logo_URIs: {
|
|
95
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png'
|
|
96
|
+
},
|
|
97
|
+
coingecko_id: 'stargaze',
|
|
98
|
+
images: [{
|
|
99
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png'
|
|
100
|
+
}],
|
|
101
|
+
traces: [{
|
|
102
|
+
type: 'ibc',
|
|
103
|
+
counterparty: {
|
|
104
|
+
channel_id: 'channel-638',
|
|
105
|
+
base_denom: 'ustars',
|
|
106
|
+
chain_name: 'stargazetestnet'
|
|
107
|
+
},
|
|
108
|
+
chain: {
|
|
109
|
+
channel_id: 'channel-2'
|
|
110
|
+
}
|
|
111
|
+
}]
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
description: 'The native token of Osmosis',
|
|
115
|
+
denom_units: [{
|
|
116
|
+
denom: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
117
|
+
exponent: 0,
|
|
118
|
+
aliases: ['uosmo']
|
|
119
|
+
}, {
|
|
120
|
+
denom: 'osmo',
|
|
121
|
+
exponent: 6,
|
|
122
|
+
aliases: []
|
|
123
|
+
}],
|
|
124
|
+
type_asset: 'sdk.coin',
|
|
125
|
+
base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
126
|
+
name: 'Osmosis Testnet',
|
|
127
|
+
display: 'osmo',
|
|
128
|
+
symbol: 'OSMO',
|
|
129
|
+
logo_URIs: {
|
|
130
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
131
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
132
|
+
},
|
|
133
|
+
images: [{
|
|
134
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
135
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
136
|
+
}],
|
|
137
|
+
coingecko_id: 'osmosis',
|
|
138
|
+
keywords: ['dex', 'staking'],
|
|
139
|
+
traces: [{
|
|
140
|
+
type: 'ibc',
|
|
141
|
+
counterparty: {
|
|
142
|
+
channel_id: 'channnel-8686',
|
|
143
|
+
base_denom: 'uosmo',
|
|
144
|
+
chain_name: 'osmosistestnet'
|
|
145
|
+
},
|
|
146
|
+
chain: {
|
|
147
|
+
channel_id: 'channel-0'
|
|
148
|
+
}
|
|
149
|
+
}]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
denom_units: [{
|
|
153
|
+
denom: 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16',
|
|
154
|
+
exponent: 0,
|
|
155
|
+
aliases: ['uion']
|
|
156
|
+
}, {
|
|
157
|
+
denom: 'ion',
|
|
158
|
+
exponent: 6
|
|
159
|
+
}],
|
|
160
|
+
type_asset: 'sdk.coin',
|
|
161
|
+
base: 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16',
|
|
162
|
+
name: 'Ion',
|
|
163
|
+
display: 'ion',
|
|
164
|
+
symbol: 'ION',
|
|
165
|
+
logo_URIs: {
|
|
166
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
167
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
168
|
+
},
|
|
169
|
+
images: [{
|
|
170
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
171
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
172
|
+
}],
|
|
173
|
+
coingecko_id: 'ion',
|
|
174
|
+
keywords: ['memecoin'],
|
|
175
|
+
traces: [{
|
|
176
|
+
type: 'ibc',
|
|
177
|
+
counterparty: {
|
|
178
|
+
channel_id: 'channnel-8686',
|
|
179
|
+
base_denom: 'uion',
|
|
180
|
+
chain_name: 'osmosistestnet'
|
|
181
|
+
},
|
|
182
|
+
chain: {
|
|
183
|
+
channel_id: 'channel-0'
|
|
184
|
+
}
|
|
185
|
+
}]
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
description: 'The native token of Stargaze',
|
|
189
|
+
denom_units: [{
|
|
190
|
+
denom: 'ibc/C6469BA9DC791E65B3C1596CD2005941324C00659E2DF90D5E08D86B82E7E08B',
|
|
191
|
+
exponent: 0,
|
|
192
|
+
aliases: ['ustars']
|
|
193
|
+
}, {
|
|
194
|
+
denom: 'stars',
|
|
195
|
+
exponent: 6
|
|
196
|
+
}],
|
|
197
|
+
base: 'ibc/C6469BA9DC791E65B3C1596CD2005941324C00659E2DF90D5E08D86B82E7E08B',
|
|
198
|
+
name: 'Stargaze',
|
|
199
|
+
display: 'stars',
|
|
200
|
+
symbol: 'STARS',
|
|
201
|
+
logo_URIs: {
|
|
202
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png'
|
|
203
|
+
},
|
|
204
|
+
coingecko_id: 'stargaze',
|
|
205
|
+
images: [{
|
|
206
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png'
|
|
207
|
+
}],
|
|
208
|
+
traces: [{
|
|
209
|
+
type: 'ibc',
|
|
210
|
+
counterparty: {
|
|
211
|
+
channel_id: 'channel-638',
|
|
212
|
+
base_denom: 'ustars',
|
|
213
|
+
chain_name: 'stargazetestnet'
|
|
214
|
+
},
|
|
215
|
+
chain: {
|
|
216
|
+
channel_id: 'channel-2'
|
|
217
|
+
}
|
|
218
|
+
}]
|
|
219
|
+
}
|
|
220
|
+
]
|
|
221
|
+
};
|
|
222
|
+
exports.default = assets;
|