@chain-registry/assets 1.70.107 → 1.70.109

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.
Files changed (43) hide show
  1. package/README.md +15 -12
  2. package/esm/mainnet/agoric.js +84 -0
  3. package/esm/mainnet/axelar.js +8 -8
  4. package/esm/mainnet/celestia.js +84 -0
  5. package/esm/mainnet/cosmoshub.js +24 -24
  6. package/esm/mainnet/dydx.js +84 -0
  7. package/esm/mainnet/injective.js +108 -24
  8. package/esm/mainnet/int3face.js +306 -0
  9. package/esm/mainnet/jackal.js +8 -8
  10. package/esm/mainnet/migaloo.js +216 -0
  11. package/esm/mainnet/neutron.js +80 -0
  12. package/esm/mainnet/noble.js +24 -24
  13. package/esm/mainnet/omniflixhub.js +84 -0
  14. package/esm/mainnet/osmosis.js +240 -24
  15. package/esm/mainnet/quicksilver.js +1528 -168
  16. package/esm/mainnet/saga.js +84 -0
  17. package/esm/mainnet/sommelier.js +84 -0
  18. package/esm/mainnet/terra2.js +108 -24
  19. package/esm/mainnet/xion.js +84 -0
  20. package/esm/testnet/axelartestnet.js +140 -0
  21. package/esm/testnet/manifesttestnet.js +72 -0
  22. package/index.d.ts +1 -1
  23. package/mainnet/agoric.js +84 -0
  24. package/mainnet/axelar.js +8 -8
  25. package/mainnet/celestia.js +84 -0
  26. package/mainnet/cosmoshub.js +24 -24
  27. package/mainnet/dydx.js +84 -0
  28. package/mainnet/injective.js +108 -24
  29. package/mainnet/int3face.js +306 -0
  30. package/mainnet/jackal.js +8 -8
  31. package/mainnet/migaloo.js +216 -0
  32. package/mainnet/neutron.js +80 -0
  33. package/mainnet/noble.js +24 -24
  34. package/mainnet/omniflixhub.js +84 -0
  35. package/mainnet/osmosis.js +240 -24
  36. package/mainnet/quicksilver.js +1528 -168
  37. package/mainnet/saga.js +84 -0
  38. package/mainnet/sommelier.js +84 -0
  39. package/mainnet/terra2.js +108 -24
  40. package/mainnet/xion.js +84 -0
  41. package/package.json +5 -5
  42. package/testnet/axelartestnet.js +140 -0
  43. package/testnet/manifesttestnet.js +72 -0
