chain-registry 1.69.92 → 1.69.93

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 (35) hide show
  1. package/esm/mainnet/mantrachain/ibc.js +29 -0
  2. package/esm/mainnet/milkyway/assets.js +91 -31
  3. package/esm/mainnet/milkyway/chain.js +7 -0
  4. package/esm/mainnet/osmosis/assets.js +50 -5
  5. package/esm/mainnet/stargaze/assets.js +64 -0
  6. package/esm/mainnet/stargaze/ibc.js +29 -0
  7. package/esm/mainnet/terra2/assets.js +30 -0
  8. package/esm/noncosmos/dogecoin/assets.js +1 -0
  9. package/esm/noncosmos/internetcomputer/assets.js +46 -3
  10. package/esm/testnet/airchainstestnet/chain.js +8 -0
  11. package/esm/testnet/manifesttestnet/assets.js +45 -3
  12. package/esm/testnet/neutrontestnet/ibc.js +29 -1
  13. package/esm/testnet/nibirutestnet/assets.js +38 -0
  14. package/esm/testnet/nolustestnet/chain.js +7 -7
  15. package/esm/testnet/nolustestnet/ibc.js +8 -8
  16. package/esm/testnet/osmosistestnet/assets.js +40 -0
  17. package/esm/testnet/osmosistestnet/ibc.js +30 -0
  18. package/mainnet/mantrachain/ibc.js +29 -0
  19. package/mainnet/milkyway/assets.js +91 -31
  20. package/mainnet/milkyway/chain.js +7 -0
  21. package/mainnet/osmosis/assets.js +50 -5
  22. package/mainnet/stargaze/assets.js +64 -0
  23. package/mainnet/stargaze/ibc.js +29 -0
  24. package/mainnet/terra2/assets.js +30 -0
  25. package/noncosmos/dogecoin/assets.js +1 -0
  26. package/noncosmos/internetcomputer/assets.js +46 -3
  27. package/package.json +4 -4
  28. package/testnet/airchainstestnet/chain.js +8 -0
  29. package/testnet/manifesttestnet/assets.js +45 -3
  30. package/testnet/neutrontestnet/ibc.js +29 -1
  31. package/testnet/nibirutestnet/assets.js +38 -0
  32. package/testnet/nolustestnet/chain.js +7 -7
  33. package/testnet/nolustestnet/ibc.js +8 -8
  34. package/testnet/osmosistestnet/assets.js +40 -0
  35. package/testnet/osmosistestnet/ibc.js +30 -0
@@ -114,6 +114,35 @@ const info = [
114
114
  preferred: true
115
115
  }
116
116
  }]
117
+ },
118
+ {
119
+ $schema: '../ibc_data.schema.json',
120
+ chain_1: {
121
+ chain_name: 'mantrachain',
122
+ client_id: '07-tendermint-4',
123
+ connection_id: 'connection-4'
124
+ },
125
+ chain_2: {
126
+ chain_name: 'stargaze',
127
+ client_id: '07-tendermint-372',
128
+ connection_id: 'connection-332'
129
+ },
130
+ channels: [{
131
+ chain_1: {
132
+ channel_id: 'channel-4',
133
+ port_id: 'transfer'
134
+ },
135
+ chain_2: {
136
+ channel_id: 'channel-406',
137
+ port_id: 'transfer'
138
+ },
139
+ ordering: 'unordered',
140
+ version: 'ics20-1',
141
+ tags: {
142
+ status: 'live',
143
+ preferred: true
144
+ }
145
+ }]
117
146
  }
118
147
  ];
119
148
  export default info;
@@ -34,6 +34,49 @@ const info = {
34
34
  twitter: 'https://x.com/milky_way_zone'
35
35
  }
36
36
  },
