chain-registry 1.69.179 → 1.69.182

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 (53) hide show
  1. package/esm/mainnet/agoric/chain.js +3 -3
  2. package/esm/mainnet/arkeo/chain.js +6 -0
  3. package/esm/mainnet/babylon/assets.js +388 -4
  4. package/esm/mainnet/babylon/chain.js +45 -2
  5. package/esm/mainnet/babylon/ibc.js +29 -0
  6. package/esm/mainnet/comdex/chain.js +0 -12
  7. package/esm/mainnet/cosmoshub/assets.js +331 -0
  8. package/esm/mainnet/cosmoshub/ibc.js +25 -0
  9. package/esm/mainnet/elys/chain.js +16 -8
  10. package/esm/mainnet/ethereum/assets.js +177 -0
  11. package/esm/mainnet/evmos/chain.js +0 -8
  12. package/esm/mainnet/ibc.js +2 -0
  13. package/esm/mainnet/juno/chain.js +2 -10
  14. package/esm/mainnet/kujira/chain.js +0 -8
  15. package/esm/mainnet/lombardledger/assets.js +9 -1
  16. package/esm/mainnet/lombardledger/ibc.js +26 -0
  17. package/esm/mainnet/lombardledger/index.js +2 -0
  18. package/esm/mainnet/neutron/assets.js +26 -0
  19. package/esm/mainnet/neutron/ibc.js +29 -0
  20. package/esm/mainnet/osmosis/assets.js +1744 -1231
  21. package/esm/mainnet/pryzm/chain.js +6 -6
  22. package/esm/mainnet/seda/chain.js +12 -0
  23. package/esm/mainnet/sei/chain.js +4 -4
  24. package/esm/testnet/pryzmtestnet/chain.js +0 -14
  25. package/esm/testnet/uniontestnet/chain.js +0 -4
  26. package/mainnet/agoric/chain.js +3 -3
  27. package/mainnet/arkeo/chain.js +6 -0
  28. package/mainnet/babylon/assets.js +388 -4
  29. package/mainnet/babylon/chain.js +45 -2
  30. package/mainnet/babylon/ibc.js +29 -0
  31. package/mainnet/comdex/chain.js +0 -12
  32. package/mainnet/cosmoshub/assets.js +331 -0
  33. package/mainnet/cosmoshub/ibc.js +25 -0
  34. package/mainnet/elys/chain.js +16 -8
  35. package/mainnet/ethereum/assets.js +177 -0
  36. package/mainnet/evmos/chain.js +0 -8
  37. package/mainnet/ibc.js +2 -0
  38. package/mainnet/juno/chain.js +2 -10
  39. package/mainnet/kujira/chain.js +0 -8
  40. package/mainnet/lombardledger/assets.js +9 -1
  41. package/mainnet/lombardledger/ibc.d.ts +3 -0
  42. package/mainnet/lombardledger/ibc.js +28 -0
  43. package/mainnet/lombardledger/index.d.ts +1 -0
  44. package/mainnet/lombardledger/index.js +3 -1
  45. package/mainnet/neutron/assets.js +26 -0
  46. package/mainnet/neutron/ibc.js +29 -0
  47. package/mainnet/osmosis/assets.js +1744 -1231
  48. package/mainnet/pryzm/chain.js +6 -6
  49. package/mainnet/seda/chain.js +12 -0
  50. package/mainnet/sei/chain.js +4 -4
  51. package/package.json +4 -4
  52. package/testnet/pryzmtestnet/chain.js +0 -14
  53. package/testnet/uniontestnet/chain.js +0 -4