@@ -1,6 +1,887 @@
1
1
  const assets = {
2
2
  chain_name: 'quicksilver',
3
3
  assets: [
4
+ {
5
+ description: 'Agoric is a smart contract platform that uses JavaScript to enable developers to build secure and scalable decentralized applications (dApps) easily.',
6
+ denom_units: [{
7
+ denom: 'ibc/4B3F2630F1EC02190C3A765114709934F8CCE8F577129DC898CF1627D02CE0D1',
8
+ exponent: 0,
9
+ aliases: ['ubld']
10
+ }, {
11
+ denom: 'bld',
12
+ exponent: 6
13
+ }],
14
+ base: 'ibc/4B3F2630F1EC02190C3A765114709934F8CCE8F577129DC898CF1627D02CE0D1',
15
+ name: 'Agoric',
16
+ display: 'bld',
17
+ symbol: 'BLD',
18
+ logo_URIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
20
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg'
21
+ },
22
+ coingecko_id: 'agoric',
23
+ images: [{
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
25
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg',
26
+ theme: {
27
+ primary_color_hex: '#c42b44'
28
+ }
29
+ }],
30
+ socials: {
31
+ website: 'https://agoric.com/',
32
+ twitter: 'https://twitter.com/agoric'
33
+ },
34
+ type_asset: 'sdk.coin',
35
+ traces: [{
36
+ type: 'ibc',
37
+ counterparty: {
38
+ channel_id: 'channel-68',
39
+ base_denom: 'ubld',
40
+ chain_name: 'agoric'
41
+ },
42
+ chain: {
43
+ channel_id: 'channel-125'
44
+ }
45
+ }]
46
+ },
47
+ {
48
+ description: 'IST is the stable token used by the Agoric chain for execution fees and commerce.',
49
+ denom_units: [{
50
+ denom: 'ibc/56D57854F1EA07196B9740B0FFFB99C8F2927D17A33415C2F59D71129E52F561',
51
+ exponent: 0,
52
+ aliases: ['uist']
53
+ }, {
54
+ denom: 'ist',
55
+ exponent: 6
56
+ }],
57
+ base: 'ibc/56D57854F1EA07196B9740B0FFFB99C8F2927D17A33415C2F59D71129E52F561',
58
+ name: 'Inter Stable Token',
59
+ display: 'ist',
60
+ symbol: 'IST',
61
+ logo_URIs: {
62
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
63
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg'
64
+ },
65
+ coingecko_id: 'inter-stable-token',
66
+ images: [{
67
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
68
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg',
69
+ theme: {
70
+ primary_color_hex: '#d485e2'
71
+ }
72
+ }],
73
+ type_asset: 'sdk.coin',
74
+ traces: [{
75
+ type: 'ibc',
76
+ counterparty: {
77
+ channel_id: 'channel-68',
78
+ base_denom: 'uist',
79
+ chain_name: 'agoric'
80
+ },
81
+ chain: {
82
+ channel_id: 'channel-125'
83
+ }
84
+ }]
85
+ },
86
+ {
87
+ 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.',
88
+ denom_units: [
89
+ {
90
+ denom: 'ibc/56446D416C5998249DD4F0E52C9C973AD9F4D5D9D25FF99C6D37240712C7A1ED',
91
+ exponent: 0,
92
+ aliases: ['aarch']
93
+ },
94
+ {
95
+ denom: 'uarch',
96
+ exponent: 12
97
+ },
98
+ {
99
+ denom: 'arch',
100
+ exponent: 18
101
+ }
102
+ ],
103
+ base: 'ibc/56446D416C5998249DD4F0E52C9C973AD9F4D5D9D25FF99C6D37240712C7A1ED',
104
+ name: 'Archway',
105
+ display: 'arch',
106
+ symbol: 'ARCH',
107
+ logo_URIs: {
108
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png',
109
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg'
110
+ },
111
+ coingecko_id: 'archway',
112
+ images: [{
113
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png',
114
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg',
115
+ theme: {
116
+ primary_color_hex: '#fc4c04'
117
+ }
118
+ }],
119
+ socials: {
120
+ website: 'https://archway.io/',
121
+ twitter: 'https://twitter.com/archwayHQ'
122
+ },
123
+ type_asset: 'sdk.coin',
124
+ traces: [{
125
+ type: 'ibc',
126
+ counterparty: {
127
+ channel_id: 'channel-34',
128
+ base_denom: 'aarch',
129
+ chain_name: 'archway'
130
+ },
131
+ chain: {
132
+ channel_id: 'channel-116'
133
+ }
134
+ }]
135
+ },
136
+ {
137
+ description: 'Architects Token',
138
+ type_asset: 'cw20',
139
+ address: 'archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu',
140
+ denom_units: [{
141
+ denom: 'ibc/A60AE706D2D148ACDB8E6770BB3B23BEEA5CE2DC0B9D1B9F74BA560BCA26D48D',
142
+ exponent: 0,
143
+ aliases: ['archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu']
144
+ }, {
145
+ denom: 'TOKN',
146
+ exponent: 18
147
+ }],
148
+ base: 'ibc/A60AE706D2D148ACDB8E6770BB3B23BEEA5CE2DC0B9D1B9F74BA560BCA26D48D',
149
+ name: 'Architects Token',
150
+ display: 'TOKN',
151
+ symbol: 'TOKN',
152
+ logo_URIs: {
153
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png'
154
+ },
155
+ images: [{
156
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png'
157
+ }],
158
+ traces: [{
159
+ type: 'ibc',
160
+ counterparty: {
161
+ channel_id: 'channel-34',
162
+ base_denom: 'archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu',
163
+ chain_name: 'archway'
164
+ },
165
+ chain: {
166
+ channel_id: 'channel-116'
167
+ }
168
+ }]
169
+ },
170
+ {
171
+ description: 'Celestia is a modular blockchain network focused on data availability, allowing developers to deploy their own customizable blockchains with ease.',
172
+ denom_units: [{
173
+ denom: 'ibc/B286BE331CF81A90B2C19E30B31825BA515D51468E0B029031EEF146BE22C9B3',
174
+ exponent: 0,
175
+ aliases: ['utia']
176
+ }, {
177
+ denom: 'tia',
178
+ exponent: 6
179
+ }],
180
+ base: 'ibc/B286BE331CF81A90B2C19E30B31825BA515D51468E0B029031EEF146BE22C9B3',
181
+ name: 'Celestia',
182
+ display: 'tia',
183
+ symbol: 'TIA',
184
+ coingecko_id: 'celestia',
185
+ logo_URIs: {
186
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
187
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
188
+ },
189
+ images: [{
190
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
191
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg',
192
+ theme: {
193
+ primary_color_hex: '#7c2cfb'
194
+ }
195
+ }],
196
+ socials: {
197
+ website: 'https://celestia.org/',
198
+ twitter: 'https://twitter.com/CelestiaOrg'
199
+ },
200
+ type_asset: 'sdk.coin',
201
+ traces: [{
202
+ type: 'ibc',
203
+ counterparty: {
204
+ channel_id: 'channel-36',
205
+ base_denom: 'utia',
206
+ chain_name: 'celestia'
207
+ },
208
+ chain: {
209
+ channel_id: 'channel-207'
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/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
217
+ exponent: 0,
218
+ aliases: ['uatom']
219
+ }, {
220
+ denom: 'atom',
221
+ exponent: 6
222
+ }],
223
+ base: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
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-467',
248
+ base_denom: 'uatom',
249
+ chain_name: 'cosmoshub'
250
+ },
251
+ chain: {
252
+ channel_id: 'channel-1'
253
+ }
254
+ }]
255
+ },
256
+ {
257
+ description: 'DYDX is a decentralized trading platform focused on derivatives and perpetual contracts, offering a secure and efficient trading experience without intermediaries.',
258
+ denom_units: [{
259
+ denom: 'ibc/5CC131485B2E91C2A1BE0AD5D62086D7BA14552F1C81D1FB05B32DCE1A535D13',
260
+ exponent: 0,
261
+ aliases: ['adydx']
262
+ }, {
263
+ denom: 'dydx',
264
+ exponent: 18
265
+ }],
266
+ base: 'ibc/5CC131485B2E91C2A1BE0AD5D62086D7BA14552F1C81D1FB05B32DCE1A535D13',
267
+ name: 'dYdX',
268
+ display: 'dydx',
269
+ symbol: 'DYDX',
270
+ logo_URIs: {
271
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png',
272
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg'
273
+ },
274
+ coingecko_id: 'dydx-chain',
275
+ images: [{
276
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png',
277
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg',
278
+ theme: {
279
+ primary_color_hex: '#21212f'
280
+ }
281
+ }, {
282
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg',
283
+ theme: {
284
+ circle: true
285
+ }
286
+ }],
287
+ socials: {
288
+ website: 'https://dydx.trade/',
289
+ twitter: 'https://twitter.com/dYdX'
290
+ },
291
+ type_asset: 'sdk.coin',
292
+ traces: [{
293
+ type: 'ibc',
294
+ counterparty: {
295
+ channel_id: 'channel-32',
296
+ base_denom: 'adydx',
297
+ chain_name: 'dydx'
298
+ },
299
+ chain: {
300
+ channel_id: 'channel-164'
301
+ }
302
+ }]
303
+ },
304
+ {
305
+ description: 'Injective is a decentralized exchange protocol that enables fast, secure, and fully decentralized trading of derivatives, futures, and spot markets.',
306
+ denom_units: [{
307
+ denom: 'ibc/832C3F7411F4B3543C566F0B20D88F1831FE15C813013D478C92220F626A9755',
308
+ exponent: 0,
309
+ aliases: ['inj']
310
+ }, {
311
+ denom: 'INJ',
312
+ exponent: 18
313
+ }],
314
+ base: 'ibc/832C3F7411F4B3543C566F0B20D88F1831FE15C813013D478C92220F626A9755',
315
+ name: 'Injective',
316
+ display: 'INJ',
317
+ symbol: 'INJ',
318
+ logo_URIs: {
319
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png',
320
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg'
321
+ },
322
+ coingecko_id: 'injective-protocol',
323
+ images: [{
324
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png',
325
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg',
326
+ theme: {
327
+ primary_color_hex: '#04a2fc'
328
+ }
329
+ }],
330
+ socials: {
331
+ website: 'https://injective.com/',
332
+ twitter: 'https://twitter.com/Injective_'
333
+ },
334
+ type_asset: 'sdk.coin',
335
+ traces: [{
336
+ type: 'ibc',
337
+ counterparty: {
338
+ channel_id: 'channel-394',
339
+ base_denom: 'inj',
340
+ chain_name: 'injective'
341
+ },
342
+ chain: {
343
+ channel_id: 'channel-234'
344
+ }
345
+ }]
346
+ },
347
+ {
348
+ description: 'The second meme coin on Injective.',
349
+ denom_units: [{
350
+ denom: 'ibc/A73660D850AD9EECEC59E744ECA264A187E3D2204E8115063D20ABD11F865F61',
351
+ exponent: 0,
352
+ aliases: ['inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88']
353
+ }, {
354
+ denom: 'NINPO',
355
+ exponent: 6
356
+ }],
357
+ base: 'ibc/A73660D850AD9EECEC59E744ECA264A187E3D2204E8115063D20ABD11F865F61',
358
+ name: 'Ninpo',
359
+ display: 'NINPO',
360
+ symbol: 'NINPO',
361
+ logo_URIs: {
362
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png'
363
+ },
364
+ images: [{
365
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png',
366
+ theme: {
367
+ primary_color_hex: '#31292a'
368
+ }
369
+ }],
370
+ type_asset: 'sdk.coin',
371
+ traces: [{
372
+ type: 'ibc',
373
+ counterparty: {
374
+ channel_id: 'channel-394',
375
+ base_denom: 'inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88',
376
+ chain_name: 'injective'
377
+ },
378
+ chain: {
379
+ channel_id: 'channel-234'
380
+ }
381
+ }]
382
+ },
383
+ {
384
+ description: 'JUDO is a very futuristic meme token.',
385
+ denom_units: [{
386
+ denom: 'ibc/98F0EC5A2D3A241FE3016180B23FE5BE1FB2E97B9CD1D48F879370FACEF3A5C1',
387
+ exponent: 0,
388
+ aliases: ['inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h']
389
+ }, {
390
+ denom: 'JUDO',
391
+ exponent: 6
392
+ }],
393
+ base: 'ibc/98F0EC5A2D3A241FE3016180B23FE5BE1FB2E97B9CD1D48F879370FACEF3A5C1',
394
+ name: 'Judo',
395
+ display: 'JUDO',
396
+ symbol: 'JUDO',
397
+ logo_URIs: {
398
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png'
399
+ },
400
+ images: [{
401
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png',
402
+ theme: {
403
+ primary_color_hex: '#18120f'
404
+ }
405
+ }],
406
+ type_asset: 'sdk.coin',
407
+ traces: [{
408
+ type: 'ibc',
409
+ counterparty: {
410
+ channel_id: 'channel-394',
411
+ base_denom: 'inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h',
412
+ chain_name: 'injective'
413
+ },
414
+ chain: {
415
+ channel_id: 'channel-234'
416
+ }
417
+ }]
418
+ },
419
+ {
420
+ description: 'A receipt token for lent INJ issued by the Neptune Protocol.',
421
+ denom_units: [{
422
+ denom: 'ibc/5FF205991DBD663E16F41DD3D5DB5E707DE133D52256E872C56FC9D0255B6213',
423
+ exponent: 0,
424
+ aliases: ['inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f']
425
+ }, {
426
+ denom: 'nINJ',
427
+ exponent: 18
428
+ }],
429
+ base: 'ibc/5FF205991DBD663E16F41DD3D5DB5E707DE133D52256E872C56FC9D0255B6213',
430
+ name: 'Neptune Receipt INJ',
431
+ display: 'nINJ',
432
+ symbol: 'nINJ',
433
+ images: [{
434
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninj.png',
435
+ theme: {
436
+ primary_color_hex: '#293a6f'
437
+ }
438
+ }],
439
+ type_asset: 'sdk.coin',
440
+ traces: [{
441
+ type: 'ibc',
442
+ counterparty: {
443
+ channel_id: 'channel-394',
444
+ base_denom: 'inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f',
445
+ chain_name: 'injective'
446
+ },
447
+ chain: {
448
+ channel_id: 'channel-234'
449
+ }
450
+ }]
451
+ },
452
+ {
453
+ description: 'A receipt token for lent ATOM issued by the Neptune Protocol.',
454
+ denom_units: [{
455
+ denom: 'ibc/111892F1C26DBFF988BD20495E8F640748C8998A51AC14D7AD1B504F502A4F15',
456
+ exponent: 0,
457
+ aliases: ['inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780']
458
+ }, {
459
+ denom: 'nATOM',
460
+ exponent: 6
461
+ }],
462
+ base: 'ibc/111892F1C26DBFF988BD20495E8F640748C8998A51AC14D7AD1B504F502A4F15',
463
+ name: 'Neptune Receipt ATOM',
464
+ display: 'nATOM',
465
+ symbol: 'nATOM',
466
+ images: [{
467
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/natom.png',
468
+ theme: {
469
+ primary_color_hex: '#272f4b'
470
+ }
471
+ }],
472
+ type_asset: 'sdk.coin',
473
+ traces: [{
474
+ type: 'ibc',
475
+ counterparty: {
476
+ channel_id: 'channel-394',
477
+ base_denom: 'inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780',
478
+ chain_name: 'injective'
479
+ },
480
+ chain: {
481
+ channel_id: 'channel-234'
482
+ }
483
+ }]
484
+ },
485
+ {
486
+ description: 'A receipt token for lent WETH issued by the Neptune Protocol.',
487
+ denom_units: [{
488
+ denom: 'ibc/CBE2FD4CD61C5616BA027AEEC527A947CF593AF74D8B7B491895B3CFEE6B4E41',
489
+ exponent: 0,
490
+ aliases: ['inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt']
491
+ }, {
492
+ denom: 'nWETH',
493
+ exponent: 18
494
+ }],
495
+ base: 'ibc/CBE2FD4CD61C5616BA027AEEC527A947CF593AF74D8B7B491895B3CFEE6B4E41',
496
+ name: 'Neptune Receipt WETH',
497
+ display: 'nWETH',
498
+ symbol: 'nWETH',
499
+ images: [{
500
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/nweth.png',
501
+ theme: {
502
+ primary_color_hex: '#2a303f'
503
+ }
504
+ }],
505
+ type_asset: 'sdk.coin',
506
+ traces: [{
507
+ type: 'ibc',
508
+ counterparty: {
509
+ channel_id: 'channel-394',
510
+ base_denom: 'inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt',
511
+ chain_name: 'injective'
512
+ },
513
+ chain: {
514
+ channel_id: 'channel-234'
515
+ }
516
+ }]
517
+ },
518
+ {
519
+ description: 'A receipt token for lent USDT issued by the Neptune Protocol.',
520
+ denom_units: [{
521
+ denom: 'ibc/E5EA442D055090962C7AB5D60DC8E568C61C31E39535F41352FFFC9FEFD30927',
522
+ exponent: 0,
523
+ aliases: ['inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s']
524
+ }, {
525
+ denom: 'nUSDT',
526
+ exponent: 6
527
+ }],
528
+ base: 'ibc/E5EA442D055090962C7AB5D60DC8E568C61C31E39535F41352FFFC9FEFD30927',
529
+ name: 'Neptune Receipt USDT',
530
+ display: 'nUSDT',
531
+ symbol: 'nUSDT',
532
+ images: [{
533
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/nusdt.png',
534
+ theme: {
535
+ primary_color_hex: '#54ac94'
536
+ }
537
+ }],
538
+ type_asset: 'sdk.coin',
539
+ traces: [{
540
+ type: 'ibc',
541
+ counterparty: {
542
+ channel_id: 'channel-394',
543
+ base_denom: 'inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s',
544
+ chain_name: 'injective'
545
+ },
546
+ chain: {
547
+ channel_id: 'channel-234'
548
+ }
549
+ }]
550
+ },
551
+ {
552
+ description: 'A receipt token for lent TIA issued by the Neptune Protocol.',
553
+ denom_units: [{
554
+ denom: 'ibc/B7CD52AFB75D34EE980004605BFBF223DA937263C197ADCBEDD02C765473E1FE',
555
+ exponent: 0,
556
+ aliases: ['inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv']
557
+ }, {
558
+ denom: 'nTIA',
559
+ exponent: 6
560
+ }],
561
+ base: 'ibc/B7CD52AFB75D34EE980004605BFBF223DA937263C197ADCBEDD02C765473E1FE',
562
+ name: 'Neptune Receipt TIA',
563
+ display: 'nTIA',
564
+ symbol: 'nTIA',
565
+ images: [{
566
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ntia.png',
567
+ theme: {
568
+ primary_color_hex: '#7931f9'
569
+ }
570
+ }],
571
+ type_asset: 'sdk.coin',
572
+ traces: [{
573
+ type: 'ibc',
574
+ counterparty: {
575
+ channel_id: 'channel-394',
576
+ base_denom: 'inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv',
577
+ chain_name: 'injective'
578
+ },
579
+ chain: {
580
+ channel_id: 'channel-234'
581
+ }
582
+ }]
583
+ },
584
+ {
585
+ description: 'The native token of JUNO Chain',
586
+ denom_units: [{
587
+ denom: 'ibc/D3FB6779CE0CA9545122B6125EE479DCBADAF99BE705927B0E307109222B5FA0',
588
+ exponent: 0,
589
+ aliases: ['ujuno']
590
+ }, {
591
+ denom: 'juno',
592
+ exponent: 6
593
+ }],
594
+ base: 'ibc/D3FB6779CE0CA9545122B6125EE479DCBADAF99BE705927B0E307109222B5FA0',
595
+ name: 'Juno',
596
+ display: 'juno',
597
+ symbol: 'JUNO',
598
+ logo_URIs: {
599
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png',
600
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg'
601
+ },
602
+ coingecko_id: 'juno-network',
603
+ images: [{
604
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png',
605
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg',
606
+ theme: {
607
+ primary_color_hex: '#fa7b7b'
608
+ }
609
+ }],
610
+ socials: {
611
+ website: 'https://junonetwork.io/',
612
+ twitter: 'https://twitter.com/JunoNetwork'
613
+ },
614
+ type_asset: 'sdk.coin',
615
+ traces: [{
616
+ type: 'ibc',
617
+ counterparty: {
618
+ channel_id: 'channel-215',
619
+ base_denom: 'ujuno',
620
+ chain_name: 'juno'
621
+ },
622
+ chain: {
623
+ channel_id: 'channel-22'
624
+ }
625
+ }]
626
+ },
627
+ {
628
+ description: 'OmniFlix is a decentralized media platform that enables content creators to distribute, monetize, and manage their digital content using blockchain technology.',
629
+ denom_units: [{
630
+ denom: 'ibc/9209E647B16BC2762CE203D58AB59B306D9F7210DD5A889EDEDDBB418406F097',
631
+ exponent: 0,
632
+ aliases: ['uflix']
633
+ }, {
634
+ denom: 'flix',
635
+ exponent: 6
636
+ }],
637
+ base: 'ibc/9209E647B16BC2762CE203D58AB59B306D9F7210DD5A889EDEDDBB418406F097',
638
+ name: 'Flix',
639
+ display: 'flix',
640
+ symbol: 'FLIX',
641
+ logo_URIs: {
642
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png',
643
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg'
644
+ },
645
+ coingecko_id: 'omniflix-network',
646
+ images: [{
647
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png',
648
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg',
649
+ theme: {
650
+ primary_color_hex: '#c33635'
651
+ }
652
+ }],
653
+ socials: {
654
+ website: 'https://omniflix.network/',
655
+ twitter: 'https://twitter.com/OmniFlixNetwork'
656
+ },
657
+ type_asset: 'sdk.coin',
658
+ traces: [{
659
+ type: 'ibc',
660
+ counterparty: {
661
+ channel_id: 'channel-51',
662
+ base_denom: 'uflix',
663
+ chain_name: 'omniflixhub'
664
+ },
665
+ chain: {
666
+ channel_id: 'channel-228'
667
+ }
668
+ }]
669
+ },
670
+ {
671
+ description: 'The native token of Osmosis',
672
+ denom_units: [{
673
+ denom: 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B',
674
+ exponent: 0,
675
+ aliases: ['uosmo']
676
+ }, {
677
+ denom: 'osmo',
678
+ exponent: 6
679
+ }],
680
+ type_asset: 'sdk.coin',
681
+ base: 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B',
682
+ name: 'Osmosis',
683
+ display: 'osmo',
684
+ symbol: 'OSMO',
685
+ logo_URIs: {
686
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
687
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
688
+ },
689
+ images: [{
690
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
691
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
692
+ theme: {
693
+ primary_color_hex: '#760dbb'
694
+ }
695
+ }],
696
+ coingecko_id: 'osmosis',
697
+ keywords: ['dex', 'staking'],
698
+ socials: {
699
+ website: 'https://osmosis.zone',
700
+ twitter: 'https://twitter.com/osmosiszone'
701
+ },
702
+ traces: [{
703
+ type: 'ibc',
704
+ counterparty: {
705
+ channel_id: 'channel-522',
706
+ base_denom: 'uosmo',
707
+ chain_name: 'osmosis'
708
+ },
709
+ chain: {
710
+ channel_id: 'channel-2'
711
+ }
712
+ }]
713
+ },
714
+ {
715
+ description: 'ION is the second native token of Osmosis.',
716
+ denom_units: [{
717
+ denom: 'ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991',
718
+ exponent: 0,
719
+ aliases: ['uion']
720
+ }, {
721
+ denom: 'ion',
722
+ exponent: 6
723
+ }],
724
+ type_asset: 'sdk.coin',
725
+ base: 'ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991',
726
+ name: 'Ion DAO',
727
+ display: 'ion',
728
+ symbol: 'ION',
729
+ logo_URIs: {
730
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
731
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
732
+ },
733
+ images: [{
734
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
735
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg',
736
+ theme: {
737
+ primary_color_hex: '#4453c7'
738
+ }
739
+ }],
740
+ coingecko_id: 'ion',
741
+ keywords: ['memecoin', 'defi'],
742
+ socials: {
743
+ website: 'https://ion.wtf',
744
+ twitter: 'https://twitter.com/_IONDAO'
745
+ },
746
+ traces: [{
747
+ type: 'ibc',
748
+ counterparty: {
749
+ channel_id: 'channel-522',
750
+ base_denom: 'uion',
751
+ chain_name: 'osmosis'
752
+ },
753
+ chain: {
754
+ channel_id: 'channel-2'
755
+ }
756
+ }]
757
+ },
758
+ {
759
+ description: 'Persistence One is building a Bitcoin Cross-chain Swaps solution, enabling fast, zero-slippage secure swaps across Bitcoin Layer 2s.',
760
+ denom_units: [{
761
+ denom: 'ibc/50601881EB04667D5BD252FAEB5AA0713F117A2AB9DE365CF7DF9BB4083065B8',
762
+ exponent: 0,
763
+ aliases: ['uxprt']
764
+ }, {
765
+ denom: 'xprt',
766
+ exponent: 6
767
+ }],
768
+ base: 'ibc/50601881EB04667D5BD252FAEB5AA0713F117A2AB9DE365CF7DF9BB4083065B8',
769
+ name: 'Persistence',
770
+ display: 'xprt',
771
+ symbol: 'XPRT',
772
+ logo_URIs: {
773
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png',
774
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg'
775
+ },
776
+ coingecko_id: 'persistence',
777
+ images: [{
778
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png',
779
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg',
780
+ theme: {
781
+ circle: true,
782
+ primary_color_hex: '#E59636',
783
+ background_color_hex: '#000000'
784
+ }
785
+ }],
786
+ socials: {
787
+ website: 'https://persistence.one/',
788
+ twitter: 'https://twitter.com/PersistenceOne'
789
+ },
790
+ type_asset: 'sdk.coin',
791
+ traces: [{
792
+ type: 'ibc',
793
+ counterparty: {
794
+ channel_id: 'channel-73',
795
+ base_denom: 'uxprt',
796
+ chain_name: 'persistence'
797
+ },
798
+ chain: {
799
+ channel_id: 'channel-16'
800
+ }
801
+ }]
802
+ },
803
+ {
804
+ description: 'Agoric is a smart contract platform that uses JavaScript to enable developers to build secure and scalable decentralized applications (dApps) easily.',
805
+ denom_units: [{
806
+ denom: 'ibc/4B3F2630F1EC02190C3A765114709934F8CCE8F577129DC898CF1627D02CE0D1',
807
+ exponent: 0,
808
+ aliases: ['ubld']
809
+ }, {
810
+ denom: 'bld',
811
+ exponent: 6
812
+ }],
813
+ base: 'ibc/4B3F2630F1EC02190C3A765114709934F8CCE8F577129DC898CF1627D02CE0D1',
814
+ name: 'Agoric',
815
+ display: 'bld',
816
+ symbol: 'BLD',
817
+ logo_URIs: {
818
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
819
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg'
820
+ },
821
+ coingecko_id: 'agoric',
822
+ images: [{
823
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
824
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg',
825
+ theme: {
826
+ primary_color_hex: '#c42b44'
827
+ }
828
+ }],
829
+ socials: {
830
+ website: 'https://agoric.com/',
831
+ twitter: 'https://twitter.com/agoric'
832
+ },
833
+ type_asset: 'sdk.coin',
834
+ traces: [{
835
+ type: 'ibc',
836
+ counterparty: {
837
+ channel_id: 'channel-68',
838
+ base_denom: 'ubld',
839
+ chain_name: 'agoric'
840
+ },
841
+ chain: {
842
+ channel_id: 'channel-125'
843
+ }
844
+ }]
845
+ },
846
+ {
847
+ description: 'IST is the stable token used by the Agoric chain for execution fees and commerce.',
848
+ denom_units: [{
849
+ denom: 'ibc/56D57854F1EA07196B9740B0FFFB99C8F2927D17A33415C2F59D71129E52F561',
850
+ exponent: 0,
851
+ aliases: ['uist']
852
+ }, {
853
+ denom: 'ist',
854
+ exponent: 6
855
+ }],
856
+ base: 'ibc/56D57854F1EA07196B9740B0FFFB99C8F2927D17A33415C2F59D71129E52F561',
857
+ name: 'Inter Stable Token',
858
+ display: 'ist',
859
+ symbol: 'IST',
860
+ logo_URIs: {
861
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
862
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg'
863
+ },
864
+ coingecko_id: 'inter-stable-token',
865
+ images: [{
866
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
867
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg',
868
+ theme: {
869
+ primary_color_hex: '#d485e2'
870
+ }
871
+ }],
872
+ type_asset: 'sdk.coin',
873
+ traces: [{
874
+ type: 'ibc',
875
+ counterparty: {
876
+ channel_id: 'channel-68',
877
+ base_denom: 'uist',
878
+ chain_name: 'agoric'
879
+ },
880
+ chain: {
881
+ channel_id: 'channel-125'
882
+ }
883
+ }]
884
+ },
4
885
  {
5
886
  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.',
6
887
  denom_units: [
@@ -85,6 +966,49 @@ const assets = {
85
966
  }
86
967
  }]
