chain-registry 1.69.221 → 1.69.222

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 (44) hide show
  1. package/esm/mainnet/althea/chain.js +14 -0
  2. package/esm/mainnet/arkeo/chain.js +14 -0
  3. package/esm/mainnet/babylon/assets.js +45 -0
  4. package/esm/mainnet/babylon/ibc.js +29 -0
  5. package/esm/mainnet/injective/assets.js +51 -0
  6. package/esm/mainnet/int3face/assets.js +34 -0
  7. package/esm/mainnet/milkyway/assets.js +8 -0
  8. package/esm/mainnet/milkyway/ibc.js +35 -3
  9. package/esm/mainnet/osmosis/assets.js +73 -85
  10. package/esm/noncosmos/assets.js +2 -0
  11. package/esm/noncosmos/named.js +1 -0
  12. package/esm/noncosmos/xrpltestnet/assets.js +47 -0
  13. package/esm/noncosmos/xrpltestnet/index.js +2 -0
  14. package/esm/testnet/ibc.js +2 -0
  15. package/esm/testnet/int3facetestnet/assets.js +37 -1
  16. package/esm/testnet/int3facetestnet/ibc.js +31 -0
  17. package/esm/testnet/int3facetestnet/index.js +2 -0
  18. package/esm/testnet/osmosistestnet/assets.js +371 -0
  19. package/esm/testnet/osmosistestnet/ibc.js +30 -0
  20. package/mainnet/althea/chain.js +14 -0
  21. package/mainnet/arkeo/chain.js +14 -0
  22. package/mainnet/babylon/assets.js +45 -0
  23. package/mainnet/babylon/ibc.js +29 -0
  24. package/mainnet/injective/assets.js +51 -0
  25. package/mainnet/int3face/assets.js +34 -0
  26. package/mainnet/milkyway/assets.js +8 -0
  27. package/mainnet/milkyway/ibc.js +35 -3
  28. package/mainnet/osmosis/assets.js +73 -85
  29. package/noncosmos/assets.js +2 -0
  30. package/noncosmos/named.d.ts +1 -0
  31. package/noncosmos/named.js +2 -1
  32. package/noncosmos/xrpltestnet/assets.d.ts +3 -0
  33. package/noncosmos/xrpltestnet/assets.js +49 -0
  34. package/noncosmos/xrpltestnet/index.d.ts +1 -0
  35. package/noncosmos/xrpltestnet/index.js +8 -0
  36. package/package.json +4 -4
  37. package/testnet/ibc.js +2 -0
  38. package/testnet/int3facetestnet/assets.js +37 -1
  39. package/testnet/int3facetestnet/ibc.d.ts +3 -0
  40. package/testnet/int3facetestnet/ibc.js +33 -0
  41. package/testnet/int3facetestnet/index.d.ts +1 -0
  42. package/testnet/int3facetestnet/index.js +3 -1
  43. package/testnet/osmosistestnet/assets.js +371 -0
  44. package/testnet/osmosistestnet/ibc.js +30 -0
@@ -14,6 +14,7 @@ import * as _elystestnet from './elystestnet';
14
14
  import * as _empowertestnet from './empowertestnet';
15
15
  import * as _impacthubtestnet from './impacthubtestnet';
16
16
  import * as _injectivetestnet from './injectivetestnet';
17
+ import * as _int3facetestnet from './int3facetestnet';
17
18
  import * as _jackaltestnet2 from './jackaltestnet2';
18
19
  import * as _kimanetworktestnet from './kimanetworktestnet';
19
20
  import * as _kujiratestnet from './kujiratestnet';
@@ -61,6 +62,7 @@ const ibc = [
61
62
  ..._empowertestnet.ibc,
62
63
  ..._impacthubtestnet.ibc,
63
64
  ..._injectivetestnet.ibc,
65
+ ..._int3facetestnet.ibc,
64
66
  ..._jackaltestnet2.ibc,
65
67
  ..._kimanetworktestnet.ibc,
66
68
  ..._kujiratestnet.ibc,
@@ -222,10 +222,46 @@ const info = {
222
222
  provider: 'Int3face'
223
223
  }],