@@ -35,8 +35,8 @@ const info = {
35
35
  genesis: {
36
36
  genesis_url: 'https://main.agoric.net/genesis.json'
37
37
  },
38
- recommended_version: 'agoric-upgrade-18a',
39
- compatible_versions: ['agoric-upgrade-18a'],
38
+ recommended_version: 'agoric-upgrade-19',
39
+ compatible_versions: ['agoric-upgrade-19'],
40
40
  consensus: {
41
41
  type: 'cometbft',
42
42
  version: 'v0.34.35',
@@ -60,7 +60,7 @@ const info = {
60
60
  type: 'go',
61
61
  version: 'v6.3.1',
62
62
  repo: 'https://github.com/agoric-labs/ibc-go',
63
- tag: 'v6.3.1-alpha.agoric.2',
63
+ tag: 'v6.3.1-alpha.agoric.4',
64
64
  ics_enabled: ['ics20-1']
65
65
  }
66
66
  },
@@ -48,10 +48,16 @@ const info = {
48
48
  rpc: [{
49
49
  address: 'https://rpc-seed.arkeo.network',
50
50
  provider: 'Arkeo'
51
+ }, {
52
+ address: 'https://arkeo-mainnet-rpc.autostake.com:443',
53
+ provider: 'AutoStake 🛡️ Slash Protected'
51
54
  }],
52
55
  rest: [{
53
56
  address: 'https://rest-seed.arkeo.network',
54
57
  provider: 'Arkeo'
58
+ }, {
59
+ address: 'https://arkeo-mainnet-lcd.autostake.com:443',
60
+ provider: 'AutoStake 🛡️ Slash Protected'
55
61
  }]
56
62
  },
57
63
  explorers: [{
@@ -1,8 +1,10 @@
1
1
  const info = {
2
2
  $schema: '../assetlist.schema.json',
3
3
  chain_name: 'babylon',
4
- assets: [{
4
+ assets: [
5
+ {
5
6
  description: 'The native token of Babylon Genesis.',
7
+ extended_description: 'Babylon Genesis enables Bitcoin tokens to be used as an economic security layer for Proof of Stake (PoS) systems without relying on bridges, wrapping, or third-party custody.',
6
8
  denom_units: [{
7
9
  denom: 'ubbn',
8
10
  exponent: 0
@@ -11,7 +13,7 @@ const info = {
11
13
  exponent: 6
12
14
  }],
13
15
  base: 'ubbn',
14
- name: 'Babylon',
16
+ name: 'BABY',
15
17
  display: 'BABY',
16
18
  symbol: 'BABY',
17
19
  logo_URIs: {
@@ -20,7 +22,389 @@ const info = {
20
22
  images: [{
21
23
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
22
24
  }],
23
- type_asset: 'sdk.coin'
24
- }]
25
+ coingecko_id: 'babylon',
26
+ type_asset: 'sdk.coin',
27
+ socials: {
28
+ website: 'https://babylonlabs.io/',
29
+ twitter: 'https://x.com/babylonlabs_io'
30
+ }
31
+ },
32
+ {
33
+ denom_units: [{
34
+ denom: 'ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3',
35
+ exponent: 0
36
+ }, {
37
+ denom: 'USDC',
38
+ exponent: 6
39
+ }],
40
+ base: 'ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3',
41
+ name: 'USDC',
42
+ display: 'USDC',
43
+ symbol: 'USDC',
44
+ logo_URIs: {
45
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png'
46
+ },
47
+ coingecko_id: 'usd-coin',
48
+ traces: [{
49
+ type: 'ibc',
50
+ counterparty: {
51
+ chain_name: 'noble',
52
+ base_denom: 'uusdc',
53
+ channel_id: 'channel-132'
54
+ },
55
+ chain: {
56
+ channel_id: 'channel-1',
57
+ path: 'transfer/channel-1/uusdc'
58
+ }
59
+ }],
60
+ type_asset: 'ics20'
61
+ },
62
+ {
63
+ denom_units: [{
64
+ denom: 'ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD',
65
+ exponent: 0
66
+ }, {
67
+ denom: 'AXL',
68
+ exponent: 6
69
+ }],
70
+ base: 'ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD',
71
+ name: 'AXL',
72
+ display: 'AXL',
73
+ symbol: 'AXL',
74
+ logo_URIs: {
75
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png'
76
+ },
77
+ coingecko_id: 'axelar',
78
+ traces: [{
79
+ type: 'ibc',
80
+ counterparty: {
81
+ chain_name: 'axelar',
82
+ base_denom: 'uaxl',
83
+ channel_id: 'channel-175'
84
+ },
85
+ chain: {
86
+ channel_id: 'channel-2',
87
+ path: 'transfer/channel-2/uaxl'
88
+ }
89
+ }],
90
+ type_asset: 'ics20'
91
+ },
92
+ {
93
+ denom_units: [{
94
+ denom: 'ibc/4805A17C742D2325715167EA1167974821888307CC62066D6CFA2BD0F724821D',
95
+ exponent: 0
96
+ }, {
97
+ denom: 'eBTC',
98
+ exponent: 8
99
+ }],
100
+ base: 'ibc/4805A17C742D2325715167EA1167974821888307CC62066D6CFA2BD0F724821D',
101
+ name: 'ether.fi BTC',
102
+ display: 'eBTC',
103
+ symbol: 'eBTC',
104
+ logo_URIs: {
105
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eBTC.png'
106
+ },
107
+ traces: [{
108
+ type: 'ibc',
109
+ counterparty: {
110
+ chain_name: 'cosmoshub',
111
+ base_denom: 'ibc/6F8F0E9D472BF053261F2DEBE521801B703372777F3923B48DAE55D4F1212B5F',
112
+ channel_id: 'channel-1341'
113
+ },
114
+ chain: {
115
+ channel_id: 'channel-0',
116
+ path: 'transfer/channel-0/transfer/08-wasm-1369/0x657e8c867d8b37dcc18fa4caead9c45eb088c642'
117
+ }
118
+ }],
119
+ type_asset: 'ics20'
120
+ },
121
+ {
122
+ denom_units: [{
123
+ denom: 'ibc/49F46032AC74BE0BC972A87C5D031F7F65254E5AC59F09440B9435DF67787227',
124
+ exponent: 0
125
+ }, {
126
+ denom: 'stBTC',
127
+ exponent: 18
128
+ }],
129
+ base: 'ibc/49F46032AC74BE0BC972A87C5D031F7F65254E5AC59F09440B9435DF67787227',
130
+ name: 'Lorenzo stBTC',
131
+ display: 'stBTC',
132
+ symbol: 'stBTC',
133
+ logo_URIs: {
134
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/stbtc.svg'
135
+ },
136
+ traces: [{
137
+ type: 'ibc',
138
+ counterparty: {
139
+ chain_name: 'cosmoshub',
140
+ base_denom: 'ibc/286A30F7F093357CE113A2E3B9A2E497F7A691CAFC624ABC615DE147DCE9FD17',
141
+ channel_id: 'channel-1341'
142
+ },
143
+ chain: {
144
+ channel_id: 'channel-0',
145
+ path: 'transfer/channel-0/transfer/08-wasm-1369/0xf6718b2701d4a6498ef77d7c152b2137ab28b8a3'
146
+ }
147
+ }],
148
+ type_asset: 'ics20'
149
+ },
150
+ {
151
+ denom_units: [{
152
+ denom: 'ibc/67144554C6EE6D0FCF43CBA0DF18D821E2818FD1F320B93AB0349E741A0DC850',
153
+ exponent: 0
154
+ }, {
155
+ denom: 'kBTC',
156
+ exponent: 18
157
+ }],
158
+ base: 'ibc/67144554C6EE6D0FCF43CBA0DF18D821E2818FD1F320B93AB0349E741A0DC850',
159
+ name: 'Kinza Babylon Staked BTC',
160
+ display: 'kBTC',
161
+ symbol: 'kBTC',
162
+ logo_URIs: {
163
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/kBTC.svg'
164
+ },
165
+ traces: [{
166
+ type: 'ibc',
167
+ counterparty: {
168
+ chain_name: 'cosmoshub',
169
+ base_denom: 'ibc/AE65FB498AFB35CC06301BEE6EA8063DC41CE04D80A8D167258B73D7A863DA8D',
170
+ channel_id: 'channel-1341'
171
+ },
172
+ chain: {
173
+ channel_id: 'channel-0',
174
+ path: 'transfer/channel-0/transfer/08-wasm-1369/0x9356f6d95b8e109f4b7ce3e49d672967d3b48383'
175
+ }
176
+ }],
177
+ type_asset: 'ics20'
178
+ },
179
+ {
180
+ denom_units: [{
181
+ denom: 'ibc/6E7CA61C5656D3F3007535F035386AEB8281833743CFCE0F069213331CEBBE1A',
182
+ exponent: 0
183
+ }, {
184
+ denom: 'uniBTC',
185
+ exponent: 8
186
+ }],
187
+ base: 'ibc/6E7CA61C5656D3F3007535F035386AEB8281833743CFCE0F069213331CEBBE1A',
188
+ name: 'uniBTC',
189
+ display: 'uniBTC',
190
+ symbol: 'uniBTC',
191
+ logo_URIs: {
192
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uniBTC.png'
193
+ },
194
+ traces: [{
195
+ type: 'ibc',
196
+ counterparty: {
197
+ chain_name: 'cosmoshub',
198
+ base_denom: 'ibc/9EE1F80BA2AE01138A40D656BBB42D11B1720000D6F64FC5988E412B6EDB4F71',
199
+ channel_id: 'channel-1341'
200
+ },
201
+ chain: {
202
+ channel_id: 'channel-0',
203
+ path: 'transfer/channel-0/transfer/08-wasm-1369/0x004e9c3ef86bc1ca1f0bb5c7662861ee93350568'
204
+ }
205
+ }],
206
+ type_asset: 'ics20'
207
+ },
208
+ {
209
+ denom_units: [{
210
+ denom: 'ibc/F15348F47575AAFE2BEFF8369CBE3647AE9DC06909CDBF8C97E48ACF7055E459',
211
+ exponent: 0
212
+ }, {
213
+ denom: 'mBTC',
214
+ exponent: 8
215
+ }],
216
+ base: 'ibc/F15348F47575AAFE2BEFF8369CBE3647AE9DC06909CDBF8C97E48ACF7055E459',
217
+ name: 'mBTC',
218
+ display: 'mBTC',
219
+ symbol: 'mBTC',
220
+ logo_URIs: {
221
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/mbtc.png'
222
+ },
223
+ traces: [{
224
+ type: 'ibc',
225
+ counterparty: {
226
+ chain_name: 'cosmoshub',
227
+ base_denom: 'ibc/6583B66D1450B5A0E997C85A4048749ADCBD745562D62F3CC1CEE5D41B5814D1',
228
+ channel_id: 'channel-1341'
229
+ },
230
+ chain: {
231
+ channel_id: 'channel-0',
232
+ path: 'transfer/channel-0/transfer/08-wasm-1369/0xbdf245957992bfbc62b07e344128a1eec7b7ee3f'
233
+ }
234
+ }],
235
+ type_asset: 'ics20'
236
+ },
237
+ {
238
+ denom_units: [{
239
+ denom: 'ibc/89EE10FCF78800B572BAAC7080AEFA301B5F3BBC51C5371E907EB129C5B900E7',
240
+ exponent: 0
241
+ }, {
242
+ denom: 'LBTC',
243
+ exponent: 8
244
+ }],
245
+ base: 'ibc/89EE10FCF78800B572BAAC7080AEFA301B5F3BBC51C5371E907EB129C5B900E7',
246
+ name: 'LBTC',
247
+ display: 'LBTC',
248
+ symbol: 'LBTC',
249
+ logo_URIs: {
250
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/LBTC.svg'
251
+ },
252
+ traces: [{
253
+ type: 'ibc',
254
+ counterparty: {
255
+ chain_name: 'cosmoshub',
256
+ base_denom: 'ibc/DBD9E339E1B093A052D76BECFFDE8435EAC114CF2133346B4D691F3F2068C957',
257
+ channel_id: 'channel-1341'
258
+ },
259
+ chain: {
260
+ channel_id: 'channel-0',
261
+ path: 'transfer/channel-0/transfer/channel-1340/uclbtc'
262
+ }
263
+ }],
264
+ type_asset: 'ics20'
265
+ },
266
+ {
267
+ denom_units: [{
268
+ denom: 'ibc/954F25C3AA0DCF2917393FB89D778F95815B0568EB093C43BA0B24CBD99CBFFB',
269
+ exponent: 0
270
+ }, {
271
+ denom: 'pumpBTC',
272
+ exponent: 8
273
+ }],
274
+ base: 'ibc/954F25C3AA0DCF2917393FB89D778F95815B0568EB093C43BA0B24CBD99CBFFB',
275
+ name: 'pumpBTC',
276
+ display: 'pumpBTC',
277
+ symbol: 'pumpBTC',
278
+ logo_URIs: {
279
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pumpBTC.svg'
280
+ },
281
+ traces: [{
282
+ type: 'ibc',
283
+ counterparty: {
284
+ chain_name: 'cosmoshub',
285
+ base_denom: 'ibc/9DA8B22BC0E6D76C2D621EF008168BC163B09A517697B14B68DE75382043152E',
286
+ channel_id: 'channel-1341'
287
+ },
288
+ chain: {
289
+ channel_id: 'channel-0',
290
+ path: 'transfer/channel-0/transfer/08-wasm-1369/0xf469fbd2abcd6b9de8e169d128226c0fc90a012e'
291
+ }
292
+ }],
293
+ type_asset: 'ics20'
294
+ },
295
+ {
296
+ denom_units: [{
297
+ denom: 'ibc/2CC08A10459B40B0251B8CB9C036C98BED1ABBD5F03772E371DCD0FFDA3EC7F3',
298
+ exponent: 0
299
+ }, {
300
+ denom: 'SolvBTC',
301
+ exponent: 18
302
+ }],
303
+ base: 'ibc/2CC08A10459B40B0251B8CB9C036C98BED1ABBD5F03772E371DCD0FFDA3EC7F3',
304
+ name: 'SolvBTC',
305
+ display: 'SolvBTC',
306
+ symbol: 'SolvBTC',
307
+ logo_URIs: {
308
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/SolvBTC.png'
309
+ },
310
+ traces: [{
311
+ type: 'ibc',
312
+ counterparty: {
313
+ chain_name: 'cosmoshub',
314
+ base_denom: 'ibc/0C4417F123459B47B6933939BF6F128C362B0C1F9EDA6A6EBC08860E4672AF7E',
315
+ channel_id: 'channel-1341'
316
+ },
317
+ chain: {
318
+ channel_id: 'channel-0',
319
+ path: 'transfer/channel-0/transfer/08-wasm-1369/0x7a56e1c57c7475ccf742a1832b028f0456652f97'
320
+ }
321
+ }],
322
+ type_asset: 'ics20'
323
+ },
324
+ {
325
+ denom_units: [{
326
+ denom: 'ibc/E06DD7851FC6E344788BD87B2E53384D676374FF0168CEFEDE072E4FB83037A1',
327
+ exponent: 0
328
+ }, {
329
+ denom: 'xSolvBTC',
330
+ exponent: 18
331
+ }],
332
+ base: 'ibc/E06DD7851FC6E344788BD87B2E53384D676374FF0168CEFEDE072E4FB83037A1',
333
+ name: 'xSolvBTC',
334
+ display: 'xSolvBTC',
335
+ symbol: 'xSolvBTC',
336
+ logo_URIs: {
337
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xSolvBTC.png'
338
+ },
339
+ traces: [{
340
+ type: 'ibc',
341
+ counterparty: {
342
+ chain_name: 'cosmoshub',
343
+ base_denom: 'ibc/486D45458E018B59D1F23ADD116D21A881D8DA3BC348B9E0E22354CA031C977E',
344
+ channel_id: 'channel-1341'
345
+ },
346
+ chain: {
347
+ channel_id: 'channel-0',
348
+ path: 'transfer/channel-0/transfer/08-wasm-1369/0xd9d920aa40f578ab794426f5c90f6c731d159def'
349
+ }
350
+ }],
351
+ type_asset: 'ics20'
352
+ },
353
+ {
354
+ denom_units: [{
355
+ denom: 'ibc/88386AC48152D48B34B082648DF836F975506F0B57DBBFC10A54213B1BF484CB',
356
+ exponent: 0
357
+ }, {
358
+ denom: 'WBTC',
359
+ exponent: 8
360
+ }],
361
+ base: 'ibc/88386AC48152D48B34B082648DF836F975506F0B57DBBFC10A54213B1BF484CB',
362
+ name: 'Wrapped BTC',
363
+ display: 'WBTC',
364
+ symbol: 'WBTC',
365
+ logo_URIs: {
366
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
367
+ },
368
+ traces: [{
369
+ type: 'ibc',
370
+ counterparty: {
371
+ chain_name: 'cosmoshub',
372
+ base_denom: 'ibc/D742E8566B0B8CC8F569D950051C09CF57988A88F0E45574BFB3079D41DE6462',
373
+ channel_id: 'channel-1341'
374
+ },
375
+ chain: {
376
+ channel_id: 'channel-0',
377
+ path: 'transfer/channel-0/transfer/08-wasm-1369/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599'
378
+ }
379
+ }],
380
+ type_asset: 'ics20'
381
+ },
382
+ {
383
+ denom_units: [{
384
+ denom: 'ibc/FAE7862FCB5DC95168C415A6EE63DA8C38389EA1EAFF51C82F446C80C879156E',
385
+ exponent: 0
386
+ }, {
387
+ denom: 'enzobtc',
388
+ exponent: 8
389
+ }],
390
+ base: 'ibc/FAE7862FCB5DC95168C415A6EE63DA8C38389EA1EAFF51C82F446C80C879156E',
391
+ name: 'Lorenzo Wrapped Bitcoin',
392
+ display: 'enzobtc',
393
+ symbol: 'enzoBTC',
394
+ traces: [{
395
+ type: 'ibc',
396
+ counterparty: {
397
+ chain_name: 'cosmoshub',
398
+ base_denom: 'ibc/9CB24EF57DF00EFFCE3B52FC1225EDEDF98B31DB8C792B43C7E3D4AD9B3982CF',
399
+ channel_id: 'channel-1341'
400
+ },
401
+ chain: {
402
+ channel_id: 'channel-0',
403
+ path: 'transfer/channel-0/transfer/08-wasm-1369/0x6a9a65b84843f5fd4ac9a0471c4fc11afffbce4a'
404
+ }
405
+ }],
406
+ type_asset: 'ics20'
407
+ }
408
+ ]
25
409
  };
26
410
  export default info;
@@ -82,6 +82,18 @@ const info = {
82
82
  {
83
83
  address: 'https://babylon-archive-rpc.polkachu.com',
84
84
  provider: 'Polkachu'
85
+ },
86
+ {
87
+ address: 'https://babylon-rpc.publicnode.com:443',
88
+ provider: 'Allnodes ⚡️ Nodes & Staking'
89
+ },
90
+ {
91
+ address: 'https://babylon-mainnet-rpc.autostake.com:443',
92
+ provider: 'AutoStake 🛡️ Slash Protected'
93
+ },
94
+ {
95
+ address: 'https://community.nuxian-node.ch:6797/babylon/trpc',
96
+ provider: 'PRO Delegators'
85
97
  }
86
98
  ],
87
99
  rest: [
@@ -100,6 +112,18 @@ const info = {
100
112
  {
101
113
  address: 'https://babylon-archive-api.polkachu.com',
102
114
  provider: 'Polkachu'
115
+ },
116
+ {
117
+ address: 'https://babylon-rest.publicnode.com',
118
+ provider: 'Allnodes ⚡️ Nodes & Staking'
119
+ },
120
+ {
121
+ address: 'https://babylon-mainnet-lcd.autostake.com:443',
122
+ provider: 'AutoStake 🛡️ Slash Protected'
123
+ },
124
+ {
125
+ address: 'https://community.nuxian-node.ch:6797/babylon/crpc',
126
+ provider: 'PRO Delegators'
103
127
  }
104
128
  ],
105
129
  grpc: [
@@ -118,12 +142,31 @@ const info = {
118
142
  {
119
143
  address: 'babylon-archive-grpc.polkachu.com:20690',
120
144
  provider: 'Polkachu'
145
+ },
146
+ {
147
+ address: 'babylon-grpc.publicnode.com:443',
148
+ provider: 'Allnodes ⚡️ Nodes & Staking'
149
+ },
150
+ {
151
+ address: 'babylon-mainnet-grpc.autostake.com:443',
152
+ provider: 'AutoStake 🛡️ Slash Protected'
121
153
  }
122
154
  ]
123
155
  },
124
- explorers: [],
156
+ explorers: [{
157
+ kind: 'mintscan',
158
+ url: 'https://www.mintscan.io/babylon',
159
+ tx_page: 'https://www.mintscan.io/babylon/transactions/${txHash}',
160
+ account_page: 'https://www.mintscan.io/babylon/accounts/${accountAddress}'
161
+ }, {
162
+ kind: 'Nodes Guru',
163
+ url: 'https://babylon.explorers.guru/',
164
+ tx_page: 'https://babylon.explorers.guru/transaction/${txHash}',
165
+ account_page: 'https://babylon.explorers.guru/account/${accountAddress}'
166
+ }],
125
167
  images: [{
126
168
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
127
- }]
169
+ }],
170
+ description: 'Babylon Genesis enables Bitcoin tokens to be used as an economic security layer for Proof of Stake (PoS) systems without relying on bridges, wrapping, or third-party custody.'
128
171
  };
129
172
  export default info;
@@ -56,6 +56,35 @@ const info = [
56
56
  }
57
57
  }]
58
58
  },
59
+ {
60
+ $schema: '../ibc_data.schema.json',
61
+ chain_1: {
62
+ chain_name: 'babylon',
63
+ client_id: '07-tendermint-5',
64
+ connection_id: 'connection-5'
65
+ },
66
+ chain_2: {
67
+ chain_name: 'neutron',
68
+ client_id: '07-tendermint-164',
69
+ connection_id: 'connection-123'
70
+ },
71
+ channels: [{
72
+ chain_1: {
73
+ channel_id: 'channel-5',
74
+ port_id: 'transfer'
75
+ },
76
+ chain_2: {
77
+ channel_id: 'channel-6980',
78
+ port_id: 'transfer'
79
+ },
80
+ ordering: 'unordered',
81
+ version: 'ics20-1',
82
+ tags: {
83
+ status: 'live',
84
+ preferred: true
85
+ }
86
+ }]
87
+ },
59
88
  {
60
89
  $schema: '../ibc_data.schema.json',
61
90
  chain_1: {
@@ -72,10 +72,6 @@ const info = {
72
72
  address: 'https://comdex.rpc.m.stavr.tech',
73
73
  provider: '🔥STAVR🔥'
74
74
  },
75
- {
76
- address: 'https://rpc.comdex.chaintools.tech/',
77
- provider: 'ChainTools'
78
- },
79
75
  {
80
76
  address: 'https://rpc.lavenderfive.com:443/comdex',
81
77
  provider: 'Lavender.Five Nodes 🐝'
@@ -126,10 +122,6 @@ const info = {
126
122
  address: 'https://rest.comdex.one',
127
123
  provider: 'comdex'
128
124
  },
129
- {
130
- address: 'https://api.comdex.chaintools.tech/',
131
- provider: 'ChainTools'
132
- },
133
125
  {
134
126
  address: 'https://comdex-api.polkachu.com',
135
127
  provider: 'Polkachu'
@@ -188,10 +180,6 @@ const info = {
188
180
  address: 'grpc-comdex-ia.cosmosia.notional.ventures:443',
189
181
  provider: 'Notional'
190
182
  },
191
- {
192
- address: 'comdex.grpcui.chaintools.host:443',
193
- provider: 'ChainTools'
194
- },
195
183
  {
196
184
  address: 'comdex-grpc.polkachu.com:13190',
197
185
  provider: 'Polkachu'