87
968
  },
969
+ {
970
+ description: 'Celestia is a modular blockchain network focused on data availability, allowing developers to deploy their own customizable blockchains with ease.',
971
+ denom_units: [{
972
+ denom: 'ibc/B286BE331CF81A90B2C19E30B31825BA515D51468E0B029031EEF146BE22C9B3',
973
+ exponent: 0,
974
+ aliases: ['utia']
975
+ }, {
976
+ denom: 'tia',
977
+ exponent: 6
978
+ }],
979
+ base: 'ibc/B286BE331CF81A90B2C19E30B31825BA515D51468E0B029031EEF146BE22C9B3',
980
+ name: 'Celestia',
981
+ display: 'tia',
982
+ symbol: 'TIA',
983
+ coingecko_id: 'celestia',
984
+ logo_URIs: {
985
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
986
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
987
+ },
988
+ images: [{
989
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
990
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg',
991
+ theme: {
992
+ primary_color_hex: '#7c2cfb'
993
+ }
994
+ }],
995
+ socials: {
996
+ website: 'https://celestia.org/',
997
+ twitter: 'https://twitter.com/CelestiaOrg'
998
+ },
999
+ type_asset: 'sdk.coin',
1000
+ traces: [{
1001
+ type: 'ibc',
1002
+ counterparty: {
1003
+ channel_id: 'channel-36',
1004
+ base_denom: 'utia',
1005
+ chain_name: 'celestia'
1006
+ },
1007
+ chain: {
1008
+ channel_id: 'channel-207'
1009
+ }
1010
+ }]
1011
+ },
88
1012
  {
89
1013
  description: 'ATOM is the native cryptocurrency of the Cosmos network, designed to facilitate interoperability between multiple blockchains through its innovative hub-and-spoke model.',
90
1014
  denom_units: [{
@@ -129,305 +1053,330 @@ const assets = {
129
1053
  }]
130
1054
  },
131
1055
  {
132
- description: 'The native token of JUNO Chain',
1056
+ description: 'DYDX is a decentralized trading platform focused on derivatives and perpetual contracts, offering a secure and efficient trading experience without intermediaries.',
133
1057
  denom_units: [{
134
- denom: 'ibc/D3FB6779CE0CA9545122B6125EE479DCBADAF99BE705927B0E307109222B5FA0',
1058
+ denom: 'ibc/5CC131485B2E91C2A1BE0AD5D62086D7BA14552F1C81D1FB05B32DCE1A535D13',
135
1059
  exponent: 0,
136
- aliases: ['ujuno']
1060
+ aliases: ['adydx']
137
1061
  }, {
138
- denom: 'juno',
139
- exponent: 6
1062
+ denom: 'dydx',
1063
+ exponent: 18
140
1064
  }],
141
- base: 'ibc/D3FB6779CE0CA9545122B6125EE479DCBADAF99BE705927B0E307109222B5FA0',
142
- name: 'Juno',
143
- display: 'juno',
144
- symbol: 'JUNO',
1065
+ base: 'ibc/5CC131485B2E91C2A1BE0AD5D62086D7BA14552F1C81D1FB05B32DCE1A535D13',
1066
+ name: 'dYdX',
1067
+ display: 'dydx',
1068
+ symbol: 'DYDX',
145
1069
  logo_URIs: {
146
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png',
147
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg'
1070
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png',
1071
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg'
148
1072
  },
149
- coingecko_id: 'juno-network',
1073
+ coingecko_id: 'dydx-chain',
150
1074
  images: [{
151
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png',
152
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg',
1075
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png',
1076
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg',
153
1077
  theme: {
154
- primary_color_hex: '#fa7b7b'
1078
+ primary_color_hex: '#21212f'
1079
+ }
1080
+ }, {
1081
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg',
1082
+ theme: {
1083
+ circle: true
155
1084
  }
156
1085
  }],
157
1086
  socials: {
158
- website: 'https://junonetwork.io/',
159
- twitter: 'https://twitter.com/JunoNetwork'
1087
+ website: 'https://dydx.trade/',
1088
+ twitter: 'https://twitter.com/dYdX'
160
1089
  },
161
1090
  type_asset: 'sdk.coin',
162
1091
  traces: [{
163
1092
  type: 'ibc',
164
1093
  counterparty: {
165
- channel_id: 'channel-215',
166
- base_denom: 'ujuno',
167
- chain_name: 'juno'
1094
+ channel_id: 'channel-32',
1095
+ base_denom: 'adydx',
1096
+ chain_name: 'dydx'
168
1097
  },
169
1098
  chain: {
170
- channel_id: 'channel-22'
1099
+ channel_id: 'channel-164'
171
1100
  }
172
1101
  }]
173
1102
  },
174
1103
  {
175
- description: 'The native token of Osmosis',
1104
+ description: 'Injective is a decentralized exchange protocol that enables fast, secure, and fully decentralized trading of derivatives, futures, and spot markets.',
176
1105
  denom_units: [{
177
- denom: 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B',
1106
+ denom: 'ibc/832C3F7411F4B3543C566F0B20D88F1831FE15C813013D478C92220F626A9755',
178
1107
  exponent: 0,
179
- aliases: ['uosmo']
1108
+ aliases: ['inj']
180
1109
  }, {
181
- denom: 'osmo',
182
- exponent: 6
1110
+ denom: 'INJ',
1111
+ exponent: 18
183
1112
  }],
184
- type_asset: 'sdk.coin',
185
- base: 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B',
186
- name: 'Osmosis',
187
- display: 'osmo',
188
- symbol: 'OSMO',
1113
+ base: 'ibc/832C3F7411F4B3543C566F0B20D88F1831FE15C813013D478C92220F626A9755',
1114
+ name: 'Injective',
1115
+ display: 'INJ',
1116
+ symbol: 'INJ',
189
1117
  logo_URIs: {
190
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
191
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
1118
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png',
1119
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg'
192
1120
  },
1121
+ coingecko_id: 'injective-protocol',
193
1122
  images: [{
194
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
195
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
1123
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png',
1124
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg',
196
1125
  theme: {
197
- primary_color_hex: '#760dbb'
1126
+ primary_color_hex: '#04a2fc'
198
1127
  }
199
1128
  }],
200
- coingecko_id: 'osmosis',
201
- keywords: ['dex', 'staking'],
202
1129
  socials: {
203
- website: 'https://osmosis.zone',
204
- twitter: 'https://twitter.com/osmosiszone'
1130
+ website: 'https://injective.com/',
1131
+ twitter: 'https://twitter.com/Injective_'
205
1132
  },
1133
+ type_asset: 'sdk.coin',
206
1134
  traces: [{
207
1135
  type: 'ibc',
208
1136
  counterparty: {
209
- channel_id: 'channel-522',
210
- base_denom: 'uosmo',
211
- chain_name: 'osmosis'
1137
+ channel_id: 'channel-394',
1138
+ base_denom: 'inj',
1139
+ chain_name: 'injective'
212
1140
  },
213
1141
  chain: {
214
- channel_id: 'channel-2'
1142
+ channel_id: 'channel-234'
215
1143
  }
216
1144
  }]
217
1145
  },
218
1146
  {
219
- description: 'ION is the second native token of Osmosis.',
1147
+ description: 'The second meme coin on Injective.',
220
1148
  denom_units: [{
221
- denom: 'ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991',
1149
+ denom: 'ibc/A73660D850AD9EECEC59E744ECA264A187E3D2204E8115063D20ABD11F865F61',
222
1150
  exponent: 0,
223
- aliases: ['uion']
1151
+ aliases: ['inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88']
224
1152
  }, {
225
- denom: 'ion',
1153
+ denom: 'NINPO',
226
1154
  exponent: 6
227
1155
  }],
228
- type_asset: 'sdk.coin',
229
- base: 'ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991',
230
- name: 'Ion DAO',
231
- display: 'ion',
232
- symbol: 'ION',
1156
+ base: 'ibc/A73660D850AD9EECEC59E744ECA264A187E3D2204E8115063D20ABD11F865F61',
1157
+ name: 'Ninpo',
1158
+ display: 'NINPO',
1159
+ symbol: 'NINPO',
233
1160
  logo_URIs: {
234
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
235
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
1161
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png'
236
1162
  },
237
1163
  images: [{
238
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
239
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg',
1164
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png',
240
1165
  theme: {
241
- primary_color_hex: '#4453c7'
1166
+ primary_color_hex: '#31292a'
242
1167
  }
243
1168
  }],
244
- coingecko_id: 'ion',
245
- keywords: ['memecoin', 'defi'],
246
- socials: {
247
- website: 'https://ion.wtf',
248
- twitter: 'https://twitter.com/_IONDAO'
249
- },
1169
+ type_asset: 'sdk.coin',
250
1170
  traces: [{
251
1171
  type: 'ibc',
252
1172
  counterparty: {
253
- channel_id: 'channel-522',
254
- base_denom: 'uion',
255
- chain_name: 'osmosis'
1173
+ channel_id: 'channel-394',
1174
+ base_denom: 'inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88',
1175
+ chain_name: 'injective'
256
1176
  },
257
1177
  chain: {
258
- channel_id: 'channel-2'
1178
+ channel_id: 'channel-234'
259
1179
  }
260
1180
  }]
261
1181
  },
262
1182
  {
263
- description: 'Persistence One is building a Bitcoin Cross-chain Swaps solution, enabling fast, zero-slippage secure swaps across Bitcoin Layer 2s.',
1183
+ description: 'JUDO is a very futuristic meme token.',
264
1184
  denom_units: [{
265
- denom: 'ibc/50601881EB04667D5BD252FAEB5AA0713F117A2AB9DE365CF7DF9BB4083065B8',
1185
+ denom: 'ibc/98F0EC5A2D3A241FE3016180B23FE5BE1FB2E97B9CD1D48F879370FACEF3A5C1',
266
1186
  exponent: 0,
267
- aliases: ['uxprt']
1187
+ aliases: ['inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h']
268
1188
  }, {
269
- denom: 'xprt',
1189
+ denom: 'JUDO',
270
1190
  exponent: 6
271
1191
  }],
272
- base: 'ibc/50601881EB04667D5BD252FAEB5AA0713F117A2AB9DE365CF7DF9BB4083065B8',
273
- name: 'Persistence',
274
- display: 'xprt',
275
- symbol: 'XPRT',
1192
+ base: 'ibc/98F0EC5A2D3A241FE3016180B23FE5BE1FB2E97B9CD1D48F879370FACEF3A5C1',
1193
+ name: 'Judo',
1194
+ display: 'JUDO',
1195
+ symbol: 'JUDO',
276
1196
  logo_URIs: {
277
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png',
278
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg'
1197
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png'
279
1198
  },
280
- coingecko_id: 'persistence',
281
1199
  images: [{
282
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png',
283
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg',
1200
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png',
284
1201
  theme: {
285
- circle: true,
286
- primary_color_hex: '#E59636',
287
- background_color_hex: '#000000'
1202
+ primary_color_hex: '#18120f'
288
1203
  }
289
1204
  }],
290
- socials: {
291
- website: 'https://persistence.one/',
292
- twitter: 'https://twitter.com/PersistenceOne'
293
- },
294
1205
  type_asset: 'sdk.coin',
295
1206
  traces: [{
296
1207
  type: 'ibc',
297
1208
  counterparty: {
298
- channel_id: 'channel-73',
299
- base_denom: 'uxprt',
300
- chain_name: 'persistence'
1209
+ channel_id: 'channel-394',
1210
+ base_denom: 'inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h',
1211
+ chain_name: 'injective'
301
1212
  },
302
1213
  chain: {
303
- channel_id: 'channel-16'
1214
+ channel_id: 'channel-234'
304
1215
  }
305
1216
  }]
306
1217
  },
307
1218
  {
308
- 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.',
309
- denom_units: [
310
- {
311
- denom: 'ibc/56446D416C5998249DD4F0E52C9C973AD9F4D5D9D25FF99C6D37240712C7A1ED',
1219
+ description: 'A receipt token for lent INJ issued by the Neptune Protocol.',
1220
+ denom_units: [{
1221
+ denom: 'ibc/5FF205991DBD663E16F41DD3D5DB5E707DE133D52256E872C56FC9D0255B6213',
312
1222
  exponent: 0,
313
- aliases: ['aarch']
314
- },
315
- {
316
- denom: 'uarch',
317
- exponent: 12
318
- },
319
- {
320
- denom: 'arch',
1223
+ aliases: ['inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f']
1224
+ }, {
1225
+ denom: 'nINJ',
321
1226
  exponent: 18
322
- }
323
- ],
324
- base: 'ibc/56446D416C5998249DD4F0E52C9C973AD9F4D5D9D25FF99C6D37240712C7A1ED',
325
- name: 'Archway',
326
- display: 'arch',
327
- symbol: 'ARCH',
328
- logo_URIs: {
329
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png',
330
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg'
331
- },
332
- coingecko_id: 'archway',
1227
+ }],
1228
+ base: 'ibc/5FF205991DBD663E16F41DD3D5DB5E707DE133D52256E872C56FC9D0255B6213',
1229
+ name: 'Neptune Receipt INJ',
1230
+ display: 'nINJ',
1231
+ symbol: 'nINJ',
333
1232
  images: [{
334
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png',
335
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg',
1233
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninj.png',
336
1234
  theme: {
337
- primary_color_hex: '#fc4c04'
1235
+ primary_color_hex: '#293a6f'
338
1236
  }
339
1237
  }],
340
- socials: {
341
- website: 'https://archway.io/',
342
- twitter: 'https://twitter.com/archwayHQ'
343
- },
344
1238
  type_asset: 'sdk.coin',
345
1239
  traces: [{
346
1240
  type: 'ibc',
347
1241
  counterparty: {
348
- channel_id: 'channel-34',
349
- base_denom: 'aarch',
350
- chain_name: 'archway'
1242
+ channel_id: 'channel-394',
1243
+ base_denom: 'inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f',
1244
+ chain_name: 'injective'
351
1245
  },
352
1246
  chain: {
353
- channel_id: 'channel-116'
1247
+ channel_id: 'channel-234'
354
1248
  }
355
1249
  }]
356
1250
  },
357
1251
  {
358
- description: 'Architects Token',
359
- type_asset: 'cw20',
360
- address: 'archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu',
1252
+ description: 'A receipt token for lent ATOM issued by the Neptune Protocol.',
361
1253
  denom_units: [{
362
- denom: 'ibc/A60AE706D2D148ACDB8E6770BB3B23BEEA5CE2DC0B9D1B9F74BA560BCA26D48D',
1254
+ denom: 'ibc/111892F1C26DBFF988BD20495E8F640748C8998A51AC14D7AD1B504F502A4F15',
363
1255
  exponent: 0,
364
- aliases: ['archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu']
1256
+ aliases: ['inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780']
365
1257
  }, {
366
- denom: 'TOKN',
1258
+ denom: 'nATOM',
1259
+ exponent: 6
1260
+ }],
1261
+ base: 'ibc/111892F1C26DBFF988BD20495E8F640748C8998A51AC14D7AD1B504F502A4F15',
1262
+ name: 'Neptune Receipt ATOM',
1263
+ display: 'nATOM',
1264
+ symbol: 'nATOM',
1265
+ images: [{
1266
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/natom.png',
1267
+ theme: {
1268
+ primary_color_hex: '#272f4b'
1269
+ }
1270
+ }],
1271
+ type_asset: 'sdk.coin',
1272
+ traces: [{
1273
+ type: 'ibc',
1274
+ counterparty: {
1275
+ channel_id: 'channel-394',
1276
+ base_denom: 'inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780',
1277
+ chain_name: 'injective'
1278
+ },
1279
+ chain: {
1280
+ channel_id: 'channel-234'
1281
+ }
1282
+ }]
1283
+ },
1284
+ {
1285
+ description: 'A receipt token for lent WETH issued by the Neptune Protocol.',
1286
+ denom_units: [{
1287
+ denom: 'ibc/CBE2FD4CD61C5616BA027AEEC527A947CF593AF74D8B7B491895B3CFEE6B4E41',
1288
+ exponent: 0,
1289
+ aliases: ['inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt']
1290
+ }, {
1291
+ denom: 'nWETH',
367
1292
  exponent: 18
368
1293
  }],
369
- base: 'ibc/A60AE706D2D148ACDB8E6770BB3B23BEEA5CE2DC0B9D1B9F74BA560BCA26D48D',
370
- name: 'Architects Token',
371
- display: 'TOKN',
372
- symbol: 'TOKN',
373
- logo_URIs: {
374
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png'
375
- },
1294
+ base: 'ibc/CBE2FD4CD61C5616BA027AEEC527A947CF593AF74D8B7B491895B3CFEE6B4E41',
1295
+ name: 'Neptune Receipt WETH',
1296
+ display: 'nWETH',
1297
+ symbol: 'nWETH',
1298
+ images: [{
1299
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/nweth.png',
1300
+ theme: {
1301
+ primary_color_hex: '#2a303f'
1302
+ }
1303
+ }],
1304
+ type_asset: 'sdk.coin',
1305
+ traces: [{
1306
+ type: 'ibc',
1307
+ counterparty: {
1308
+ channel_id: 'channel-394',
1309
+ base_denom: 'inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt',
1310
+ chain_name: 'injective'
1311
+ },
1312
+ chain: {
1313
+ channel_id: 'channel-234'
1314
+ }
1315
+ }]
1316
+ },
1317
+ {
1318
+ description: 'A receipt token for lent USDT issued by the Neptune Protocol.',
1319
+ denom_units: [{
1320
+ denom: 'ibc/E5EA442D055090962C7AB5D60DC8E568C61C31E39535F41352FFFC9FEFD30927',
1321
+ exponent: 0,
1322
+ aliases: ['inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s']
1323
+ }, {
1324
+ denom: 'nUSDT',
1325
+ exponent: 6
1326
+ }],
1327
+ base: 'ibc/E5EA442D055090962C7AB5D60DC8E568C61C31E39535F41352FFFC9FEFD30927',
1328
+ name: 'Neptune Receipt USDT',
1329
+ display: 'nUSDT',
1330
+ symbol: 'nUSDT',
376
1331
  images: [{
377
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png'
1332
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/nusdt.png',
1333
+ theme: {
1334
+ primary_color_hex: '#54ac94'
1335
+ }
378
1336
  }],
1337
+ type_asset: 'sdk.coin',
379
1338
  traces: [{
380
1339
  type: 'ibc',
381
1340
  counterparty: {
382
- channel_id: 'channel-34',
383
- base_denom: 'archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu',
384
- chain_name: 'archway'
1341
+ channel_id: 'channel-394',
1342
+ base_denom: 'inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s',
1343
+ chain_name: 'injective'
385
1344
  },
386
1345
  chain: {
387
- channel_id: 'channel-116'
1346
+ channel_id: 'channel-234'
388
1347
  }
389
1348
  }]
390
1349
  },
391
1350
  {
392
- description: 'ATOM is the native cryptocurrency of the Cosmos network, designed to facilitate interoperability between multiple blockchains through its innovative hub-and-spoke model.',
1351
+ description: 'A receipt token for lent TIA issued by the Neptune Protocol.',
393
1352
  denom_units: [{
394
- denom: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
1353
+ denom: 'ibc/B7CD52AFB75D34EE980004605BFBF223DA937263C197ADCBEDD02C765473E1FE',
395
1354
  exponent: 0,
396
- aliases: ['uatom']
1355
+ aliases: ['inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv']
397
1356
  }, {
398
- denom: 'atom',
1357
+ denom: 'nTIA',
399
1358
  exponent: 6
400
1359
  }],
401
- base: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
402
- name: 'Cosmos Hub Atom',
403
- display: 'atom',
404
- symbol: 'ATOM',
405
- logo_URIs: {
406
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
407
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
408
- },
409
- coingecko_id: 'cosmos',
1360
+ base: 'ibc/B7CD52AFB75D34EE980004605BFBF223DA937263C197ADCBEDD02C765473E1FE',
1361
+ name: 'Neptune Receipt TIA',
1362
+ display: 'nTIA',
1363
+ symbol: 'nTIA',
410
1364
  images: [{
411
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
412
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg',
1365
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ntia.png',
413
1366
  theme: {
414
- primary_color_hex: '#272d45'
1367
+ primary_color_hex: '#7931f9'
415
1368
  }
416
1369
  }],
417
- socials: {
418
- website: 'https://cosmos.network',
419
- twitter: 'https://twitter.com/cosmoshub'
420
- },
421
1370
  type_asset: 'sdk.coin',
422
1371
  traces: [{
423
1372
  type: 'ibc',
424
1373
  counterparty: {
425
- channel_id: 'channel-467',
426
- base_denom: 'uatom',
427
- chain_name: 'cosmoshub'
1374
+ channel_id: 'channel-394',
1375
+ base_denom: 'inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv',
1376
+ chain_name: 'injective'
428
1377
  },
429
1378
  chain: {
430
- channel_id: 'channel-1'
1379
+ channel_id: 'channel-234'
431
1380
  }
432
1381
  }]
433
1382
  },
@@ -474,6 +1423,49 @@ const assets = {
474
1423
  }
475
1424
  }]