224
224
  logo_URIs: {
225
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/sol.int3.png'
225
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/sol.int3.png',
226
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/sol.int3.svg'
226
227
  },
227
228
  images: [{
228
229
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/sol.int3.png',
230
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/sol.int3.svg',
231
+ theme: {
232
+ primary_color_hex: '#3d3d3d'
233
+ }
234
+ }],
235
+ type_asset: 'sdk.coin'
236
+ },
237
+ {
238
+ description: 'Testnet XRP on Int3face',
239
+ denom_units: [{
240
+ denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/xrpl-xrp',
241
+ exponent: 0
242
+ }, {
243
+ denom: 'xrp',
244
+ exponent: 6
245
+ }],
246
+ base: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/xrpl-xrp',
247
+ name: 'Testnet XRP',
248
+ display: 'xrp',
249
+ symbol: 'XRP',
250
+ traces: [{
251
+ type: 'bridge',
252
+ counterparty: {
253
+ chain_name: 'xrpltestnet',
254
+ base_denom: 'drop'
255
+ },
256
+ provider: 'Int3face'
257
+ }],
258
+ logo_URIs: {
259
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/xrp.int3.png',
260
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/xrp.int3.svg'
261
+ },
262
+ images: [{
263
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/xrp.int3.png',
264
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/xrp.int3.svg',
229
265
  theme: {
230
266
  primary_color_hex: '#3d3d3d'
231
267
  }
@@ -0,0 +1,31 @@
1
+ const info = [{
2
+ $schema: '../../ibc_data.schema.json',
3
+ chain_1: {
4
+ chain_name: 'int3facetestnet',
5
+ client_id: '07-tendermint-3',
6
+ connection_id: 'connection-3'
7
+ },
8
+ chain_2: {
9
+ chain_name: 'osmosistestnet',
10
+ client_id: '07-tendermint-4231',
11
+ connection_id: 'connection-3694'
12
+ },
13
+ channels: [{
14
+ chain_1: {
15
+ channel_id: 'channel-1',
16
+ port_id: 'transfer'
17
+ },
18
+ chain_2: {
19
+ channel_id: 'channel-9755',
20
+ port_id: 'transfer'
21
+ },
22
+ ordering: 'unordered',
23
+ version: 'ics20-1',
24
+ tags: {
25
+ status: 'live',
26
+ preferred: true,
27
+ dex: 'osmosis'
28
+ }
29
+ }]
30
+ }];
31
+ export default info;
@@ -1,4 +1,6 @@
1
1
  import _assets from './assets';
2
2
  import _chain from './chain';
3
+ import _ibc from './ibc';
3
4
  export const assets = _assets;
4
5
  export const chain = _chain;
6
+ export const ibc = _ibc;
@@ -1321,6 +1321,377 @@ const info = {
1321
1321
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
1322
1322
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
1323
1323
  }
1324
+ },
1325
+ {
1326
+ description: 'Testnet DOGE from Dogecoin bridged via Int3face bridge',
1327
+ denom_units: [{
1328
+ denom: 'ibc/FCB9537564D517E821D0438AB6CA3BBE03B9E2B2C661B89311181329DFD331C4',
1329
+ exponent: 0,
1330
+ aliases: ['factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge']
1331
+ }, {
1332
+ denom: 'doge',
1333
+ exponent: 8
1334
+ }],
1335
+ type_asset: 'ics20',
1336
+ base: 'ibc/FCB9537564D517E821D0438AB6CA3BBE03B9E2B2C661B89311181329DFD331C4',
1337
+ name: 'Testnet Dogecoin (Int3)',
1338
+ display: 'doge',
1339
+ symbol: 'DOGE.int3',
1340
+ traces: [{
1341
+ type: 'bridge',
1342
+ counterparty: {
1343
+ chain_name: 'dogecointestnet',
1344
+ base_denom: 'shibe'
1345
+ },
1346
+ provider: 'Int3face'
1347
+ }, {
1348
+ type: 'ibc',
1349
+ counterparty: {
1350
+ chain_name: 'int3facetestnet',
1351
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge',
1352
+ channel_id: 'channel-1'
1353
+ },
1354
+ chain: {
1355
+ channel_id: 'channel-9755',
1356
+ path: 'transfer/channel-9755/factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge'
1357
+ }
1358
+ }],
1359
+ logo_URIs: {
1360
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.svg',
1361
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.png'
1362
+ },
1363
+ images: [{
1364
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.svg',
1365
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.png'
1366
+ }, {
1367
+ image_sync: {
1368
+ chain_name: 'int3facetestnet',
1369
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge'
1370
+ },
1371
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/doge.int3.png',
1372
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/doge.int3.svg',
1373
+ theme: {
1374
+ primary_color_hex: '#3d3d3d'
1375
+ }
1376
+ }]
1377
+ },
1378
+ {
1379
+ description: 'Testnet BTC from Bitcoin bridged via Int3face bridge',
1380
+ denom_units: [{
1381
+ denom: 'ibc/68157A7910F47A17C4BA8E06180FA4E5D6E3DF8A8F2B2FD4A74F23597BC1ABBF',
1382
+ exponent: 0,
1383
+ aliases: ['factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc']
1384
+ }, {
1385
+ denom: 'btc',
1386
+ exponent: 8
1387
+ }],
1388
+ type_asset: 'ics20',
1389
+ base: 'ibc/68157A7910F47A17C4BA8E06180FA4E5D6E3DF8A8F2B2FD4A74F23597BC1ABBF',
1390
+ name: 'Testnet Bitcoin (Int3)',
1391
+ display: 'btc',
1392
+ symbol: 'BTC.int3',
1393
+ traces: [{
1394
+ type: 'bridge',
1395
+ counterparty: {
1396
+ chain_name: 'bitcointestnet',
1397
+ base_denom: 'sat'
1398
+ },
1399
+ provider: 'Int3face'
1400
+ }, {
1401
+ type: 'ibc',
1402
+ counterparty: {
1403
+ chain_name: 'int3facetestnet',
1404
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc',
1405
+ channel_id: 'channel-1'
1406
+ },
1407
+ chain: {
1408
+ channel_id: 'channel-9755',
1409
+ path: 'transfer/channel-9755/factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc'
1410
+ }
1411
+ }],
1412
+ logo_URIs: {
1413
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.svg',
1414
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.png'
1415
+ },
1416
+ images: [{
1417
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.svg',
1418
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.png'
1419
+ }, {
1420
+ image_sync: {
1421
+ chain_name: 'int3facetestnet',
1422
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc'
1423
+ },
1424
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/btc.int3.png',
1425
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/btc.int3.svg',
1426
+ theme: {
1427
+ primary_color_hex: '#3d3d3d'
1428
+ }
1429
+ }]
1430
+ },
1431
+ {
1432
+ description: 'Testnet BCH from Bitcoin-Cash bridged via Int3face bridge',
1433
+ denom_units: [{
1434
+ denom: 'ibc/B746CC188C8315EE135101C7F77D361AF6A62A4740EEDBB99A8AC5A80246D719',
1435
+ exponent: 0,
1436
+ aliases: ['factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch']
1437
+ }, {
1438
+ denom: 'bch',
1439
+ exponent: 8
1440
+ }],
1441
+ type_asset: 'ics20',
1442
+ base: 'ibc/B746CC188C8315EE135101C7F77D361AF6A62A4740EEDBB99A8AC5A80246D719',
1443
+ name: 'Testnet Bitcoin Cash (Int3)',
1444
+ display: 'bch',
1445
+ symbol: 'BCH.int3',
1446
+ traces: [{
1447
+ type: 'bridge',
1448
+ counterparty: {
1449
+ chain_name: 'bitcoincashtestnet',
1450
+ base_denom: 'sat'
1451
+ },
1452
+ provider: 'Int3face'
1453
+ }, {
1454
+ type: 'ibc',
1455
+ counterparty: {
1456
+ chain_name: 'int3facetestnet',
1457
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch',
1458
+ channel_id: 'channel-1'
1459
+ },
1460
+ chain: {
1461
+ channel_id: 'channel-9755',
1462
+ path: 'transfer/channel-9755/factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch'
1463
+ }
1464
+ }],
1465
+ logo_URIs: {
1466
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.svg',
1467
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.png'
1468
+ },
1469
+ images: [{
1470
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.svg',
1471
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.png'
1472
+ }, {
1473
+ image_sync: {
1474
+ chain_name: 'int3facetestnet',
1475
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch'
1476
+ },
1477
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/bch.int3.png',
1478
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/bch.int3.svg',
1479
+ theme: {
1480
+ primary_color_hex: '#3d3d3d'
1481
+ }
1482
+ }]
1483
+ },
1484
+ {
1485
+ description: 'Testnet LTC from Litecoin bridged via Int3face bridge',
1486
+ denom_units: [{
1487
+ denom: 'ibc/713D13C42B4EC1327AAD87602393D8870089B59005F552289E46141ABCF79F4C',
1488
+ exponent: 0,
1489
+ aliases: ['factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc']
1490
+ }, {
1491
+ denom: 'ltc',
1492
+ exponent: 8
1493
+ }],
1494
+ type_asset: 'ics20',
1495
+ base: 'ibc/713D13C42B4EC1327AAD87602393D8870089B59005F552289E46141ABCF79F4C',
1496
+ name: 'Testnet Litecoin (Int3)',
1497
+ display: 'ltc',
1498
+ symbol: 'LTC.int3',
1499
+ traces: [{
1500
+ type: 'bridge',
1501
+ counterparty: {
1502
+ chain_name: 'litecointestnet',
1503
+ base_denom: 'litoshi'
1504
+ },
1505
+ provider: 'Int3face'
1506
+ }, {
1507
+ type: 'ibc',
1508
+ counterparty: {
1509
+ chain_name: 'int3facetestnet',
1510
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc',
1511
+ channel_id: 'channel-1'
1512
+ },
1513
+ chain: {
1514
+ channel_id: 'channel-9755',
1515
+ path: 'transfer/channel-9755/factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc'
1516
+ }
1517
+ }],
1518
+ logo_URIs: {
1519
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.svg',
1520
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.png'
1521
+ },
1522
+ images: [{
1523
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.svg',
1524
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.png'
1525
+ }, {
1526
+ image_sync: {
1527
+ chain_name: 'int3facetestnet',
1528
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc'
1529
+ },
1530
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/ltc.int3.png',
1531
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/ltc.int3.svg',
1532
+ theme: {
1533
+ primary_color_hex: '#3d3d3d'
1534
+ }
1535
+ }]
1536
+ },
1537
+ {
1538
+ description: 'Testnet TON coin bridged via Int3face bridge',
1539
+ denom_units: [{
1540
+ denom: 'ibc/17993F75F724B0CB68D0C26642007CDD62286010974B843F86507F383E9F19F3',
1541
+ exponent: 0,
1542
+ aliases: ['factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton']
1543
+ }, {
1544
+ denom: 'ton',
1545
+ exponent: 9
1546
+ }],
1547
+ type_asset: 'ics20',
1548
+ base: 'ibc/17993F75F724B0CB68D0C26642007CDD62286010974B843F86507F383E9F19F3',
1549
+ name: 'Testnet Toncoin (Int3)',
1550
+ display: 'ton',
1551
+ symbol: 'TON.int3',
1552
+ traces: [{
1553
+ type: 'bridge',
1554
+ counterparty: {
1555
+ chain_name: 'tontestnet',
1556
+ base_denom: 'nanoton'
1557
+ },
1558
+ provider: 'Int3face'
1559
+ }, {
1560
+ type: 'ibc',
1561
+ counterparty: {
1562
+ chain_name: 'int3facetestnet',
1563
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton',
1564
+ channel_id: 'channel-1'
1565
+ },
1566
+ chain: {
1567
+ channel_id: 'channel-9755',
1568
+ path: 'transfer/channel-9755/factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton'
1569
+ }
1570
+ }],
1571
+ logo_URIs: {
1572
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.int3.svg',
1573
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.int3.png'
1574
+ },
1575
+ images: [{
1576
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.int3.svg',
1577
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.int3.png'
1578
+ }, {
1579
+ image_sync: {
1580
+ chain_name: 'int3facetestnet',
1581
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton'
1582
+ },
1583
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/ton.int3.png',
1584
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/ton.int3.svg',
1585
+ theme: {
1586
+ primary_color_hex: '#3d3d3d'
1587
+ }
1588
+ }]
1589
+ },
1590
+ {
1591
+ description: 'Testnet Solana (SOL) coin bridged via Int3face bridge',
1592
+ denom_units: [{
1593
+ denom: 'ibc/931C1E953C5312AB6856BDE136EFBD43FAC52398E484CA2C344F623746BAC4BE',
1594
+ exponent: 0,
1595
+ aliases: ['factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-sol']
1596
+ }, {
1597
+ denom: 'sol',
1598
+ exponent: 9
1599
+ }],
1600
+ type_asset: 'ics20',
1601
+ base: 'ibc/931C1E953C5312AB6856BDE136EFBD43FAC52398E484CA2C344F623746BAC4BE',
1602
+ name: 'Testnet SOL (Int3)',
1603
+ display: 'sol',
1604
+ symbol: 'SOL.int3',
1605
+ traces: [{
1606
+ type: 'bridge',
1607
+ counterparty: {
1608
+ chain_name: 'solanatestnet',
1609
+ base_denom: 'Lamport'
1610
+ },
1611
+ provider: 'Int3face'
1612
+ }, {
1613
+ type: 'ibc',
1614
+ counterparty: {
1615
+ chain_name: 'int3facetestnet',
1616
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-sol',
1617
+ channel_id: 'channel-1'
1618
+ },
1619
+ chain: {
1620
+ channel_id: 'channel-9755',
1621
+ path: 'transfer/channel-9755/factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-sol'
1622
+ }
1623
+ }],
1624
+ logo_URIs: {
1625
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.int3.png',
1626
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.int3.svg'
1627
+ },
1628
+ images: [{
1629
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.int3.png',
1630
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.int3.svg'
1631
+ }, {
1632
+ image_sync: {
1633
+ chain_name: 'int3facetestnet',
1634
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-sol'
1635
+ },
1636
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/sol.int3.png',
1637
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/sol.int3.svg',
1638
+ theme: {
1639
+ primary_color_hex: '#3d3d3d'
1640
+ }
1641
+ }]
1642
+ },
1643
+ {
1644
+ description: 'Testnet XRPL (XRP) coin bridged via Int3face bridge',
1645
+ denom_units: [{
1646
+ denom: 'ibc/9D44B9A113D449A16FAB9F639FF5B074CAB6D33D049056AB6B4DCE6E3891DD55',
1647
+ exponent: 0,
1648
+ aliases: ['factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/xrpl-xrp']
1649
+ }, {
1650
+ denom: 'xrp',
1651
+ exponent: 6
1652
+ }],
1653
+ type_asset: 'ics20',
1654
+ base: 'ibc/9D44B9A113D449A16FAB9F639FF5B074CAB6D33D049056AB6B4DCE6E3891DD55',
1655
+ name: 'Testnet XRP (Int3)',
1656
+ display: 'xrp',
1657
+ symbol: 'XRP.int3',
1658
+ traces: [{
1659
+ type: 'bridge',
1660
+ counterparty: {
1661
+ chain_name: 'xrpltestnet',
1662
+ base_denom: 'drop'
1663
+ },
1664
+ provider: 'Int3face'
1665
+ }, {
1666
+ type: 'ibc',
1667
+ counterparty: {
1668
+ chain_name: 'int3facetestnet',
1669
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/xrpl-xrp',
1670
+ channel_id: 'channel-1'
1671
+ },
1672
+ chain: {
1673
+ channel_id: 'channel-9755',
1674
+ path: 'transfer/channel-9755/factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/xrpl-xrp'
1675
+ }
1676
+ }],
1677
+ logo_URIs: {
1678
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.int3.png',
1679
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.int3.svg'
1680
+ },
1681
+ images: [{
1682
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.int3.png',
1683
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.int3.svg'
1684
+ }, {
1685
+ image_sync: {
1686
+ chain_name: 'int3facetestnet',
1687
+ base_denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/xrpl-xrp'
1688
+ },
1689
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/xrp.int3.png',
1690
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/xrp.int3.svg',
1691
+ theme: {
1692
+ primary_color_hex: '#3d3d3d'
1693
+ }
1694
+ }]
1324
1695
  }
1325
1696
  ]
1326
1697
  };
