@chain-registry/assets 1.70.247 → 1.70.248
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/allora.js +338 -0
- package/esm/mainnet/assets.js +2 -1
- package/esm/mainnet/axelar.js +70 -0
- package/esm/mainnet/cosmoshub.js +72 -2
- package/esm/mainnet/index.js +1 -0
- package/esm/mainnet/sei.js +70 -0
- package/index.d.ts +1 -1
- package/mainnet/allora.d.ts +3 -0
- package/mainnet/allora.js +340 -0
- package/mainnet/assets.js +2 -1
- package/mainnet/axelar.js +70 -0
- package/mainnet/cosmoshub.js +72 -2
- package/mainnet/index.d.ts +1 -0
- package/mainnet/index.js +5 -4
- package/mainnet/sei.js +70 -0
- package/package.json +5 -5
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
const assets = {
|
|
2
|
+
chain_name: 'allora',
|
|
3
|
+
assets: [
|
|
4
|
+
{
|
|
5
|
+
description: 'Axelar is a decentralized interoperability network connecting multiple blockchain ecosystems, enabling seamless cross-chain communication and value transfer.',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ibc/2CC0B1B7A981ACC74854717F221008484603BB8360E81B262411B0D830EDE9B0',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['uaxl']
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'axl',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'ibc/2CC0B1B7A981ACC74854717F221008484603BB8360E81B262411B0D830EDE9B0',
|
|
15
|
+
name: 'Axelar',
|
|
16
|
+
display: 'axl',
|
|
17
|
+
symbol: 'AXL',
|
|
18
|
+
logo_URIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg'
|
|
21
|
+
},
|
|
22
|
+
coingecko_id: 'axelar',
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
|
|
25
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg',
|
|
26
|
+
theme: {
|
|
27
|
+
primary_color_hex: '#040404'
|
|
28
|
+
}
|
|
29
|
+
}],
|
|
30
|
+
socials: {
|
|
31
|
+
website: 'https://axelar.network/',
|
|
32
|
+
twitter: 'https://twitter.com/axelarnetwork'
|
|
33
|
+
},
|
|
34
|
+
type_asset: 'sdk.coin',
|
|
35
|
+
traces: [{
|
|
36
|
+
type: 'ibc',
|
|
37
|
+
counterparty: {
|
|
38
|
+
channel_id: 'channel-164',
|
|
39
|
+
base_denom: 'uaxl',
|
|
40
|
+
chain_name: 'axelar'
|
|
41
|
+
},
|
|
42
|
+
chain: {
|
|
43
|
+
channel_id: 'channel-0'
|
|
44
|
+
}
|
|
45
|
+
}]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
description: 'ATOM is the native cryptocurrency of the Cosmos network, designed to facilitate interoperability between multiple blockchains through its innovative hub-and-spoke model.',
|
|
49
|
+
denom_units: [{
|
|
50
|
+
denom: 'ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E',
|
|
51
|
+
exponent: 0,
|
|
52
|
+
aliases: ['uatom']
|
|
53
|
+
}, {
|
|
54
|
+
denom: 'atom',
|
|
55
|
+
exponent: 6
|
|
56
|
+
}],
|
|
57
|
+
base: 'ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E',
|
|
58
|
+
name: 'Cosmos Hub Atom',
|
|
59
|
+
display: 'atom',
|
|
60
|
+
symbol: 'ATOM',
|
|
61
|
+
logo_URIs: {
|
|
62
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
63
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
64
|
+
},
|
|
65
|
+
coingecko_id: 'cosmos',
|
|
66
|
+
images: [{
|
|
67
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
68
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg',
|
|
69
|
+
theme: {
|
|
70
|
+
primary_color_hex: '#272d45'
|
|
71
|
+
}
|
|
72
|
+
}],
|
|
73
|
+
socials: {
|
|
74
|
+
website: 'https://cosmos.network',
|
|
75
|
+
twitter: 'https://twitter.com/cosmoshub'
|
|
76
|
+
},
|
|
77
|
+
type_asset: 'sdk.coin',
|
|
78
|
+
traces: [{
|
|
79
|
+
type: 'ibc',
|
|
80
|
+
counterparty: {
|
|
81
|
+
channel_id: 'channel-1353',
|
|
82
|
+
base_denom: 'uatom',
|
|
83
|
+
chain_name: 'cosmoshub'
|
|
84
|
+
},
|
|
85
|
+
chain: {
|
|
86
|
+
channel_id: 'channel-2'
|
|
87
|
+
}
|
|
88
|
+
}]
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
description: 'Sei is a layer-1 blockchain optimized for trading, focusing on providing high throughput, low latency, and efficient execution for decentralized exchanges.',
|
|
92
|
+
denom_units: [{
|
|
93
|
+
denom: 'ibc/348C1956DCD7FDABB3DABC93E30F398190FFC9EFE9C4004E955C9ACBEC6B8C5E',
|
|
94
|
+
exponent: 0,
|
|
95
|
+
aliases: ['usei']
|
|
96
|
+
}, {
|
|
97
|
+
denom: 'sei',
|
|
98
|
+
exponent: 6
|
|
99
|
+
}],
|
|
100
|
+
base: 'ibc/348C1956DCD7FDABB3DABC93E30F398190FFC9EFE9C4004E955C9ACBEC6B8C5E',
|
|
101
|
+
name: 'Sei',
|
|
102
|
+
display: 'sei',
|
|
103
|
+
symbol: 'SEI',
|
|
104
|
+
logo_URIs: {
|
|
105
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png',
|
|
106
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg'
|
|
107
|
+
},
|
|
108
|
+
coingecko_id: 'sei-network',
|
|
109
|
+
images: [{
|
|
110
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png',
|
|
111
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg',
|
|
112
|
+
theme: {
|
|
113
|
+
primary_color_hex: '#9c1c1c'
|
|
114
|
+
}
|
|
115
|
+
}],
|
|
116
|
+
socials: {
|
|
117
|
+
website: 'https://www.sei.io/',
|
|
118
|
+
twitter: 'https://twitter.com/SeiNetwork'
|
|
119
|
+
},
|
|
120
|
+
type_asset: 'sdk.coin',
|
|
121
|
+
traces: [{
|
|
122
|
+
type: 'ibc',
|
|
123
|
+
counterparty: {
|
|
124
|
+
channel_id: 'channel-79',
|
|
125
|
+
base_denom: 'usei',
|
|
126
|
+
chain_name: 'sei'
|
|
127
|
+
},
|
|
128
|
+
chain: {
|
|
129
|
+
channel_id: 'channel-1'
|
|
130
|
+
}
|
|
131
|
+
}]
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
description: 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series',
|
|
135
|
+
denom_units: [{
|
|
136
|
+
denom: 'ibc/C9BFEB539A0E082C7E06D03B6CC826FF31B8A010A6413C2D74F3C81F13438E73',
|
|
137
|
+
exponent: 0,
|
|
138
|
+
aliases: ['sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda']
|
|
139
|
+
}, {
|
|
140
|
+
denom: 'oozaru',
|
|
141
|
+
exponent: 6
|
|
142
|
+
}],
|
|
143
|
+
type_asset: 'cw20',
|
|
144
|
+
address: 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda',
|
|
145
|
+
base: 'ibc/C9BFEB539A0E082C7E06D03B6CC826FF31B8A010A6413C2D74F3C81F13438E73',
|
|
146
|
+
name: 'Oozaru',
|
|
147
|
+
display: 'oozaru',
|
|
148
|
+
symbol: 'OOZARU',
|
|
149
|
+
logo_URIs: {
|
|
150
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png'
|
|
151
|
+
},
|
|
152
|
+
images: [{
|
|
153
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png',
|
|
154
|
+
theme: {
|
|
155
|
+
primary_color_hex: '#2b1619'
|
|
156
|
+
}
|
|
157
|
+
}],
|
|
158
|
+
traces: [{
|
|
159
|
+
type: 'ibc',
|
|
160
|
+
counterparty: {
|
|
161
|
+
channel_id: 'channel-79',
|
|
162
|
+
base_denom: 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda',
|
|
163
|
+
chain_name: 'sei'
|
|
164
|
+
},
|
|
165
|
+
chain: {
|
|
166
|
+
channel_id: 'channel-1'
|
|
167
|
+
}
|
|
168
|
+
}]
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
description: 'Axelar is a decentralized interoperability network connecting multiple blockchain ecosystems, enabling seamless cross-chain communication and value transfer.',
|
|
172
|
+
denom_units: [{
|
|
173
|
+
denom: 'ibc/2CC0B1B7A981ACC74854717F221008484603BB8360E81B262411B0D830EDE9B0',
|
|
174
|
+
exponent: 0,
|
|
175
|
+
aliases: ['uaxl']
|
|
176
|
+
}, {
|
|
177
|
+
denom: 'axl',
|
|
178
|
+
exponent: 6
|
|
179
|
+
}],
|
|
180
|
+
base: 'ibc/2CC0B1B7A981ACC74854717F221008484603BB8360E81B262411B0D830EDE9B0',
|
|
181
|
+
name: 'Axelar',
|
|
182
|
+
display: 'axl',
|
|
183
|
+
symbol: 'AXL',
|
|
184
|
+
logo_URIs: {
|
|
185
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
|
|
186
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg'
|
|
187
|
+
},
|
|
188
|
+
coingecko_id: 'axelar',
|
|
189
|
+
images: [{
|
|
190
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
|
|
191
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg',
|
|
192
|
+
theme: {
|
|
193
|
+
primary_color_hex: '#040404'
|
|
194
|
+
}
|
|
195
|
+
}],
|
|
196
|
+
socials: {
|
|
197
|
+
website: 'https://axelar.network/',
|
|
198
|
+
twitter: 'https://twitter.com/axelarnetwork'
|
|
199
|
+
},
|
|
200
|
+
type_asset: 'sdk.coin',
|
|
201
|
+
traces: [{
|
|
202
|
+
type: 'ibc',
|
|
203
|
+
counterparty: {
|
|
204
|
+
channel_id: 'channel-164',
|
|
205
|
+
base_denom: 'uaxl',
|
|
206
|
+
chain_name: 'axelar'
|
|
207
|
+
},
|
|
208
|
+
chain: {
|
|
209
|
+
channel_id: 'channel-0'
|
|
210
|
+
}
|
|
211
|
+
}]
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
description: 'ATOM is the native cryptocurrency of the Cosmos network, designed to facilitate interoperability between multiple blockchains through its innovative hub-and-spoke model.',
|
|
215
|
+
denom_units: [{
|
|
216
|
+
denom: 'ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E',
|
|
217
|
+
exponent: 0,
|
|
218
|
+
aliases: ['uatom']
|
|
219
|
+
}, {
|
|
220
|
+
denom: 'atom',
|
|
221
|
+
exponent: 6
|
|
222
|
+
}],
|
|
223
|
+
base: 'ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E',
|
|
224
|
+
name: 'Cosmos Hub Atom',
|
|
225
|
+
display: 'atom',
|
|
226
|
+
symbol: 'ATOM',
|
|
227
|
+
logo_URIs: {
|
|
228
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
229
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
230
|
+
},
|
|
231
|
+
coingecko_id: 'cosmos',
|
|
232
|
+
images: [{
|
|
233
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
234
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg',
|
|
235
|
+
theme: {
|
|
236
|
+
primary_color_hex: '#272d45'
|
|
237
|
+
}
|
|
238
|
+
}],
|
|
239
|
+
socials: {
|
|
240
|
+
website: 'https://cosmos.network',
|
|
241
|
+
twitter: 'https://twitter.com/cosmoshub'
|
|
242
|
+
},
|
|
243
|
+
type_asset: 'sdk.coin',
|
|
244
|
+
traces: [{
|
|
245
|
+
type: 'ibc',
|
|
246
|
+
counterparty: {
|
|
247
|
+
channel_id: 'channel-1353',
|
|
248
|
+
base_denom: 'uatom',
|
|
249
|
+
chain_name: 'cosmoshub'
|
|
250
|
+
},
|
|
251
|
+
chain: {
|
|
252
|
+
channel_id: 'channel-2'
|
|
253
|
+
}
|
|
254
|
+
}]
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
description: 'Sei is a layer-1 blockchain optimized for trading, focusing on providing high throughput, low latency, and efficient execution for decentralized exchanges.',
|
|
258
|
+
denom_units: [{
|
|
259
|
+
denom: 'ibc/348C1956DCD7FDABB3DABC93E30F398190FFC9EFE9C4004E955C9ACBEC6B8C5E',
|
|
260
|
+
exponent: 0,
|
|
261
|
+
aliases: ['usei']
|
|
262
|
+
}, {
|
|
263
|
+
denom: 'sei',
|
|
264
|
+
exponent: 6
|
|
265
|
+
}],
|
|
266
|
+
base: 'ibc/348C1956DCD7FDABB3DABC93E30F398190FFC9EFE9C4004E955C9ACBEC6B8C5E',
|
|
267
|
+
name: 'Sei',
|
|
268
|
+
display: 'sei',
|
|
269
|
+
symbol: 'SEI',
|
|
270
|
+
logo_URIs: {
|
|
271
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png',
|
|
272
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg'
|
|
273
|
+
},
|
|
274
|
+
coingecko_id: 'sei-network',
|
|
275
|
+
images: [{
|
|
276
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png',
|
|
277
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg',
|
|
278
|
+
theme: {
|
|
279
|
+
primary_color_hex: '#9c1c1c'
|
|
280
|
+
}
|
|
281
|
+
}],
|
|
282
|
+
socials: {
|
|
283
|
+
website: 'https://www.sei.io/',
|
|
284
|
+
twitter: 'https://twitter.com/SeiNetwork'
|
|
285
|
+
},
|
|
286
|
+
type_asset: 'sdk.coin',
|
|
287
|
+
traces: [{
|
|
288
|
+
type: 'ibc',
|
|
289
|
+
counterparty: {
|
|
290
|
+
channel_id: 'channel-79',
|
|
291
|
+
base_denom: 'usei',
|
|
292
|
+
chain_name: 'sei'
|
|
293
|
+
},
|
|
294
|
+
chain: {
|
|
295
|
+
channel_id: 'channel-1'
|
|
296
|
+
}
|
|
297
|
+
}]
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
description: 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series',
|
|
301
|
+
denom_units: [{
|
|
302
|
+
denom: 'ibc/C9BFEB539A0E082C7E06D03B6CC826FF31B8A010A6413C2D74F3C81F13438E73',
|
|
303
|
+
exponent: 0,
|
|
304
|
+
aliases: ['sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda']
|
|
305
|
+
}, {
|
|
306
|
+
denom: 'oozaru',
|
|
307
|
+
exponent: 6
|
|
308
|
+
}],
|
|
309
|
+
type_asset: 'cw20',
|
|
310
|
+
address: 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda',
|
|
311
|
+
base: 'ibc/C9BFEB539A0E082C7E06D03B6CC826FF31B8A010A6413C2D74F3C81F13438E73',
|
|
312
|
+
name: 'Oozaru',
|
|
313
|
+
display: 'oozaru',
|
|
314
|
+
symbol: 'OOZARU',
|
|
315
|
+
logo_URIs: {
|
|
316
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png'
|
|
317
|
+
},
|
|
318
|
+
images: [{
|
|
319
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png',
|
|
320
|
+
theme: {
|
|
321
|
+
primary_color_hex: '#2b1619'
|
|
322
|
+
}
|
|
323
|
+
}],
|
|
324
|
+
traces: [{
|
|
325
|
+
type: 'ibc',
|
|
326
|
+
counterparty: {
|
|
327
|
+
channel_id: 'channel-79',
|
|
328
|
+
base_denom: 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda',
|
|
329
|
+
chain_name: 'sei'
|
|
330
|
+
},
|
|
331
|
+
chain: {
|
|
332
|
+
channel_id: 'channel-1'
|
|
333
|
+
}
|
|
334
|
+
}]
|
|
335
|
+
}
|
|
336
|
+
]
|
|
337
|
+
};
|
|
338
|
+
export default assets;
|
package/esm/mainnet/assets.js
CHANGED
|
@@ -5,6 +5,7 @@ import _acrechain from './acrechain';
|
|
|
5
5
|
import _agoric from './agoric';
|
|
6
6
|
import _aioz from './aioz';
|
|
7
7
|
import _akash from './akash';
|
|
8
|
+
import _allora from './allora';
|
|
8
9
|
import _andromeda from './andromeda';
|
|
9
10
|
import _archway from './archway';
|
|
10
11
|
import _arkeo from './arkeo';
|
|
@@ -153,5 +154,5 @@ import _uptick from './uptick';
|
|
|
153
154
|
import _xion from './xion';
|
|
154
155
|
import _xpla from './xpla';
|
|
155
156
|
import _zenrock from './zenrock';
|
|
156
|
-
const assets = [_ethereum, _solana, _aaronetwork, _acrechain, _agoric, _aioz, _akash, _andromeda, _archway, _arkeo, _arkh, _assetmantle, _atomone, _aura, _axelar, _babylon, _bandchain, _beezee, _bitcanna, _bitsong, _bluzelle, _bostrom, _canto, _carbon, _celestia, _chain4energy, _cheqd, _chihuahua, _cifer, _comdex, _composable, _conscious, _coreum, _cosmoshub, _crescent, _cronos, _cryptoorgchain, _decentr, _desmos, _dhealth, _doravota, _dungeon, _dydx, _dymension, _dyson, _echelon, _elys, _emoney, _empowerchain, _evmos, _fetchhub, _firmachain, _furya, _fxcore, _galaxy, _gateway, _genesisl1, _gitopia, _gravitybridge, _haqq, _humans, _impacthub, _imversed, _initia, _injective, _int3face, _irisnet, _jackal, _joltify, _juno, _kava, _kichain, _kimanetwork, _konstellation, _kopi, _kujira, _kyve, _lambda, _lava, _likecoin, _lombardledger, _lorenzo, _lumnetwork, _mande, _manifest, _mantrachain, _medasdigital, _meme, _migaloo, _milkyway, _neutaro, _neutron, _nibiru, _nillion, _nim, _noble, _nolus, _nomic, _nyx, _odin, _okexchain, _omniflixhub, _onex, _onomy, _oraichain, _osmosis, _panacea, _passage, _persistence, _planq, _point, _provenance, _pryzm, _pundix, _pylons, _quasar, _quicksilver, _qwoyn, _realio, _rebus, _regen, _rizon, _routerchain, _saga, _scorum, _secretnetwork, _seda, _sei, _self, _sentinel, _sge, _shareledger, _shentu, _shido, _sidechain, _sifchain, _sommelier, _source, _stafihub, _stargaze, _starname, _stratos, _stride, _synternet, _teritori, _terra, _terra2, _tgrade, _titan, _umee, _unification, _uptick, _xion, _xpla, _zenrock];
|
|
157
|
+
const assets = [_ethereum, _solana, _aaronetwork, _acrechain, _agoric, _aioz, _akash, _allora, _andromeda, _archway, _arkeo, _arkh, _assetmantle, _atomone, _aura, _axelar, _babylon, _bandchain, _beezee, _bitcanna, _bitsong, _bluzelle, _bostrom, _canto, _carbon, _celestia, _chain4energy, _cheqd, _chihuahua, _cifer, _comdex, _composable, _conscious, _coreum, _cosmoshub, _crescent, _cronos, _cryptoorgchain, _decentr, _desmos, _dhealth, _doravota, _dungeon, _dydx, _dymension, _dyson, _echelon, _elys, _emoney, _empowerchain, _evmos, _fetchhub, _firmachain, _furya, _fxcore, _galaxy, _gateway, _genesisl1, _gitopia, _gravitybridge, _haqq, _humans, _impacthub, _imversed, _initia, _injective, _int3face, _irisnet, _jackal, _joltify, _juno, _kava, _kichain, _kimanetwork, _konstellation, _kopi, _kujira, _kyve, _lambda, _lava, _likecoin, _lombardledger, _lorenzo, _lumnetwork, _mande, _manifest, _mantrachain, _medasdigital, _meme, _migaloo, _milkyway, _neutaro, _neutron, _nibiru, _nillion, _nim, _noble, _nolus, _nomic, _nyx, _odin, _okexchain, _omniflixhub, _onex, _onomy, _oraichain, _osmosis, _panacea, _passage, _persistence, _planq, _point, _provenance, _pryzm, _pundix, _pylons, _quasar, _quicksilver, _qwoyn, _realio, _rebus, _regen, _rizon, _routerchain, _saga, _scorum, _secretnetwork, _seda, _sei, _self, _sentinel, _sge, _shareledger, _shentu, _shido, _sidechain, _sifchain, _sommelier, _source, _stafihub, _stargaze, _starname, _stratos, _stride, _synternet, _teritori, _terra, _terra2, _tgrade, _titan, _umee, _unification, _uptick, _xion, _xpla, _zenrock];
|
|
157
158
|
export default assets;
|
package/esm/mainnet/axelar.js
CHANGED
|
@@ -205,6 +205,41 @@ const assets = {
|
|
|
205
205
|
}
|
|
206
206
|
}]
|
|
207
207
|
},
|
|
208
|
+
{
|
|
209
|
+
description: 'Allora Token (ALLO) is the Allora Network\'s native utility token, used as the primary means to govern, secure the blockchain, and incentivize network participants.',
|
|
210
|
+
denom_units: [{
|
|
211
|
+
denom: 'ibc/E1E6EFCB71F9958FA4C63DFAD1DE977E6A29C2E8FE9E62BAB48D568C2CEA09DA',
|
|
212
|
+
exponent: 0,
|
|
213
|
+
aliases: ['uallo']
|
|
214
|
+
}, {
|
|
215
|
+
denom: 'allo',
|
|
216
|
+
exponent: 18
|
|
217
|
+
}],
|
|
218
|
+
base: 'ibc/E1E6EFCB71F9958FA4C63DFAD1DE977E6A29C2E8FE9E62BAB48D568C2CEA09DA',
|
|
219
|
+
name: 'Allora Network',
|
|
220
|
+
display: 'allo',
|
|
221
|
+
symbol: 'ALLO',
|
|
222
|
+
logo_URIs: {
|
|
223
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
224
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
225
|
+
},
|
|
226
|
+
images: [{
|
|
227
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
228
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
229
|
+
}],
|
|
230
|
+
type_asset: 'sdk.coin',
|
|
231
|
+
traces: [{
|
|
232
|
+
type: 'ibc',
|
|
233
|
+
counterparty: {
|
|
234
|
+
channel_id: 'channel-0',
|
|
235
|
+
base_denom: 'uallo',
|
|
236
|
+
chain_name: 'allora'
|
|
237
|
+
},
|
|
238
|
+
chain: {
|
|
239
|
+
channel_id: 'channel-164'
|
|
240
|
+
}
|
|
241
|
+
}]
|
|
242
|
+
},
|
|
208
243
|
{
|
|
209
244
|
description: 'Archway is a smart contract platform in the Cosmos ecosystem designed to reward developers by providing them with a share of transaction fees generated by their applications.',
|
|
210
245
|
denom_units: [
|
|
@@ -532,6 +567,41 @@ const assets = {
|
|
|
532
567
|
}
|
|
533
568
|
}]
|
|
534
569
|
},
|
|
570
|
+
{
|
|
571
|
+
description: 'Allora Token (ALLO) is the Allora Network\'s native utility token, used as the primary means to govern, secure the blockchain, and incentivize network participants.',
|
|
572
|
+
denom_units: [{
|
|
573
|
+
denom: 'ibc/E1E6EFCB71F9958FA4C63DFAD1DE977E6A29C2E8FE9E62BAB48D568C2CEA09DA',
|
|
574
|
+
exponent: 0,
|
|
575
|
+
aliases: ['uallo']
|
|
576
|
+
}, {
|
|
577
|
+
denom: 'allo',
|
|
578
|
+
exponent: 18
|
|
579
|
+
}],
|
|
580
|
+
base: 'ibc/E1E6EFCB71F9958FA4C63DFAD1DE977E6A29C2E8FE9E62BAB48D568C2CEA09DA',
|
|
581
|
+
name: 'Allora Network',
|
|
582
|
+
display: 'allo',
|
|
583
|
+
symbol: 'ALLO',
|
|
584
|
+
logo_URIs: {
|
|
585
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
586
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
587
|
+
},
|
|
588
|
+
images: [{
|
|
589
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
590
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
591
|
+
}],
|
|
592
|
+
type_asset: 'sdk.coin',
|
|
593
|
+
traces: [{
|
|
594
|
+
type: 'ibc',
|
|
595
|
+
counterparty: {
|
|
596
|
+
channel_id: 'channel-0',
|
|
597
|
+
base_denom: 'uallo',
|
|
598
|
+
chain_name: 'allora'
|
|
599
|
+
},
|
|
600
|
+
chain: {
|
|
601
|
+
channel_id: 'channel-164'
|
|
602
|
+
}
|
|
603
|
+
}]
|
|
604
|
+
},
|
|
535
605
|
{
|
|
536
606
|
description: 'Archway is a smart contract platform in the Cosmos ecosystem designed to reward developers by providing them with a share of transaction fees generated by their applications.',
|
|
537
607
|
denom_units: [
|
package/esm/mainnet/cosmoshub.js
CHANGED
|
@@ -298,6 +298,41 @@ const assets = {
|
|
|
298
298
|
}
|
|
299
299
|
}]
|
|
300
300
|
},
|
|
301
|
+
{
|
|
302
|
+
description: 'Allora Token (ALLO) is the Allora Network\'s native utility token, used as the primary means to govern, secure the blockchain, and incentivize network participants.',
|
|
303
|
+
denom_units: [{
|
|
304
|
+
denom: 'ibc/D9E40E9047E09AAC6CDF9D133AC54C778B44A03690A91B9F5EDFF9F53C2A0977',
|
|
305
|
+
exponent: 0,
|
|
306
|
+
aliases: ['uallo']
|
|
307
|
+
}, {
|
|
308
|
+
denom: 'allo',
|
|
309
|
+
exponent: 18
|
|
310
|
+
}],
|
|
311
|
+
base: 'ibc/D9E40E9047E09AAC6CDF9D133AC54C778B44A03690A91B9F5EDFF9F53C2A0977',
|
|
312
|
+
name: 'Allora Network',
|
|
313
|
+
display: 'allo',
|
|
314
|
+
symbol: 'ALLO',
|
|
315
|
+
logo_URIs: {
|
|
316
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
317
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
318
|
+
},
|
|
319
|
+
images: [{
|
|
320
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
321
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
322
|
+
}],
|
|
323
|
+
type_asset: 'sdk.coin',
|
|
324
|
+
traces: [{
|
|
325
|
+
type: 'ibc',
|
|
326
|
+
counterparty: {
|
|
327
|
+
channel_id: 'channel-2',
|
|
328
|
+
base_denom: 'uallo',
|
|
329
|
+
chain_name: 'allora'
|
|
330
|
+
},
|
|
331
|
+
chain: {
|
|
332
|
+
channel_id: 'channel-1353'
|
|
333
|
+
}
|
|
334
|
+
}]
|
|
335
|
+
},
|
|
301
336
|
{
|
|
302
337
|
description: 'Archway is a smart contract platform in the Cosmos ecosystem designed to reward developers by providing them with a share of transaction fees generated by their applications.',
|
|
303
338
|
denom_units: [
|
|
@@ -1461,6 +1496,41 @@ const assets = {
|
|
|
1461
1496
|
}
|
|
1462
1497
|
}]
|
|
1463
1498
|
},
|
|
1499
|
+
{
|
|
1500
|
+
description: 'Allora Token (ALLO) is the Allora Network\'s native utility token, used as the primary means to govern, secure the blockchain, and incentivize network participants.',
|
|
1501
|
+
denom_units: [{
|
|
1502
|
+
denom: 'ibc/D9E40E9047E09AAC6CDF9D133AC54C778B44A03690A91B9F5EDFF9F53C2A0977',
|
|
1503
|
+
exponent: 0,
|
|
1504
|
+
aliases: ['uallo']
|
|
1505
|
+
}, {
|
|
1506
|
+
denom: 'allo',
|
|
1507
|
+
exponent: 18
|
|
1508
|
+
}],
|
|
1509
|
+
base: 'ibc/D9E40E9047E09AAC6CDF9D133AC54C778B44A03690A91B9F5EDFF9F53C2A0977',
|
|
1510
|
+
name: 'Allora Network',
|
|
1511
|
+
display: 'allo',
|
|
1512
|
+
symbol: 'ALLO',
|
|
1513
|
+
logo_URIs: {
|
|
1514
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
1515
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
1516
|
+
},
|
|
1517
|
+
images: [{
|
|
1518
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
1519
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
1520
|
+
}],
|
|
1521
|
+
type_asset: 'sdk.coin',
|
|
1522
|
+
traces: [{
|
|
1523
|
+
type: 'ibc',
|
|
1524
|
+
counterparty: {
|
|
1525
|
+
channel_id: 'channel-2',
|
|
1526
|
+
base_denom: 'uallo',
|
|
1527
|
+
chain_name: 'allora'
|
|
1528
|
+
},
|
|
1529
|
+
chain: {
|
|
1530
|
+
channel_id: 'channel-1353'
|
|
1531
|
+
}
|
|
1532
|
+
}]
|
|
1533
|
+
},
|
|
1464
1534
|
{
|
|
1465
1535
|
description: 'Archway is a smart contract platform in the Cosmos ecosystem designed to reward developers by providing them with a share of transaction fees generated by their applications.',
|
|
1466
1536
|
denom_units: [
|
|
@@ -4328,7 +4398,7 @@ const assets = {
|
|
|
4328
4398
|
}]
|
|
4329
4399
|
},
|
|
4330
4400
|
{
|
|
4331
|
-
description: 'ustake is a
|
|
4401
|
+
description: 'ustake is a synthetic token to implement a PoA with BFT features over CometBFT',
|
|
4332
4402
|
denom_units: [{
|
|
4333
4403
|
denom: 'ibc/5DB06CF0697F085EA4A630A9635819C5036299E9EFEFAE8402CF36D6014C04E7',
|
|
4334
4404
|
exponent: 0,
|
|
@@ -14785,7 +14855,7 @@ const assets = {
|
|
|
14785
14855
|
}]
|
|
14786
14856
|
},
|
|
14787
14857
|
{
|
|
14788
|
-
description: 'ustake is a
|
|
14858
|
+
description: 'ustake is a synthetic token to implement a PoA with BFT features over CometBFT',
|
|
14789
14859
|
denom_units: [{
|
|
14790
14860
|
denom: 'ibc/5DB06CF0697F085EA4A630A9635819C5036299E9EFEFAE8402CF36D6014C04E7',
|
|
14791
14861
|
exponent: 0,
|
package/esm/mainnet/index.js
CHANGED
|
@@ -5,6 +5,7 @@ export * as acrechain from './acrechain';
|
|
|
5
5
|
export * as agoric from './agoric';
|
|
6
6
|
export * as aioz from './aioz';
|
|
7
7
|
export * as akash from './akash';
|
|
8
|
+
export * as allora from './allora';
|
|
8
9
|
export * as andromeda from './andromeda';
|
|
9
10
|
export * as archway from './archway';
|
|
10
11
|
export * as arkeo from './arkeo';
|
package/esm/mainnet/sei.js
CHANGED
|
@@ -1,6 +1,41 @@
|
|
|
1
1
|
const assets = {
|
|
2
2
|
chain_name: 'sei',
|
|
3
3
|
assets: [
|
|
4
|
+
{
|
|
5
|
+
description: 'Allora Token (ALLO) is the Allora Network\'s native utility token, used as the primary means to govern, secure the blockchain, and incentivize network participants.',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ibc/710F080B35CF9D6EA982FFDFED2EC54FBAE8AA10C3889237BB3AF03DDD4682F9',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['uallo']
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'allo',
|
|
12
|
+
exponent: 18
|
|
13
|
+
}],
|
|
14
|
+
base: 'ibc/710F080B35CF9D6EA982FFDFED2EC54FBAE8AA10C3889237BB3AF03DDD4682F9',
|
|
15
|
+
name: 'Allora Network',
|
|
16
|
+
display: 'allo',
|
|
17
|
+
symbol: 'ALLO',
|
|
18
|
+
logo_URIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
25
|
+
}],
|
|
26
|
+
type_asset: 'sdk.coin',
|
|
27
|
+
traces: [{
|
|
28
|
+
type: 'ibc',
|
|
29
|
+
counterparty: {
|
|
30
|
+
channel_id: 'channel-1',
|
|
31
|
+
base_denom: 'uallo',
|
|
32
|
+
chain_name: 'allora'
|
|
33
|
+
},
|
|
34
|
+
chain: {
|
|
35
|
+
channel_id: 'channel-79'
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
},
|
|
4
39
|
{
|
|
5
40
|
description: 'Axelar is a decentralized interoperability network connecting multiple blockchain ecosystems, enabling seamless cross-chain communication and value transfer.',
|
|
6
41
|
denom_units: [{
|
|
@@ -1033,6 +1068,41 @@ const assets = {
|
|
|
1033
1068
|
},
|
|
1034
1069
|
type_asset: 'sdk.coin'
|
|
1035
1070
|
},
|
|
1071
|
+
{
|
|
1072
|
+
description: 'Allora Token (ALLO) is the Allora Network\'s native utility token, used as the primary means to govern, secure the blockchain, and incentivize network participants.',
|
|
1073
|
+
denom_units: [{
|
|
1074
|
+
denom: 'ibc/710F080B35CF9D6EA982FFDFED2EC54FBAE8AA10C3889237BB3AF03DDD4682F9',
|
|
1075
|
+
exponent: 0,
|
|
1076
|
+
aliases: ['uallo']
|
|
1077
|
+
}, {
|
|
1078
|
+
denom: 'allo',
|
|
1079
|
+
exponent: 18
|
|
1080
|
+
}],
|
|
1081
|
+
base: 'ibc/710F080B35CF9D6EA982FFDFED2EC54FBAE8AA10C3889237BB3AF03DDD4682F9',
|
|
1082
|
+
name: 'Allora Network',
|
|
1083
|
+
display: 'allo',
|
|
1084
|
+
symbol: 'ALLO',
|
|
1085
|
+
logo_URIs: {
|
|
1086
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
1087
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
1088
|
+
},
|
|
1089
|
+
images: [{
|
|
1090
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png',
|
|
1091
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg'
|
|
1092
|
+
}],
|
|
1093
|
+
type_asset: 'sdk.coin',
|
|
1094
|
+
traces: [{
|
|
1095
|
+
type: 'ibc',
|
|
1096
|
+
counterparty: {
|
|
1097
|
+
channel_id: 'channel-1',
|
|
1098
|
+
base_denom: 'uallo',
|
|
1099
|
+
chain_name: 'allora'
|
|
1100
|
+
},
|
|
1101
|
+
chain: {
|
|
1102
|
+
channel_id: 'channel-79'
|
|
1103
|
+
}
|
|
1104
|
+
}]
|
|
1105
|
+
},
|
|
1036
1106
|
{
|
|
1037
1107
|
description: 'Axelar is a decentralized interoperability network connecting multiple blockchain ecosystems, enabling seamless cross-chain communication and value transfer.',
|
|
1038
1108
|
denom_units: [{
|
package/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export * from './devnet';
|
|
|
4
4
|
export * from './noncosmos';
|
|
5
5
|
import asset_lists from './asset_lists';
|
|
6
6
|
declare const _default: {
|
|
7
|
-
asset_lists: AssetList[];
|
|
7
|
+
asset_lists: import("@chain-registry/types").AssetList[];
|
|
8
8
|
};
|
|
9
9
|
export default _default;
|
|
10
10
|
export { asset_lists };
|