476
1425
  },
1426
+ {
1427
+ description: 'OmniFlix is a decentralized media platform that enables content creators to distribute, monetize, and manage their digital content using blockchain technology.',
1428
+ denom_units: [{
1429
+ denom: 'ibc/9209E647B16BC2762CE203D58AB59B306D9F7210DD5A889EDEDDBB418406F097',
1430
+ exponent: 0,
1431
+ aliases: ['uflix']
1432
+ }, {
1433
+ denom: 'flix',
1434
+ exponent: 6
1435
+ }],
1436
+ base: 'ibc/9209E647B16BC2762CE203D58AB59B306D9F7210DD5A889EDEDDBB418406F097',
1437
+ name: 'Flix',
1438
+ display: 'flix',
1439
+ symbol: 'FLIX',
1440
+ logo_URIs: {
1441
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png',
1442
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg'
1443
+ },
1444
+ coingecko_id: 'omniflix-network',
1445
+ images: [{
1446
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png',
1447
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg',
1448
+ theme: {
1449
+ primary_color_hex: '#c33635'
1450
+ }
1451
+ }],
1452
+ socials: {
1453
+ website: 'https://omniflix.network/',
1454
+ twitter: 'https://twitter.com/OmniFlixNetwork'
1455
+ },
1456
+ type_asset: 'sdk.coin',
1457
+ traces: [{
1458
+ type: 'ibc',
1459
+ counterparty: {
1460
+ channel_id: 'channel-51',
1461
+ base_denom: 'uflix',
1462
+ chain_name: 'omniflixhub'
1463
+ },
1464
+ chain: {
1465
+ channel_id: 'channel-228'
1466
+ }
1467
+ }]
1468
+ },
477
1469
  {
478
1470
  description: 'The native token of Osmosis',
479
1471
  denom_units: [{
@@ -689,6 +1681,57 @@ const assets = {
689
1681
  }
690
1682
  }]
691
1683
  },