@@ -461,6 +461,36 @@ const info = [
461
461
  }
462
462
  }]
463
463
  },
464
+ {
465
+ $schema: '../../ibc_data.schema.json',
466
+ chain_1: {
467
+ chain_name: 'int3facetestnet',
468
+ client_id: '07-tendermint-3',
469
+ connection_id: 'connection-3'
470
+ },
471
+ chain_2: {
472
+ chain_name: 'osmosistestnet',
473
+ client_id: '07-tendermint-4231',
474
+ connection_id: 'connection-3694'
475
+ },
476
+ channels: [{
477
+ chain_1: {
478
+ channel_id: 'channel-1',
479
+ port_id: 'transfer'
480
+ },
481
+ chain_2: {
482
+ channel_id: 'channel-9755',
483
+ port_id: 'transfer'
484
+ },
485
+ ordering: 'unordered',
486
+ version: 'ics20-1',
487
+ tags: {
488
+ status: 'live',
489
+ preferred: true,
490
+ dex: 'osmosis'
491
+ }
492
+ }]
493
+ },
464
494
  {
465
495
  $schema: '../../ibc_data.schema.json',
466
496
  chain_1: {
@@ -62,6 +62,10 @@ const info = {
62
62
  {
63
63
  address: 'https://rest.lavenderfive.com:443/althea',
64
64
  provider: 'Lavender.Five Nodes 🐝'
65
+ },
66
+ {
67
+ address: 'https://althea_mainnet_api.chain.whenmoonwhenlambo.money',
68
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
65
69
  }
66
70
  ],
67
71
  rpc: [
@@ -76,6 +80,10 @@ const info = {
76
80
  {
77
81
  address: 'https://rpc.lavenderfive.com:443/althea',
78
82
  provider: 'Lavender.Five Nodes 🐝'
83
+ },
84
+ {
85
+ address: 'https://althea_mainnet_rpc.chain.whenmoonwhenlambo.money',
86
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
79
87
  }
80
88
  ],
81
89
  grpc: [{
@@ -101,6 +109,12 @@ const info = {
101
109
  url: 'https://althea.valopers.com/',
102
110
  tx_page: 'https://althea.valopers.com/transactions/${txHash}',
103
111
  account_page: 'https://althea.valopers.com/account/${accountAddress}'
112
+ },
113
+ {
114
+ kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
115
+ url: 'https://explorer.whenmoonwhenlambo.money/althea',
116
+ tx_page: 'https://explorer.whenmoonwhenlambo.money/althea/tx/${txHash}',
117
+ account_page: 'https://explorer.whenmoonwhenlambo.money/althea/account/${accountAddress}'
104
118
  }
105
119
  ]
106
120
  };
@@ -59,6 +59,10 @@ const info = {
59
59
  {
60
60
  address: 'https://rpc.arkeo.roomit.xyz',
61
61
  provider: 'Roomit'
62
+ },
63
+ {
64
+ address: 'https://arkeo_mainnet_rpc.chain.whenmoonwhenlambo.money',
65
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
62
66
  }
63
67
  ],
64
68
  rest: [
@@ -73,6 +77,10 @@ const info = {
73
77
  {
74
78
  address: 'https://api.arkeo.roomit.xyz',
75
79
  provider: 'Roomit'
80
+ },
81
+ {
82
+ address: 'https://arkeo_mainnet_api.chain.whenmoonwhenlambo.money',
83
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
76
84
  }
77
85
  ],
78
86
  grpc: [{
@@ -98,6 +106,12 @@ const info = {
98
106
  url: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet',
99
107
  tx_page: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet/transactions/${txHash}',
100
108
  account_page: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet/account/${accountAddress}'
109
+ },
110
+ {
111
+ kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
112
+ url: 'https://explorer.whenmoonwhenlambo.money/arkeo',
113
+ tx_page: 'https://explorer.whenmoonwhenlambo.money/arkeo/tx/${txHash}',
114
+ account_page: 'https://explorer.whenmoonwhenlambo.money/arkeo/account/${accountAddress}'
101
115
  }
102
116
  ],
103
117
  keywords: [
@@ -938,6 +938,51 @@ const info = {
938
938
  path: '0'
939
939
  }
940
940
  }]
941
+ },
942
+ {
943
+ description: 'MilkyWay\'s liquid staked BABY',
944
+ denom_units: [{
945
+ denom: 'ibc/CD7ECDBBA538632B45915ED67C4932DDB318818C00C21489D3774E560E87E420',
946
+ exponent: 0
947
+ }, {
948
+ denom: 'milkBABY',
949
+ exponent: 6
950
+ }],
951
+ type_asset: 'ics20',
952
+ base: 'ibc/CD7ECDBBA538632B45915ED67C4932DDB318818C00C21489D3774E560E87E420',
953
+ name: 'milkBABY',
954
+ display: 'milkBABY',
955
+ symbol: 'milkBABY',
956
+ traces: [{
957
+ type: 'liquid-stake',
958
+ counterparty: {
959
+ chain_name: 'babylon',
960
+ base_denom: 'ubbn'
961
+ },
962
+ provider: 'MilkyWay'
963
+ }, {
964
+ type: 'ibc',
965
+ counterparty: {
966
+ chain_name: 'milkyway',
967
+ base_denom: 'factory/milk1qg5ega6dykkxc307y25pecuufrjkxkaggkkxh7nad0vhyhtuhw3ssgcye4/umilkBBN',
968
+ channel_id: 'channel-4'
969
+ },
970
+ chain: {
971
+ channel_id: 'channel-4',
972
+ path: 'transfer/channel-4/factory/milk1qg5ega6dykkxc307y25pecuufrjkxkaggkkxh7nad0vhyhtuhw3ssgcye4/umilkBBN'
973
+ }
974
+ }],
975
+ logo_URIs: {
976
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkbaby.png',
977
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkbaby.svg'
978
+ },
979
+ images: [{
980
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkbaby.png',
981
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/milkyway/images/milkbaby.svg',
982
+ theme: {
983
+ primary_color_hex: '#d18dfc'
984
+ }
985
+ }]
941
986
  }
942
987
  ]
943
988
  };