@chain-registry/assets 1.64.81 → 1.64.83
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/acrechain.js +8 -0
- package/esm/mainnet/andromeda.js +176 -0
- package/esm/mainnet/cosmoshub.js +8 -0
- package/esm/mainnet/injective.js +8 -0
- package/esm/mainnet/migaloo.js +14 -20
- package/esm/mainnet/osmosis.js +94 -20
- package/esm/mainnet/secretnetwork.js +8 -0
- package/esm/testnet/assets.js +2 -1
- package/esm/testnet/index.js +1 -0
- package/esm/testnet/kimatestnet.js +154 -0
- package/esm/testnet/osmosistestnet.js +68 -0
- package/mainnet/acrechain.js +8 -0
- package/mainnet/andromeda.js +176 -0
- package/mainnet/cosmoshub.js +8 -0
- package/mainnet/injective.js +8 -0
- package/mainnet/migaloo.js +14 -20
- package/mainnet/osmosis.js +94 -20
- package/mainnet/secretnetwork.js +8 -0
- 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/kimatestnet.d.ts +3 -0
- package/testnet/kimatestnet.js +156 -0
- package/testnet/osmosistestnet.js +68 -0
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
const assets = {
|
|
2
|
+
chain_name: 'kimatestnet',
|
|
3
|
+
assets: [
|
|
4
|
+
{
|
|
5
|
+
description: 'The native token of Osmosis',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['uosmo']
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'osmo',
|
|
12
|
+
exponent: 6,
|
|
13
|
+
aliases: []
|
|
14
|
+
}],
|
|
15
|
+
type_asset: 'sdk.coin',
|
|
16
|
+
base: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B',
|
|
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-8867',
|
|
34
|
+
base_denom: 'uosmo',
|
|
35
|
+
chain_name: 'osmosistestnet'
|
|
36
|
+
},
|
|
37
|
+
chain: {
|
|
38
|
+
channel_id: 'channel-1'
|
|
39
|
+
}
|
|
40
|
+
}]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
denom_units: [{
|
|
44
|
+
denom: 'ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D',
|
|
45
|
+
exponent: 0,
|
|
46
|
+
aliases: ['uion']
|
|
47
|
+
}, {
|
|
48
|
+
denom: 'ion',
|
|
49
|
+
exponent: 6
|
|
50
|
+
}],
|
|
51
|
+
type_asset: 'sdk.coin',
|
|
52
|
+
base: 'ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D',
|
|
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-8867',
|
|
70
|
+
base_denom: 'uion',
|
|
71
|
+
chain_name: 'osmosistestnet'
|
|
72
|
+
},
|
|
73
|
+
chain: {
|
|
74
|
+
channel_id: 'channel-1'
|
|
75
|
+
}
|
|
76
|
+
}]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
description: 'The native token of Osmosis',
|
|
80
|
+
denom_units: [{
|
|
81
|
+
denom: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B',
|
|
82
|
+
exponent: 0,
|
|
83
|
+
aliases: ['uosmo']
|
|
84
|
+
}, {
|
|
85
|
+
denom: 'osmo',
|
|
86
|
+
exponent: 6,
|
|
87
|
+
aliases: []
|
|
88
|
+
}],
|
|
89
|
+
type_asset: 'sdk.coin',
|
|
90
|
+
base: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B',
|
|
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-8867',
|
|
108
|
+
base_denom: 'uosmo',
|
|
109
|
+
chain_name: 'osmosistestnet'
|
|
110
|
+
},
|
|
111
|
+
chain: {
|
|
112
|
+
channel_id: 'channel-1'
|
|
113
|
+
}
|
|
114
|
+
}]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
denom_units: [{
|
|
118
|
+
denom: 'ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D',
|
|
119
|
+
exponent: 0,
|
|
120
|
+
aliases: ['uion']
|
|
121
|
+
}, {
|
|
122
|
+
denom: 'ion',
|
|
123
|
+
exponent: 6
|
|
124
|
+
}],
|
|
125
|
+
type_asset: 'sdk.coin',
|
|
126
|
+
base: 'ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D',
|
|
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-8867',
|
|
144
|
+
base_denom: 'uion',
|
|
145
|
+
chain_name: 'osmosistestnet'
|
|
146
|
+
},
|
|
147
|
+
chain: {
|
|
148
|
+
channel_id: 'channel-1'
|
|
149
|
+
}
|
|
150
|
+
}]
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
};
|
|
154
|
+
export default assets;
|
|
@@ -420,6 +420,40 @@ const assets = {
|
|
|
420
420
|
}
|
|
421
421
|
}]
|
|
422
422
|
},
|
|
423
|
+
{
|
|
424
|
+
description: 'The native token of Kima Chain',
|
|
425
|
+
denom_units: [{
|
|
426
|
+
denom: 'ibc/F3BE982F8F56E599A71939F174345C470D7C1F9D443F1822EF3DEA53783D2551',
|
|
427
|
+
exponent: 0,
|
|
428
|
+
aliases: ['uKIMA']
|
|
429
|
+
}, {
|
|
430
|
+
denom: 'KIMA',
|
|
431
|
+
exponent: 6
|
|
432
|
+
}],
|
|
433
|
+
base: 'ibc/F3BE982F8F56E599A71939F174345C470D7C1F9D443F1822EF3DEA53783D2551',
|
|
434
|
+
name: 'KIMA',
|
|
435
|
+
display: 'KIMA',
|
|
436
|
+
symbol: 'KIMA',
|
|
437
|
+
logo_URIs: {
|
|
438
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kimatestnet/images/kima.png',
|
|
439
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kimatestnet/images/kima.svg'
|
|
440
|
+
},
|
|
441
|
+
images: [{
|
|
442
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kimatestnet/images/kima.png',
|
|
443
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kimatestnet/images/kima.svg'
|
|
444
|
+
}],
|
|
445
|
+
traces: [{
|
|
446
|
+
type: 'ibc',
|
|
447
|
+
counterparty: {
|
|
448
|
+
channel_id: 'channel-1',
|
|
449
|
+
base_denom: 'uKIMA',
|
|
450
|
+
chain_name: 'kimatestnet'
|
|
451
|
+
},
|
|
452
|
+
chain: {
|
|
453
|
+
channel_id: 'channel-8867'
|
|
454
|
+
}
|
|
455
|
+
}]
|
|
456
|
+
},
|
|
423
457
|
{
|
|
424
458
|
description: 'The native token of Lava',
|
|
425
459
|
denom_units: [{
|
|
@@ -1094,6 +1128,40 @@ const assets = {
|
|
|
1094
1128
|
}
|
|
1095
1129
|
}]
|
|
1096
1130
|
},
|
|
1131
|
+
{
|
|
1132
|
+
description: 'The native token of Kima Chain',
|
|
1133
|
+
denom_units: [{
|
|
1134
|
+
denom: 'ibc/F3BE982F8F56E599A71939F174345C470D7C1F9D443F1822EF3DEA53783D2551',
|
|
1135
|
+
exponent: 0,
|
|
1136
|
+
aliases: ['uKIMA']
|
|
1137
|
+
}, {
|
|
1138
|
+
denom: 'KIMA',
|
|
1139
|
+
exponent: 6
|
|
1140
|
+
}],
|
|
1141
|
+
base: 'ibc/F3BE982F8F56E599A71939F174345C470D7C1F9D443F1822EF3DEA53783D2551',
|
|
1142
|
+
name: 'KIMA',
|
|
1143
|
+
display: 'KIMA',
|
|
1144
|
+
symbol: 'KIMA',
|
|
1145
|
+
logo_URIs: {
|
|
1146
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kimatestnet/images/kima.png',
|
|
1147
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kimatestnet/images/kima.svg'
|
|
1148
|
+
},
|
|
1149
|
+
images: [{
|
|
1150
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kimatestnet/images/kima.png',
|
|
1151
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/kimatestnet/images/kima.svg'
|
|
1152
|
+
}],
|
|
1153
|
+
traces: [{
|
|
1154
|
+
type: 'ibc',
|
|
1155
|
+
counterparty: {
|
|
1156
|
+
channel_id: 'channel-1',
|
|
1157
|
+
base_denom: 'uKIMA',
|
|
1158
|
+
chain_name: 'kimatestnet'
|
|
1159
|
+
},
|
|
1160
|
+
chain: {
|
|
1161
|
+
channel_id: 'channel-8867'
|
|
1162
|
+
}
|
|
1163
|
+
}]
|
|
1164
|
+
},
|
|
1097
1165
|
{
|
|
1098
1166
|
description: 'The native token of Lava',
|
|
1099
1167
|
denom_units: [{
|
package/mainnet/acrechain.js
CHANGED
|
@@ -350,6 +350,10 @@ const assets = {
|
|
|
350
350
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png'
|
|
351
351
|
},
|
|
352
352
|
coingecko_id: 'oraichain-token',
|
|
353
|
+
socials: {
|
|
354
|
+
website: 'https://orai.io/',
|
|
355
|
+
twitter: 'https://x.com/oraichain'
|
|
356
|
+
},
|
|
353
357
|
images: [
|
|
354
358
|
{
|
|
355
359
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png',
|
|
@@ -2011,6 +2015,10 @@ const assets = {
|
|
|
2011
2015
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png'
|
|
2012
2016
|
},
|
|
2013
2017
|
coingecko_id: 'oraichain-token',
|
|
2018
|
+
socials: {
|
|
2019
|
+
website: 'https://orai.io/',
|
|
2020
|
+
twitter: 'https://x.com/oraichain'
|
|
2021
|
+
},
|
|
2014
2022
|
images: [
|
|
2015
2023
|
{
|
|
2016
2024
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png',
|
package/mainnet/andromeda.js
CHANGED
|
@@ -408,6 +408,94 @@ const assets = {
|
|
|
408
408
|
}
|
|
409
409
|
}]
|
|
410
410
|
},
|
|
411
|
+
{
|
|
412
|
+
description: 'The native token of Osmosis',
|
|
413
|
+
denom_units: [{
|
|
414
|
+
denom: 'ibc/B4314D0E670CB43C88A5DCA09F76E5E812BD831CC2FEC6E434C9E5A9D1F57953',
|
|
415
|
+
exponent: 0,
|
|
416
|
+
aliases: ['uosmo']
|
|
417
|
+
}, {
|
|
418
|
+
denom: 'osmo',
|
|
419
|
+
exponent: 6
|
|
420
|
+
}],
|
|
421
|
+
type_asset: 'sdk.coin',
|
|
422
|
+
base: 'ibc/B4314D0E670CB43C88A5DCA09F76E5E812BD831CC2FEC6E434C9E5A9D1F57953',
|
|
423
|
+
name: 'Osmosis',
|
|
424
|
+
display: 'osmo',
|
|
425
|
+
symbol: 'OSMO',
|
|
426
|
+
logo_URIs: {
|
|
427
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
428
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
429
|
+
},
|
|
430
|
+
images: [{
|
|
431
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
432
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
|
|
433
|
+
theme: {
|
|
434
|
+
primary_color_hex: '#760dbb'
|
|
435
|
+
}
|
|
436
|
+
}],
|
|
437
|
+
coingecko_id: 'osmosis',
|
|
438
|
+
keywords: ['dex', 'staking'],
|
|
439
|
+
socials: {
|
|
440
|
+
website: 'https://osmosis.zone',
|
|
441
|
+
twitter: 'https://twitter.com/osmosiszone'
|
|
442
|
+
},
|
|
443
|
+
traces: [{
|
|
444
|
+
type: 'ibc',
|
|
445
|
+
counterparty: {
|
|
446
|
+
channel_id: 'channel-81924',
|
|
447
|
+
base_denom: 'uosmo',
|
|
448
|
+
chain_name: 'osmosis'
|
|
449
|
+
},
|
|
450
|
+
chain: {
|
|
451
|
+
channel_id: 'channel-17'
|
|
452
|
+
}
|
|
453
|
+
}]
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
description: 'ION is the second native token of Osmosis.',
|
|
457
|
+
denom_units: [{
|
|
458
|
+
denom: 'ibc/FF03988A22CDAB8C0AFD760DE5A612767165B2B6B73BDB6F4CCD1D0359D7CEAD',
|
|
459
|
+
exponent: 0,
|
|
460
|
+
aliases: ['uion']
|
|
461
|
+
}, {
|
|
462
|
+
denom: 'ion',
|
|
463
|
+
exponent: 6
|
|
464
|
+
}],
|
|
465
|
+
type_asset: 'sdk.coin',
|
|
466
|
+
base: 'ibc/FF03988A22CDAB8C0AFD760DE5A612767165B2B6B73BDB6F4CCD1D0359D7CEAD',
|
|
467
|
+
name: 'Ion DAO',
|
|
468
|
+
display: 'ion',
|
|
469
|
+
symbol: 'ION',
|
|
470
|
+
logo_URIs: {
|
|
471
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
472
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
473
|
+
},
|
|
474
|
+
images: [{
|
|
475
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
476
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg',
|
|
477
|
+
theme: {
|
|
478
|
+
primary_color_hex: '#4453c7'
|
|
479
|
+
}
|
|
480
|
+
}],
|
|
481
|
+
coingecko_id: 'ion',
|
|
482
|
+
keywords: ['memecoin', 'defi'],
|
|
483
|
+
socials: {
|
|
484
|
+
website: 'https://ion.wtf',
|
|
485
|
+
twitter: 'https://twitter.com/_IONDAO'
|
|
486
|
+
},
|
|
487
|
+
traces: [{
|
|
488
|
+
type: 'ibc',
|
|
489
|
+
counterparty: {
|
|
490
|
+
channel_id: 'channel-81924',
|
|
491
|
+
base_denom: 'uion',
|
|
492
|
+
chain_name: 'osmosis'
|
|
493
|
+
},
|
|
494
|
+
chain: {
|
|
495
|
+
channel_id: 'channel-17'
|
|
496
|
+
}
|
|
497
|
+
}]
|
|
498
|
+
},
|
|
411
499
|
{
|
|
412
500
|
description: 'Secret Network is a privacy-focused blockchain that enables private and secure smart contracts, protecting sensitive data.',
|
|
413
501
|
denom_units: [{
|
|
@@ -897,6 +985,94 @@ const assets = {
|
|
|
897
985
|
}
|
|
898
986
|
}]
|
|
899
987
|
},
|
|
988
|
+
{
|
|
989
|
+
description: 'The native token of Osmosis',
|
|
990
|
+
denom_units: [{
|
|
991
|
+
denom: 'ibc/B4314D0E670CB43C88A5DCA09F76E5E812BD831CC2FEC6E434C9E5A9D1F57953',
|
|
992
|
+
exponent: 0,
|
|
993
|
+
aliases: ['uosmo']
|
|
994
|
+
}, {
|
|
995
|
+
denom: 'osmo',
|
|
996
|
+
exponent: 6
|
|
997
|
+
}],
|
|
998
|
+
type_asset: 'sdk.coin',
|
|
999
|
+
base: 'ibc/B4314D0E670CB43C88A5DCA09F76E5E812BD831CC2FEC6E434C9E5A9D1F57953',
|
|
1000
|
+
name: 'Osmosis',
|
|
1001
|
+
display: 'osmo',
|
|
1002
|
+
symbol: 'OSMO',
|
|
1003
|
+
logo_URIs: {
|
|
1004
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
1005
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
1006
|
+
},
|
|
1007
|
+
images: [{
|
|
1008
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
1009
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
|
|
1010
|
+
theme: {
|
|
1011
|
+
primary_color_hex: '#760dbb'
|
|
1012
|
+
}
|
|
1013
|
+
}],
|
|
1014
|
+
coingecko_id: 'osmosis',
|
|
1015
|
+
keywords: ['dex', 'staking'],
|
|
1016
|
+
socials: {
|
|
1017
|
+
website: 'https://osmosis.zone',
|
|
1018
|
+
twitter: 'https://twitter.com/osmosiszone'
|
|
1019
|
+
},
|
|
1020
|
+
traces: [{
|
|
1021
|
+
type: 'ibc',
|
|
1022
|
+
counterparty: {
|
|
1023
|
+
channel_id: 'channel-81924',
|
|
1024
|
+
base_denom: 'uosmo',
|
|
1025
|
+
chain_name: 'osmosis'
|
|
1026
|
+
},
|
|
1027
|
+
chain: {
|
|
1028
|
+
channel_id: 'channel-17'
|
|
1029
|
+
}
|
|
1030
|
+
}]
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
description: 'ION is the second native token of Osmosis.',
|
|
1034
|
+
denom_units: [{
|
|
1035
|
+
denom: 'ibc/FF03988A22CDAB8C0AFD760DE5A612767165B2B6B73BDB6F4CCD1D0359D7CEAD',
|
|
1036
|
+
exponent: 0,
|
|
1037
|
+
aliases: ['uion']
|
|
1038
|
+
}, {
|
|
1039
|
+
denom: 'ion',
|
|
1040
|
+
exponent: 6
|
|
1041
|
+
}],
|
|
1042
|
+
type_asset: 'sdk.coin',
|
|
1043
|
+
base: 'ibc/FF03988A22CDAB8C0AFD760DE5A612767165B2B6B73BDB6F4CCD1D0359D7CEAD',
|
|
1044
|
+
name: 'Ion DAO',
|
|
1045
|
+
display: 'ion',
|
|
1046
|
+
symbol: 'ION',
|
|
1047
|
+
logo_URIs: {
|
|
1048
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
1049
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
1050
|
+
},
|
|
1051
|
+
images: [{
|
|
1052
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
1053
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg',
|
|
1054
|
+
theme: {
|
|
1055
|
+
primary_color_hex: '#4453c7'
|
|
1056
|
+
}
|
|
1057
|
+
}],
|
|
1058
|
+
coingecko_id: 'ion',
|
|
1059
|
+
keywords: ['memecoin', 'defi'],
|
|
1060
|
+
socials: {
|
|
1061
|
+
website: 'https://ion.wtf',
|
|
1062
|
+
twitter: 'https://twitter.com/_IONDAO'
|
|
1063
|
+
},
|
|
1064
|
+
traces: [{
|
|
1065
|
+
type: 'ibc',
|
|
1066
|
+
counterparty: {
|
|
1067
|
+
channel_id: 'channel-81924',
|
|
1068
|
+
base_denom: 'uion',
|
|
1069
|
+
chain_name: 'osmosis'
|
|
1070
|
+
},
|
|
1071
|
+
chain: {
|
|
1072
|
+
channel_id: 'channel-17'
|
|
1073
|
+
}
|
|
1074
|
+
}]
|
|
1075
|
+
},
|
|
900
1076
|
{
|
|
901
1077
|
description: 'Secret Network is a privacy-focused blockchain that enables private and secure smart contracts, protecting sensitive data.',
|
|
902
1078
|
denom_units: [{
|
package/mainnet/cosmoshub.js
CHANGED
|
@@ -3340,6 +3340,10 @@ const assets = {
|
|
|
3340
3340
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png'
|
|
3341
3341
|
},
|
|
3342
3342
|
coingecko_id: 'oraichain-token',
|
|
3343
|
+
socials: {
|
|
3344
|
+
website: 'https://orai.io/',
|
|
3345
|
+
twitter: 'https://x.com/oraichain'
|
|
3346
|
+
},
|
|
3343
3347
|
images: [
|
|
3344
3348
|
{
|
|
3345
3349
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png',
|
|
@@ -8776,6 +8780,10 @@ const assets = {
|
|
|
8776
8780
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png'
|
|
8777
8781
|
},
|
|
8778
8782
|
coingecko_id: 'oraichain-token',
|
|
8783
|
+
socials: {
|
|
8784
|
+
website: 'https://orai.io/',
|
|
8785
|
+
twitter: 'https://x.com/oraichain'
|
|
8786
|
+
},
|
|
8779
8787
|
images: [
|
|
8780
8788
|
{
|
|
8781
8789
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png',
|
package/mainnet/injective.js
CHANGED
|
@@ -1709,6 +1709,10 @@ const assets = {
|
|
|
1709
1709
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png'
|
|
1710
1710
|
},
|
|
1711
1711
|
coingecko_id: 'oraichain-token',
|
|
1712
|
+
socials: {
|
|
1713
|
+
website: 'https://orai.io/',
|
|
1714
|
+
twitter: 'https://x.com/oraichain'
|
|
1715
|
+
},
|
|
1712
1716
|
images: [
|
|
1713
1717
|
{
|
|
1714
1718
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png',
|
|
@@ -5344,6 +5348,10 @@ const assets = {
|
|
|
5344
5348
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png'
|
|
5345
5349
|
},
|
|
5346
5350
|
coingecko_id: 'oraichain-token',
|
|
5351
|
+
socials: {
|
|
5352
|
+
website: 'https://orai.io/',
|
|
5353
|
+
twitter: 'https://x.com/oraichain'
|
|
5354
|
+
},
|
|
5347
5355
|
images: [
|
|
5348
5356
|
{
|
|
5349
5357
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png',
|
package/mainnet/migaloo.js
CHANGED
|
@@ -9714,7 +9714,7 @@ const assets = {
|
|
|
9714
9714
|
}]
|
|
9715
9715
|
},
|
|
9716
9716
|
{
|
|
9717
|
-
description: '
|
|
9717
|
+
description: 'Juris Protocol is the Lending Platform for the Terra Ecosystem.',
|
|
9718
9718
|
type_asset: 'cw20',
|
|
9719
9719
|
address: 'terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2',
|
|
9720
9720
|
denom_units: [{
|
|
@@ -9722,21 +9722,18 @@ const assets = {
|
|
|
9722
9722
|
exponent: 0,
|
|
9723
9723
|
aliases: ['cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2']
|
|
9724
9724
|
}, {
|
|
9725
|
-
denom: '
|
|
9725
|
+
denom: 'juris',
|
|
9726
9726
|
exponent: 6
|
|
9727
9727
|
}],
|
|
9728
9728
|
base: 'ibc/44C29C91F202E20C8E28DFB1FA89B725C54171CD77B8948836C72E7A97E4A018',
|
|
9729
|
-
name: '
|
|
9730
|
-
display: '
|
|
9731
|
-
symbol: '
|
|
9729
|
+
name: 'Juris Protocol',
|
|
9730
|
+
display: 'juris',
|
|
9731
|
+
symbol: 'JURIS',
|
|
9732
9732
|
logo_URIs: {
|
|
9733
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/
|
|
9733
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png'
|
|
9734
9734
|
},
|
|
9735
9735
|
images: [{
|
|
9736
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/
|
|
9737
|
-
theme: {
|
|
9738
|
-
primary_color_hex: '#191717'
|
|
9739
|
-
}
|
|
9736
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png'
|
|
9740
9737
|
}],
|
|
9741
9738
|
traces: [{
|
|
9742
9739
|
type: 'ibc-cw20',
|
|
@@ -18449,7 +18446,7 @@ const assets = {
|
|
|
18449
18446
|
}]
|
|
18450
18447
|
},
|
|
18451
18448
|
{
|
|
18452
|
-
description: '
|
|
18449
|
+
description: 'Juris Protocol is the Lending Platform for the Terra Ecosystem.',
|
|
18453
18450
|
type_asset: 'cw20',
|
|
18454
18451
|
address: 'terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2',
|
|
18455
18452
|
denom_units: [{
|
|
@@ -18457,21 +18454,18 @@ const assets = {
|
|
|
18457
18454
|
exponent: 0,
|
|
18458
18455
|
aliases: ['cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2']
|
|
18459
18456
|
}, {
|
|
18460
|
-
denom: '
|
|
18457
|
+
denom: 'juris',
|
|
18461
18458
|
exponent: 6
|
|
18462
18459
|
}],
|
|
18463
18460
|
base: 'ibc/44C29C91F202E20C8E28DFB1FA89B725C54171CD77B8948836C72E7A97E4A018',
|
|
18464
|
-
name: '
|
|
18465
|
-
display: '
|
|
18466
|
-
symbol: '
|
|
18461
|
+
name: 'Juris Protocol',
|
|
18462
|
+
display: 'juris',
|
|
18463
|
+
symbol: 'JURIS',
|
|
18467
18464
|
logo_URIs: {
|
|
18468
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/
|
|
18465
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png'
|
|
18469
18466
|
},
|
|
18470
18467
|
images: [{
|
|
18471
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/
|
|
18472
|
-
theme: {
|
|
18473
|
-
primary_color_hex: '#191717'
|
|
18474
|
-
}
|
|
18468
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png'
|
|
18475
18469
|
}],
|
|
18476
18470
|
traces: [{
|
|
18477
18471
|
type: 'ibc-cw20',
|