1684
+ {
1685
+ description: 'Saga is a blockchain platform focused on providing customizable blockchain solutions with a strong emphasis on security and scalability.',
1686
+ denom_units: [{
1687
+ denom: 'ibc/E7395B1DECD14A8B7F9AA60083119E395DA8E37A1DCAA8B9ED07ED8D4F7E48E3',
1688
+ exponent: 0,
1689
+ aliases: ['usaga']
1690
+ }, {
1691
+ denom: 'saga',
1692
+ exponent: 6
1693
+ }],
1694
+ base: 'ibc/E7395B1DECD14A8B7F9AA60083119E395DA8E37A1DCAA8B9ED07ED8D4F7E48E3',
1695
+ name: 'Saga',
1696
+ display: 'saga',
1697
+ symbol: 'SAGA',
1698
+ logo_URIs: {
1699
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png',
1700
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg'
1701
+ },
1702
+ coingecko_id: 'saga-2',
1703
+ images: [{
1704
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png',
1705
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg',
1706
+ theme: {
1707
+ primary_color_hex: '#000000',
1708
+ dark_mode: false
1709
+ }
1710
+ }, {
1711
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png',
1712
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg',
1713
+ theme: {
1714
+ primary_color_hex: '#FFFFFF',
1715
+ dark_mode: true
1716
+ }
1717
+ }],
1718
+ socials: {
1719
+ website: 'https://www.saga.xyz/',
1720
+ twitter: 'https://twitter.com/Sagaxyz__'
1721
+ },
1722
+ type_asset: 'sdk.coin',
1723
+ traces: [{
1724
+ type: 'ibc',
1725
+ counterparty: {
1726
+ channel_id: 'channel-18',
1727
+ base_denom: 'usaga',
1728
+ chain_name: 'saga'
1729
+ },
1730
+ chain: {
1731
+ channel_id: 'channel-170'
1732
+ }
1733
+ }]
1734
+ },
692
1735
  {
693
1736
  description: 'Secret Network is a privacy-focused blockchain that enables private and secure smart contracts, protecting sensitive data.',
694
1737
  denom_units: [{
@@ -729,6 +1772,57 @@ const assets = {
729
1772
  }
730
1773
  }]
731
1774
  },