37
+ {
38
+ description: 'The native token of the Celestia blockchain.',
39
+ denom_units: [{
40
+ denom: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
41
+ exponent: 0,
42
+ aliases: ['utia']
43
+ }, {
44
+ denom: 'TIA',
45
+ exponent: 6
46
+ }],
47
+ type_asset: 'ics20',
48
+ base: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
49
+ name: 'TIA',
50
+ display: 'TIA',
51
+ symbol: 'TIA',
52
+ traces: [{
53
+ type: 'ibc',
54
+ counterparty: {
55
+ chain_name: 'celestia',
56
+ base_denom: 'utia',
57
+ channel_id: 'channel-49'
58
+ },
59
+ chain: {
60
+ channel_id: 'channel-1',
61
+ path: 'transfer/channel-1/utia'
62
+ }
63
+ }],
64
+ logo_URIs: {
65
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
66
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
67
+ },
68
+ images: [{
69
+ image_sync: {
70
+ chain_name: 'celestia',
71
+ base_denom: 'utia'
72
+ },
73
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
74
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg',
75
+ theme: {
76
+ primary_color_hex: '#7c2cfb'
77
+ }
78
+ }]
79
+ },
37
80
  {
38
81
  description: 'The native token of the Celestia blockchain.',
39
82
  denom_units: [{
@@ -41,13 +84,13 @@ const info = {
41
84
  exponent: 0,
42
85
  aliases: ['utia']
43
86
  }, {
44
- denom: 'tia',
87
+ denom: 'TIA',
45
88
  exponent: 6
46
89
  }],
47
90
  type_asset: 'ics20',
48
91
  base: 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5',
49
92
  name: 'Celestia',
50
- display: 'tia',
93
+ display: 'TIA',
51
94
  symbol: 'TIA',
52
95
  traces: [{
53
96
  type: 'ibc',
@@ -65,7 +108,7 @@ const info = {
65
108
  counterparty: {
66
109
  chain_name: 'osmosis',
67
110
  base_denom: 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877',
68
- channel_id: 'channel-0'
111
+ channel_id: 'channel-89298'
69
112
  },
70
113
  chain: {
71
114
  channel_id: 'channel-0',
@@ -93,7 +136,7 @@ const info = {
93
136
  denom_units: [{
94
137
  denom: 'ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F',
95
138
  exponent: 0,
96
- aliases: ['umilktia']
139
+ aliases: ['factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA']
97
140
  }, {
98
141
  denom: 'milkTIA',
99
142
  exponent: 6
@@ -115,7 +158,7 @@ const info = {
115
158
  counterparty: {
116
159
  chain_name: 'osmosis',
117
160
  base_denom: 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA',
118
- channel_id: 'channel-0'
161
+ channel_id: 'channel-89298'
119
162
  },
120
163
  chain: {
121
164
  channel_id: 'channel-0',
@@ -147,7 +190,7 @@ const info = {
147
190
  }],
148
191
  type_asset: 'ics20',
149
192
  base: 'ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157',
150
- name: 'Stride Staked TIA',
193
+ name: 'stTIA',
151
194
  display: 'stTIA',
152
195
  symbol: 'stTIA',
153
196
  traces: [
@@ -176,7 +219,7 @@ const info = {
176
219
  counterparty: {
177
220
  chain_name: 'osmosis',
178
221
  base_denom: 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9',
179
- channel_id: 'channel-0'
222
+ channel_id: 'channel-89298'
180
223
  },
181
224
  chain: {
182
225
  channel_id: 'channel-0',
@@ -201,46 +244,63 @@ const info = {
201
244
  }]
202
245
  },
203
246
  {
204
- description: 'The native token of the Celestia blockchain.',
247
+ description: 'Drop\'s liquid staked TIA',
205
248
  denom_units: [{
206
- denom: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
249
+ denom: 'ibc/4795C86F72EC2CB54E885A4A5B401BED9C333E008311ED9C4DE01BF546B44A21',
207
250
  exponent: 0,
208
- aliases: ['utia']
251
+ aliases: ['udtia']
209
252
  }, {
210
- denom: 'tia',
253
+ denom: 'dTIA',
211
254
  exponent: 6
212
255
  }],
213
256
  type_asset: 'ics20',
214
- base: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
215
- name: 'Celestia',
216
- display: 'tia',
217
- symbol: 'TIA',
218
- traces: [{
219
- type: 'ibc',
257
+ base: 'ibc/4795C86F72EC2CB54E885A4A5B401BED9C333E008311ED9C4DE01BF546B44A21',
258
+ name: 'dTIA',
259
+ display: 'dTIA',
260
+ symbol: 'dTIA',
261
+ traces: [
262
+ {
263
+ type: 'liquid-stake',
220
264
  counterparty: {
221
265
  chain_name: 'celestia',
222
- base_denom: 'utia',
223
- channel_id: 'channel-1'
266
+ base_denom: 'utia'
267
+ },
268
+ provider: 'Drop Protocol'
269
+ },
270
+ {
271
+ type: 'ibc',
272
+ counterparty: {
273
+ chain_name: 'neutron',
274
+ base_denom: 'factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia',
275
+ channel_id: 'channel-10'
224
276
  },
225
277
  chain: {
226
- channel_id: 'channel-1',
227
- path: 'transfer/channel-1/utia'
278
+ channel_id: 'channel-874',
279
+ path: 'transfer/channel-874/factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia'
228
280
  }
229
- }],
281
+ },
282
+ {
283
+ type: 'ibc',
284
+ counterparty: {
285
+ chain_name: 'osmosis',
286
+ base_denom: 'ibc/C7A810C6ED1FC3FFC7C834A534D400EADC94FF7D3BE13DDD4C042AEF1816DFB4',
287
+ channel_id: 'channel-89298'
288
+ },
289
+ chain: {
290
+ channel_id: 'channel-0',
291
+ path: 'transfer/channel-0/transfer/channel-874/factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia'
292
+ }
293
+ }
294
+ ],
230
295
  logo_URIs: {
231
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
232
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
296
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dTIA.svg'
233
297
  },
234
298
  images: [{
235
299
  image_sync: {
236
- chain_name: 'celestia',
237
- base_denom: 'utia'
300
+ chain_name: 'neutron',
301
+ base_denom: 'factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia'
238
302
  },
239
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
240
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg',
241
- theme: {
242
- primary_color_hex: '#7c2cfb'
243
- }
303
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dTIA.svg'
244
304
  }]
245
305
  }
246
306
  ]
@@ -41,6 +41,13 @@ const info = {
41
41
  low_gas_price: 0.0025,
42
42
  average_gas_price: 0.003,
43
43
  high_gas_price: 0.0035
44
+ },
45
+ {
46
+ denom: 'ibc/4795C86F72EC2CB54E885A4A5B401BED9C333E008311ED9C4DE01BF546B44A21',
47
+ fixed_min_gas_price: 0.002,
48
+ low_gas_price: 0.0025,
49
+ average_gas_price: 0.003,
50
+ high_gas_price: 0.0035
44
51
  }
45
52
  ]
46
53
  },
@@ -21316,7 +21316,7 @@ const info = {
21316
21316
  {
21317
21317
  description: 'The native staking and governance token of AtomOne',
21318
21318
  denom_units: [{
21319
- denom: 'ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6',
21319
+ denom: 'ibc/BC26A7A805ECD6822719472BCB7842A48EF09DF206182F8F259B2593EB5D23FB',
21320
21320
  exponent: 0,
21321
21321
  aliases: ['uatone']
21322
21322
  }, {
@@ -21324,7 +21324,7 @@ const info = {
21324
21324
  exponent: 6
21325
21325
  }],
21326
21326
  type_asset: 'ics20',
21327
- base: 'ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6',
21327
+ base: 'ibc/BC26A7A805ECD6822719472BCB7842A48EF09DF206182F8F259B2593EB5D23FB',
21328
21328
  name: 'AtomOne',
21329
21329
  display: 'atone',
21330
21330
  symbol: 'ATONE',
@@ -21333,11 +21333,11 @@ const info = {
21333
21333
  counterparty: {
21334
21334
  chain_name: 'atomone',
21335
21335
  base_denom: 'uatone',
21336
- channel_id: 'channel-0'
21336
+ channel_id: 'channel-2'
21337
21337
  },
21338
21338
  chain: {
21339
- channel_id: 'channel-85309',
21340
- path: 'transfer/channel-85309/uatone'
21339
+ channel_id: 'channel-94814',
21340
+ path: 'transfer/channel-94814/uatone'
21341
21341
  }
21342
21342
  }],
21343
21343
  logo_URIs: {
@@ -22356,6 +22356,51 @@ const info = {
22356
22356
  images: [{
22357
22357
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/cult.png'
22358
22358
  }]
22359
+ },
22360
+ {
22361
+ description: 'Drop staked TIA',
22362
+ denom_units: [{
22363
+ denom: 'ibc/C7A810C6ED1FC3FFC7C834A534D400EADC94FF7D3BE13DDD4C042AEF1816DFB4',
22364
+ exponent: 0,
22365
+ aliases: ['factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia']
22366
+ }, {
22367
+ denom: 'dTIA',
22368
+ exponent: 6
22369
+ }],
22370
+ type_asset: 'ics20',
22371
+ base: 'ibc/C7A810C6ED1FC3FFC7C834A534D400EADC94FF7D3BE13DDD4C042AEF1816DFB4',
22372
+ name: 'dTIA',
22373
+ display: 'dTIA',
22374
+ symbol: 'dTIA',
22375
+ traces: [{
22376
+ type: 'liquid-stake',
22377
+ counterparty: {
22378
+ chain_name: 'celestia',
22379
+ base_denom: 'utia'
22380
+ },
22381
+ provider: 'Drop Protocol'
22382
+ }, {
22383
+ type: 'ibc',
22384
+ counterparty: {
22385
+ chain_name: 'neutron',
22386
+ base_denom: 'factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia',
22387
+ channel_id: 'channel-10'
22388
+ },
22389
+ chain: {
22390
+ channel_id: 'channel-874',
22391
+ path: 'transfer/channel-874/factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia'
22392
+ }
22393
+ }],
22394
+ logo_URIs: {
22395
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dTIA.svg'
22396
+ },
22397
+ images: [{
22398
+ image_sync: {
22399
+ chain_name: 'neutron',
22400
+ base_denom: 'factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia'
22401
+ },
22402
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dTIA.svg'
22403
+ }]
22359
22404
  }
22360
22405
  ]
22361
22406
  };
@@ -697,6 +697,70 @@ const info = {
697
697
  base_denom: 'factory/osmo1qdvwftqd8ml6t9w6dmj97m03ck5ghqqmd8y7cm/cult'
698
698
  }
699
699
  }]
700
+ },
701
+ {
702
+ description: 'The native token of MANTRA',
703
+ denom_units: [{
704
+ denom: 'ibc/3BD86E80E000B52DA57C474A6A44E37F73D34E38A1FA79EE678E08D119FC555B',
705
+ exponent: 0,
706
+ aliases: ['uom']
707
+ }, {
708
+ denom: 'om',
709
+ exponent: 6
710
+ }],
711
+ type_asset: 'ics20',
712
+ base: 'ibc/3BD86E80E000B52DA57C474A6A44E37F73D34E38A1FA79EE678E08D119FC555B',
713
+ name: 'MANTRA',
714
+ display: 'om',
715
+ symbol: 'OM',
716
+ traces: [{
717
+ type: 'ibc',
718
+ counterparty: {
719
+ chain_name: 'mantrachain',
720
+ base_denom: 'uom',
721
+ channel_id: 'channel-4'
722
+ },
723
+ chain: {
724
+ channel_id: 'channel-406',
725
+ path: 'transfer/channel-406/uom'
726
+ }
727
+ }],
728
+ logo_URIs: {
729
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
730
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg'
731
+ },
732
+ images: [
733
+ {
734
+ image_sync: {
735
+ chain_name: 'mantrachain',
736
+ base_denom: 'uom'
737
+ },
738
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
739
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg',
740
+ theme: {
741
+ circle: true,
742
+ primary_color_hex: '#fba0c1'
743
+ }
744
+ },
745
+ {
746
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.png',
747
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.svg',
748
+ theme: {
749
+ dark_mode: true,
750
+ circle: true,
751
+ primary_color_hex: '#342c2c'
752
+ }
753
+ },
754
+ {
755
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.png',
756
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.svg',
757
+ theme: {
758
+ dark_mode: false,
759
+ circle: true,
760
+ primary_color_hex: '#342c2c'
761
+ }
762
+ }
763
+ ]
700
764
  }
701
765
  ]
702
766
  };
@@ -409,6 +409,35 @@ const info = [
409
409
  }
410
410
  }]
411
411
  },
412
+ {
413
+ $schema: '../ibc_data.schema.json',
414
+ chain_1: {
415
+ chain_name: 'mantrachain',
416
+ client_id: '07-tendermint-4',
417
+ connection_id: 'connection-4'
418
+ },
419
+ chain_2: {
420
+ chain_name: 'stargaze',
421
+ client_id: '07-tendermint-372',
422
+ connection_id: 'connection-332'
423
+ },
424
+ channels: [{
425
+ chain_1: {
426
+ channel_id: 'channel-4',
427
+ port_id: 'transfer'
428
+ },
429
+ chain_2: {
430
+ channel_id: 'channel-406',
431
+ port_id: 'transfer'
432
+ },
433
+ ordering: 'unordered',
434
+ version: 'ics20-1',
435
+ tags: {
436
+ status: 'live',
437
+ preferred: true
438
+ }
439
+ }]
440
+ },
412
441
  {
413
442
  $schema: '../ibc_data.schema.json',
414
443
  chain_1: {
@@ -1483,6 +1483,36 @@ const info = {
1483
1483
  },
1484
1484
  provider: 'ERIS Protocol'
1485
1485
  }]
1486
+ },
1487
+ {
1488
+ type_asset: 'sdk.coin',
1489
+ description: 'Eris Protocol ampWHALE/WHALE ampLP',
1490
+ denom_units: [{
1491
+ denom: 'factory/terra1zly98gvcec54m3caxlqexce7rus6rzgplz7eketsdz7nh750h2rqvu8uzx/21/single/amplp',
1492
+ exponent: 0
1493
+ }, {
1494
+ denom: 'amplp',
1495
+ exponent: 6
1496
+ }],
1497
+ base: 'factory/terra1zly98gvcec54m3caxlqexce7rus6rzgplz7eketsdz7nh750h2rqvu8uzx/21/single/amplp',
1498
+ name: 'Eris Protocol ampWHALE/WHALE ampLP',
1499
+ display: 'amplp',
1500
+ symbol: 'ampWHALE-ampLP'
1501
+ },
1502
+ {
1503
+ type_asset: 'sdk.coin',
1504
+ description: 'Eris Protocol bWHALE/WHALE ampLP',
1505
+ denom_units: [{
1506
+ denom: 'factory/terra1zly98gvcec54m3caxlqexce7rus6rzgplz7eketsdz7nh750h2rqvu8uzx/30/single/amplp',
1507
+ exponent: 0
1508
+ }, {
1509
+ denom: 'amplp',
1510
+ exponent: 6
1511
+ }],
1512
+ base: 'factory/terra1zly98gvcec54m3caxlqexce7rus6rzgplz7eketsdz7nh750h2rqvu8uzx/30/single/amplp',
1513
+ name: 'Eris Protocol bWHALE/WHALE ampLP',
1514
+ display: 'amplp',
1515
+ symbol: 'bWHALE-ampLP'
1486
1516
  }