1775
+ {
1776
+ description: 'Somm Token (SOMM) is the native staking token of the Sommelier Chain',
1777
+ denom_units: [
1778
+ {
1779
+ denom: 'ibc/BFF8BC09B94E2EA90B64961A181D2383280FFA7847109DE1AB4ECA366466462A',
1780
+ exponent: 0,
1781
+ aliases: ['usomm']
1782
+ },
1783
+ {
1784
+ denom: 'msomm',
1785
+ exponent: 3,
1786
+ aliases: ['millisomm']
1787
+ },
1788
+ {
1789
+ denom: 'somm',
1790
+ exponent: 6
1791
+ }
1792
+ ],
1793
+ base: 'ibc/BFF8BC09B94E2EA90B64961A181D2383280FFA7847109DE1AB4ECA366466462A',
1794
+ name: 'Sommelier',
1795
+ display: 'somm',
1796
+ symbol: 'SOMM',
1797
+ logo_URIs: {
1798
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png',
1799
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg'
1800
+ },
1801
+ coingecko_id: 'sommelier',
1802
+ images: [{
1803
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png',
1804
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg',
1805
+ theme: {
1806
+ primary_color_hex: '#f36353'
1807
+ }
1808
+ }],
1809
+ socials: {
1810
+ website: 'https://www.sommelier.finance/',
1811
+ twitter: 'https://twitter.com/sommfinance'
1812
+ },
1813
+ type_asset: 'sdk.coin',
1814
+ traces: [{
1815
+ type: 'ibc',
1816
+ counterparty: {
1817
+ channel_id: 'channel-59',
1818
+ base_denom: 'usomm',
1819
+ chain_name: 'sommelier'
1820
+ },
1821
+ chain: {
1822
+ channel_id: 'channel-101'
1823
+ }
1824
+ }]
1825
+ },
732
1826
  {
733
1827
  description: 'Stargaze is a decentralized blockchain platform designed specifically for non-fungible tokens (NFTs), enabling creators to mint, trade, and interact with NFTs in a fully decentralized environment.',
734
1828
  denom_units: [{
@@ -772,6 +1866,49 @@ const assets = {
772
1866
  }
773
1867
  }]
774
1868
  },
1869
+ {
1870
+ description: 'The native staking token of Terra.',
1871
+ denom_units: [{
1872
+ denom: 'ibc/D770ECBBF0B11F3DD7D32917EE5D6F730C0CB8CAE98E7ED19390C5687E3579AF',
1873
+ exponent: 0,
1874
+ aliases: ['uluna']
1875
+ }, {
1876
+ denom: 'luna',
1877
+ exponent: 6
1878
+ }],
1879
+ base: 'ibc/D770ECBBF0B11F3DD7D32917EE5D6F730C0CB8CAE98E7ED19390C5687E3579AF',
1880
+ name: 'Luna',
1881
+ display: 'luna',
1882
+ symbol: 'LUNA',
1883
+ logo_URIs: {
1884
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png',
1885
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg'
1886
+ },
1887
+ coingecko_id: 'terra-luna-2',
1888
+ images: [{
1889
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png',
1890
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg',
1891
+ theme: {
1892
+ primary_color_hex: '#f4de6f'
1893
+ }
1894
+ }],
1895
+ socials: {
1896
+ website: 'https://www.terra.money/',
1897
+ twitter: 'https://twitter.com/terra_money'
1898
+ },
1899
+ type_asset: 'sdk.coin',
1900
+ traces: [{
1901
+ type: 'ibc',
1902
+ counterparty: {
1903
+ channel_id: 'channel-604',
1904
+ base_denom: 'uluna',
1905
+ chain_name: 'terra2'
1906
+ },
1907
+ chain: {
1908
+ channel_id: 'channel-244'
1909
+ }
1910
+ }]
1911
+ },
775
1912
  {
776
1913
  description: 'The native token of Umee',
777
1914
  denom_units: [{
@@ -811,6 +1948,45 @@ const assets = {
811
1948
  }
812
1949
  }]
813
1950
  },