1487
1517
  ]
1488
1518
  };
@@ -18,6 +18,7 @@ const info = {
18
18
  symbol: 'DOGE',
19
19
  coingecko_id: 'dogecoin',
20
20
  images: [{
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/dogecoin/images/doge.svg',
21
22
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/dogecoin/images/doge.png',
22
23
  theme: {
23
24
  primary_color_hex: '#bda148'
@@ -1,7 +1,8 @@
1
1
  const info = {
2
2
  $schema: '../../assetlist.schema.json',
3
3
  chain_name: 'internetcomputer',
4
- assets: [{
4
+ assets: [
5
+ {
5
6
  description: 'The native token of Internet Computer',
6
7
  extended_description: 'The Internet Computer blockchain incorporates a radical rethink of blockchain design, powered by innovations in cryptography. It provides the first “World Computer” blockchain that can be used to build almost any Web 2.0 online system or service, and web3 services, including web3 social media services, without any need for centralized traditional IT such as cloud computing services. It also enables smart contracts it hosts to directly create transactions on other blockchains, which in turn enables the full end-to-end decentralization of online services and web3 for the first time.',
7
8
  denom_units: [{
@@ -30,7 +31,8 @@ const info = {
30
31
  website: 'https://internetcomputer.org/',
31
32
  twitter: 'https://x.com/dfinity'
32
33
  }
33
- }, {
34
+ },
35
+ {
34
36
  description: 'A multi-chain bitcoin twin, trustlessly created by chain-key cryptography and Internet Computer smart contracts that directly hold raw bitcoin.',
35
37
  extended_description: 'Chain-key Bitcoin (ckBTC) is an ICRC-2-compliant token that is backed 1:1 by BTC held 100% on the mainnet. ckBTC does not rely on a centralized bridge to facilitate the conversion between BTC and ckBTC, which makes it substantially more secure when compared to other traditional \'wrapped\' tokens.',
36
38
  denom_units: [{
@@ -68,6 +70,47 @@ const info = {
68
70
  website: 'https://internetcomputer.org/ckbtc',
69
71
  twitter: 'https://x.com/dfinity'
70
72
  }
71
- }]
73
+ },
74
+ {
75
+ description: 'A multi-chain dogecoin twin, trustlessly created by chain-key cryptography and Internet Computer smart contracts that directly hold raw dogecoin.',
76
+ extended_description: 'Chain-key Dogecoin (ckDOGE) is a bridge token that is backed 1:1 by DOGE held 100% on the ICP mainnet. ckDOGEdoes not rely on a centralized bridge to facilitate the conversion between DOGE and ckDOGE, which makes it substantially more secure when compared to other traditional \'wrapped\' tokens.',
77
+ denom_units: [{
78
+ denom: 'factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/dogecoin-native-DOGE',
79
+ exponent: 0,
80
+ aliases: ['shibe']
81
+ }, {
82
+ denom: 'ckDOGE',
83
+ exponent: 8
84
+ }],
85
+ type_asset: 'unknown',
86
+ base: 'factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/dogecoin-native-DOGE',
87
+ name: 'Chain-key Dogecoin',
88
+ display: 'ckDOGE',
89
+ symbol: 'ckDOGE',
90
+ traces: [{
91
+ type: 'bridge',
92
+ counterparty: {
93
+ chain_name: 'dogecoin',
94
+ base_denom: 'shibe'
95
+ },
96
+ provider: 'Omnity Network'
97
+ }],
98
+ images: [{
99
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckDOGE.svg',
100
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckDOGE.png'
101
+ }, {
102
+ image_sync: {
103
+ chain_name: 'dogecoin',
104
+ base_denom: 'shibe'
105
+ },
106
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/dogecoin/images/doge.svg',
107
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/dogecoin/images/doge.png'
108
+ }],
109
+ socials: {
110
+ website: 'https://internetcomputer.org',
111
+ twitter: 'https://x.com/dfinity'
112
+ }
113
+ }
114
+ ]
72
115
  };
73
116
  export default info;
@@ -159,6 +159,10 @@ const info = {
159
159
  {
160
160
  address: 'https://rest1.airchains.t.cosmostaking.com/',
161
161
  provider: 'Cosmostaking'
162
+ },
163
+ {
164
+ address: 'https://airchains-testnet-rest.cosmonautstakes.com/',
165
+ provider: 'Cosmonaut Stakes'
162
166
  }
163
167
  ],
164
168
  grpc: [
@@ -181,6 +185,10 @@ const info = {
181
185
  {
182
186
  address: 'http://grpc1.airchains.t.cosmostaking.com/',
183
187
  provider: 'Cosmostaking'
188
+ },
189
+ {
190
+ address: 'airchains-testnet-grpc.cosmonautstakes.com:14190',
191
+ provider: 'Cosmonaut Stakes'
184
192
  }
185
193
  ]
186
194
  },
@@ -1,7 +1,8 @@
1
1
  const info = {
2
2
  $schema: '../../assetlist.schema.json',
3
3
  chain_name: 'manifesttestnet',
4
- assets: [{
4
+ assets: [
5
+ {
5
6
  description: 'Manifest testnet native token',
6
7
  denom_units: [{
7
8
  denom: 'umfx',
@@ -23,7 +24,8 @@ const info = {
23
24
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg'
24
25
  }],
25
26
  type_asset: 'sdk.coin'
26
- }, {
27
+ },
28
+ {
27
29
  description: 'Proof of Authority token for the Manifest testnet',
28
30
  denom_units: [{
29
31
  denom: 'upoa',
@@ -45,6 +47,46 @@ const info = {
45
47
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg'
46
48
  }],
47
49
  type_asset: 'sdk.coin'
48
- }]
50
+ },
51
+ {
52
+ description: 'Osmosis token on Manifest Ledger Testnet',
53
+ denom_units: [{
54
+ denom: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
55
+ exponent: 0
56
+ }, {
57
+ denom: 'osmo',
58
+ exponent: 6
59
+ }],
60
+ type_asset: 'ics20',
61
+ base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
62
+ name: 'Osmosis',
63
+ display: 'osmo',
64
+ symbol: 'OSMO',
65
+ traces: [{
66
+ type: 'ibc',
67
+ counterparty: {
68
+ chain_name: 'osmosistestnet',
69
+ base_denom: 'uosmo',
70
+ channel_id: 'channel-10016'
71
+ },
72
+ chain: {
73
+ channel_id: 'channel-0',
74
+ path: 'transfer/channel-0/uosmo'
75
+ }
76
+ }],
77
+ images: [{
78
+ image_sync: {
79
+ chain_name: 'osmosistestnet',
80
+ base_denom: 'uosmo'
81
+ },
82
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
83
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png'
84
+ }],
85
+ logo_URIs: {
86
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
87
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
88
+ }
89
+ }
90
+ ]
49
91
  };
50
92
  export default info;