1951
+ {
1952
+ description: 'XION is the first walletless L1 blockchain purpose built for consumer adoption through chain abstraction.',
1953
+ denom_units: [{
1954
+ denom: 'ibc/EA42BCEB67318BE8A8ED75179A11CC5A55B5557340DA47F554ABB507669825E4',
1955
+ exponent: 0,
1956
+ aliases: ['uxion']
1957
+ }, {
1958
+ denom: 'XION',
1959
+ exponent: 6,
1960
+ aliases: ['xion']
1961
+ }],
1962
+ base: 'ibc/EA42BCEB67318BE8A8ED75179A11CC5A55B5557340DA47F554ABB507669825E4',
1963
+ display: 'XION',
1964
+ name: 'xion',
1965
+ symbol: 'XION',
1966
+ coingecko_id: 'xion-2',
1967
+ type_asset: 'sdk.coin',
1968
+ logo_URIs: {
1969
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png'
1970
+ },
1971
+ images: [{
1972
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png'
1973
+ }],
1974
+ socials: {
1975
+ website: 'https://xion.burnt.com/',
1976
+ twitter: 'https://twitter.com/burnt_xion'
1977
+ },
1978
+ traces: [{
1979
+ type: 'ibc',
1980
+ counterparty: {
1981
+ channel_id: 'channel-8',
1982
+ base_denom: 'uxion',
1983
+ chain_name: 'xion'
1984
+ },
1985
+ chain: {
1986
+ channel_id: 'channel-229'
1987
+ }
1988
+ }]
1989
+ },
814
1990
  {
815
1991
  description: 'REGEN coin is the token for the Regen Network Platform',
816
1992
  denom_units: [{
@@ -893,6 +2069,57 @@ const assets = {
893
2069
  }
894
2070
  }]
895
2071
  },
2072
+ {
2073
+ description: 'Saga is a blockchain platform focused on providing customizable blockchain solutions with a strong emphasis on security and scalability.',
2074
+ denom_units: [{
2075
+ denom: 'ibc/E7395B1DECD14A8B7F9AA60083119E395DA8E37A1DCAA8B9ED07ED8D4F7E48E3',
2076
+ exponent: 0,
2077
+ aliases: ['usaga']
2078
+ }, {
2079
+ denom: 'saga',
2080
+ exponent: 6
2081
+ }],
2082
+ base: 'ibc/E7395B1DECD14A8B7F9AA60083119E395DA8E37A1DCAA8B9ED07ED8D4F7E48E3',
2083
+ name: 'Saga',
2084
+ display: 'saga',
2085
+ symbol: 'SAGA',
2086
+ logo_URIs: {
2087
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png',
2088
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg'
2089
+ },
2090
+ coingecko_id: 'saga-2',
2091
+ images: [{
2092
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png',
2093
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg',
2094
+ theme: {
2095
+ primary_color_hex: '#000000',
2096
+ dark_mode: false
2097
+ }
2098
+ }, {
2099
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png',
2100
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg',
2101
+ theme: {
2102
+ primary_color_hex: '#FFFFFF',
2103
+ dark_mode: true
2104
+ }
2105
+ }],
2106
+ socials: {
2107
+ website: 'https://www.saga.xyz/',
2108
+ twitter: 'https://twitter.com/Sagaxyz__'
2109
+ },
2110
+ type_asset: 'sdk.coin',
2111
+ traces: [{
2112
+ type: 'ibc',
2113
+ counterparty: {
2114
+ channel_id: 'channel-18',
2115
+ base_denom: 'usaga',
2116
+ chain_name: 'saga'
2117
+ },
2118
+ chain: {
2119
+ channel_id: 'channel-170'
2120
+ }
2121
+ }]
2122
+ },
896
2123
  {
897
2124
  description: 'Secret Network is a privacy-focused blockchain that enables private and secure smart contracts, protecting sensitive data.',
898
2125
  denom_units: [{
@@ -933,6 +2160,57 @@ const assets = {
933
2160
  }
934
2161
  }]
935
2162
  },
2163
+ {
2164
+ description: 'Somm Token (SOMM) is the native staking token of the Sommelier Chain',
2165
+ denom_units: [
2166
+ {
2167
+ denom: 'ibc/BFF8BC09B94E2EA90B64961A181D2383280FFA7847109DE1AB4ECA366466462A',
2168
+ exponent: 0,
2169
+ aliases: ['usomm']
2170
+ },
2171
+ {
2172
+ denom: 'msomm',
2173
+ exponent: 3,
2174
+ aliases: ['millisomm']
2175
+ },
2176
+ {
2177
+ denom: 'somm',
2178
+ exponent: 6
2179
+ }
2180
+ ],
2181
+ base: 'ibc/BFF8BC09B94E2EA90B64961A181D2383280FFA7847109DE1AB4ECA366466462A',
2182
+ name: 'Sommelier',
2183
+ display: 'somm',
2184
+ symbol: 'SOMM',
2185
+ logo_URIs: {
2186
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png',
2187
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg'
2188
+ },
2189
+ coingecko_id: 'sommelier',
2190
+ images: [{
2191
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png',
2192
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg',
2193
+ theme: {
2194
+ primary_color_hex: '#f36353'
2195
+ }
2196
+ }],
2197
+ socials: {
2198
+ website: 'https://www.sommelier.finance/',
2199
+ twitter: 'https://twitter.com/sommfinance'
2200
+ },
2201
+ type_asset: 'sdk.coin',
2202
+ traces: [{
2203
+ type: 'ibc',
2204
+ counterparty: {
2205
+ channel_id: 'channel-59',
2206
+ base_denom: 'usomm',
2207
+ chain_name: 'sommelier'
2208
+ },
2209
+ chain: {
2210
+ channel_id: 'channel-101'
2211
+ }
2212
+ }]
2213
+ },
936
2214
  {
937
2215
  description: 'Stargaze is a decentralized blockchain platform designed specifically for non-fungible tokens (NFTs), enabling creators to mint, trade, and interact with NFTs in a fully decentralized environment.',
938
2216
  denom_units: [{
@@ -976,6 +2254,49 @@ const assets = {
976
2254
  }
977
2255
  }]
978
2256
  },
2257
+ {
2258
+ description: 'The native staking token of Terra.',
2259
+ denom_units: [{
2260
+ denom: 'ibc/D770ECBBF0B11F3DD7D32917EE5D6F730C0CB8CAE98E7ED19390C5687E3579AF',
2261
+ exponent: 0,
2262
+ aliases: ['uluna']
2263
+ }, {
2264
+ denom: 'luna',
2265
+ exponent: 6
2266
+ }],
2267
+ base: 'ibc/D770ECBBF0B11F3DD7D32917EE5D6F730C0CB8CAE98E7ED19390C5687E3579AF',
2268
+ name: 'Luna',
2269
+ display: 'luna',
2270
+ symbol: 'LUNA',
2271
+ logo_URIs: {
2272
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png',
2273
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg'
2274
+ },
2275
+ coingecko_id: 'terra-luna-2',
2276
+ images: [{
2277
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png',
2278
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg',
2279
+ theme: {
2280
+ primary_color_hex: '#f4de6f'
2281
+ }
2282
+ }],
2283
+ socials: {
2284
+ website: 'https://www.terra.money/',
2285
+ twitter: 'https://twitter.com/terra_money'
2286
+ },
2287
+ type_asset: 'sdk.coin',
2288
+ traces: [{
2289
+ type: 'ibc',
2290
+ counterparty: {
2291
+ channel_id: 'channel-604',
2292
+ base_denom: 'uluna',
2293
+ chain_name: 'terra2'
2294
+ },
2295
+ chain: {
2296
+ channel_id: 'channel-244'
2297
+ }
2298
+ }]
2299
+ },
979
2300
  {
980
2301
  description: 'The native token of Umee',
981
2302
  denom_units: [{
@@ -1014,6 +2335,45 @@ const assets = {
1014
2335
  channel_id: 'channel-49'
1015
2336
  }
1016
2337
  }]
2338
+ },
2339
+ {
2340
+ description: 'XION is the first walletless L1 blockchain purpose built for consumer adoption through chain abstraction.',
2341
+ denom_units: [{
2342
+ denom: 'ibc/EA42BCEB67318BE8A8ED75179A11CC5A55B5557340DA47F554ABB507669825E4',
2343
+ exponent: 0,
2344
+ aliases: ['uxion']
2345
+ }, {
2346
+ denom: 'XION',
2347
+ exponent: 6,
2348
+ aliases: ['xion']
2349
+ }],
2350
+ base: 'ibc/EA42BCEB67318BE8A8ED75179A11CC5A55B5557340DA47F554ABB507669825E4',
2351
+ display: 'XION',
2352
+ name: 'xion',
2353
+ symbol: 'XION',
2354
+ coingecko_id: 'xion-2',
2355
+ type_asset: 'sdk.coin',
2356
+ logo_URIs: {
2357
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png'
2358
+ },
2359
+ images: [{
2360
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png'
2361
+ }],
2362
+ socials: {
2363
+ website: 'https://xion.burnt.com/',
2364
+ twitter: 'https://twitter.com/burnt_xion'
2365
+ },
2366
+ traces: [{
2367
+ type: 'ibc',
2368
+ counterparty: {
2369
+ channel_id: 'channel-8',
2370
+ base_denom: 'uxion',
2371
+ chain_name: 'xion'
2372
+ },
2373
+ chain: {
2374
+ channel_id: 'channel-229'
2375
+ }
2376
+ }]
1017
2377
  }
1018
2378
  ]
1019
2379
  };