chain-registry 1.69.25 → 1.69.27

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 (39) hide show
  1. package/esm/mainnet/akash/chain.js +12 -0
  2. package/esm/mainnet/axelar/assets.js +1 -0
  3. package/esm/mainnet/cosmoshub/ibc.js +30 -0
  4. package/esm/mainnet/dungeon/ibc.js +60 -0
  5. package/esm/mainnet/dungeon/index.js +2 -0
  6. package/esm/mainnet/ibc.js +2 -0
  7. package/esm/mainnet/neutaro/chain.js +10 -4
  8. package/esm/mainnet/oraichain/assets.js +84 -0
  9. package/esm/mainnet/osmosis/ibc.js +30 -0
  10. package/esm/mainnet/ton/assets.js +30 -0
  11. package/esm/testnet/assets.js +2 -0
  12. package/esm/testnet/chains.js +2 -0
  13. package/esm/testnet/named.js +1 -0
  14. package/esm/testnet/xplatestnet/assets.js +32 -0
  15. package/esm/testnet/xplatestnet/chain.js +65 -0
  16. package/esm/testnet/xplatestnet/index.js +4 -0
  17. package/mainnet/akash/chain.js +12 -0
  18. package/mainnet/axelar/assets.js +1 -0
  19. package/mainnet/cosmoshub/ibc.js +30 -0
  20. package/mainnet/dungeon/ibc.d.ts +3 -0
  21. package/mainnet/dungeon/ibc.js +62 -0
  22. package/mainnet/dungeon/index.d.ts +1 -0
  23. package/mainnet/dungeon/index.js +3 -1
  24. package/mainnet/ibc.js +2 -0
  25. package/mainnet/neutaro/chain.js +10 -4
  26. package/mainnet/oraichain/assets.js +84 -0
  27. package/mainnet/osmosis/ibc.js +30 -0
  28. package/mainnet/ton/assets.js +30 -0
  29. package/package.json +4 -4
  30. package/testnet/assets.js +2 -0
  31. package/testnet/chains.js +2 -0
  32. package/testnet/named.d.ts +1 -0
  33. package/testnet/named.js +2 -1
  34. package/testnet/xplatestnet/assets.d.ts +3 -0
  35. package/testnet/xplatestnet/assets.js +34 -0
  36. package/testnet/xplatestnet/chain.d.ts +3 -0
  37. package/testnet/xplatestnet/chain.js +67 -0
  38. package/testnet/xplatestnet/index.d.ts +2 -0
  39. package/testnet/xplatestnet/index.js +10 -0
@@ -80,6 +80,10 @@ const info = {
80
80
  {
81
81
  address: 'https://akash.declab.pro:26601',
82
82
  provider: 'Decloud Nodes Lab'
83
+ },
84
+ {
85
+ address: 'https://rpc.akash.bronbro.io:443',
86
+ provider: 'Bro_n_Bro'
83
87
  }
84
88
  ],
85
89
  rest: [
@@ -150,6 +154,10 @@ const info = {
150
154
  {
151
155
  address: 'https://akash.declab.pro:443',
152
156
  provider: 'Decloud Nodes Lab'
157
+ },
158
+ {
159
+ address: 'https://lcd.akash.bronbro.io:443',
160
+ provider: 'Bro_n_Bro'
153
161
  }
154
162
  ],
155
163
  grpc: [
@@ -192,6 +200,10 @@ const info = {
192
200
  {
193
201
  address: 'grpc-akash.whispernode.com:443',
194
202
  provider: 'WhisperNode 🤐'
203
+ },
204
+ {
205
+ address: 'https://grpc.akash.bronbro.io:443',
206
+ provider: 'Bro_n_Bro'
195
207
  }
196
208
  ]
197
209
  },
@@ -205,6 +205,7 @@ const info = {
205
205
  primary_color_hex: '#3a3444'
206
206
  }
207
207
  }],
208
+ coingecko_id: 'axlweth',
208
209
  type_asset: 'sdk.coin'
209
210
  },
210
211
  {
@@ -488,6 +488,36 @@ const info = [
488
488
  }
489
489
  }]
490
490
  },
491
+ {
492
+ $schema: '../ibc_data.schema.json',
493
+ chain_1: {
494
+ chain_name: 'cosmoshub',
495
+ client_id: '07-tendermint-4',
496
+ connection_id: 'connection-1057'
497
+ },
498
+ chain_2: {
499
+ chain_name: 'dungeon',
500
+ client_id: '07-tendermint-4',
501
+ connection_id: 'connection-9'
502
+ },
503
+ channels: [{
504
+ chain_1: {
505
+ channel_id: 'channel-1213',
506
+ port_id: 'transfer'
507
+ },
508
+ chain_2: {
509
+ channel_id: 'channel-3',
510
+ port_id: 'transfer'
511
+ },
512
+ ordering: 'unordered',
513
+ version: 'ics20-1',
514
+ tags: {
515
+ status: 'live',
516
+ preferred: true,
517
+ dex: 'osmosis'
518
+ }
519
+ }]
520
+ },
491
521
  {
492
522
  $schema: '../ibc_data.schema.json',
493
523
  chain_1: {
@@ -0,0 +1,60 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain_1: {
4
+ chain_name: 'cosmoshub',
5
+ client_id: '07-tendermint-4',
6
+ connection_id: 'connection-1057'
7
+ },
8
+ chain_2: {
9
+ chain_name: 'dungeon',
10
+ client_id: '07-tendermint-4',
11
+ connection_id: 'connection-9'
12
+ },
13
+ channels: [{
14
+ chain_1: {
15
+ channel_id: 'channel-1213',
16
+ port_id: 'transfer'
17
+ },
18
+ chain_2: {
19
+ channel_id: 'channel-3',
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
+ $schema: '../ibc_data.schema.json',
32
+ chain_1: {
33
+ chain_name: 'dungeon',
34
+ client_id: '07-tendermint-3',
35
+ connection_id: 'connection-8'
36
+ },
37
+ chain_2: {
38
+ chain_name: 'osmosis',
39
+ client_id: '07-tendermint-3',
40
+ connection_id: 'connection-2798'
41
+ },
42
+ channels: [{
43
+ chain_1: {
44
+ channel_id: 'channel-2',
45
+ port_id: 'transfer'
46
+ },
47
+ chain_2: {
48
+ channel_id: 'channel-85791',
49
+ port_id: 'transfer'
50
+ },
51
+ ordering: 'unordered',
52
+ version: 'ics20-1',
53
+ tags: {
54
+ status: 'live',
55
+ preferred: true,
56
+ dex: 'osmosis'
57
+ }
58
+ }]
59
+ }];
60
+ 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;
@@ -40,6 +40,7 @@ import * as _desmos from './desmos';
40
40
  import * as _dhealth from './dhealth';
41
41
  import * as _dig from './dig';
42
42
  import * as _doravota from './doravota';
43
+ import * as _dungeon from './dungeon';
43
44
  import * as _dydx from './dydx';
44
45
  import * as _dymension from './dymension';
45
46
  import * as _dyson from './dyson';
@@ -191,6 +192,7 @@ const ibc = [
191
192
  ..._dhealth.ibc,
192
193
  ..._dig.ibc,
193
194
  ..._doravota.ibc,
195
+ ..._dungeon.ibc,
194
196
  ..._dydx.ibc,
195
197
  ..._dymension.ibc,
196
198
  ..._dyson.ibc,
@@ -34,18 +34,24 @@ const info = {
34
34
  description: 'The Blockchain that is Pioneering Ethical Standards, Values, and Transparency in cross chain Blockchain Technology to drive innovation',
35
35
  apis: {
36
36
  rpc: [{
37
- address: 'https://rpc2.neutaro.tech:443',
37
+ address: 'https://rpc2.neutaro.io:443',
38
38
  provider: 'Neutaro'
39
39
  }, {
40
- address: 'https://rpc3.neutaro.tech:26657',
40
+ address: 'https://rpc3.neutaro.io:443',
41
41
  provider: 'Neutaro'
42
42
  }],
43
43
  rest: [{
44
- address: 'https://api2.neutaro.tech:443',
44
+ address: 'https://api2.neutaro.io:443',
45
+ provider: 'Neutaro'
46
+ }, {
47
+ address: 'https://api3.neutaro.io:443',
45
48
  provider: 'Neutaro'
46
49
  }],
47
50
  grpc: [{
48
- address: 'https://grpc2.neutaro.tech:443',
51
+ address: 'https://grpc2.neutaro.io:443',
52
+ provider: 'Neutaro'
53
+ }, {
54
+ address: 'https://grpc3.neutaro.io:443',
49
55
  provider: 'Neutaro'
50
56
  }]
51
57
  },
@@ -278,6 +278,7 @@ const info = {
278
278
  address: 'orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge',
279
279
  base: 'cw20:orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge',
280
280
  name: 'Oraix',
281
+ coingecko_id: 'oraidex',
281
282
  display: 'oraix',
282
283
  symbol: 'ORAIX',
283
284
  images: [{
@@ -395,6 +396,7 @@ const info = {
395
396
  base: 'cw20:orai1065qe48g7aemju045aeyprflytemx7kecxkf5m7u5h5mphd0qlcs47pclp',
396
397
  name: 'Scorai',
397
398
  display: 'scorai',
399
+ coingecko_id: 'scorai',
398
400
  symbol: 'SCORAI',
399
401
  images: [{
400
402
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scorai.png',
@@ -453,6 +455,7 @@ const info = {
453
455
  name: 'scATOM',
454
456
  display: 'scatom',
455
457
  symbol: 'scATOM',
458
+ coingecko_id: 'scatom',
456
459
  images: [{
457
460
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scatom.png',
458
461
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scatom.svg'
@@ -565,6 +568,7 @@ const info = {
565
568
  name: 'Och',
566
569
  display: 'och',
567
570
  symbol: 'OCH',
571
+ coingecko_id: 'och',
568
572
  images: [{
569
573
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.png',
570
574
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.svg'
@@ -601,6 +605,7 @@ const info = {
601
605
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png',
602
606
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg'
603
607
  },
608
+ type_asset: 'sdk.coin',
604
609
  images: [{
605
610
  image_sync: {
606
611
  chain_name: 'ton',
@@ -613,8 +618,87 @@ const info = {
613
618
  primary_color_hex: '#0088CC',
614
619
  background_color_hex: '#0088CC'
615
620
  }
621
+ }]
622
+ },
623
+ {
624
+ description: 'The PEPE native token of Oraichain',
625
+ denom_units: [{
626
+ denom: 'factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE',
627
+ exponent: 0
628
+ }, {
629
+ denom: 'pepe',
630
+ exponent: 6
631
+ }],
632
+ traces: [{
633
+ type: 'bridge',
634
+ counterparty: {
635
+ chain_name: 'ethereum',
636
+ base_denom: '0x6982508145454Ce325dDbE47a25d4ec3d2311933'
637
+ },
638
+ provider: 'Oraichain Labs OBridge'
639
+ }],
640
+ base: 'factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE',
641
+ name: 'Pepe',
642
+ display: 'pepe',
643
+ symbol: 'PEPE',
644
+ logo_URIs: {
645
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png',
646
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg'
647
+ },
648
+ images: [{
649
+ image_sync: {
650
+ chain_name: 'ethereum',
651
+ base_denom: '0x6982508145454Ce325dDbE47a25d4ec3d2311933'
652
+ },
653
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png',
654
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg',
655
+ theme: {
656
+ primary_color_hex: '#cc3233'
657
+ }
616
658
  }],
659
+ keywords: ['meme'],
617
660
  type_asset: 'sdk.coin'
661
+ },
662
+ {
663
+ description: 'The Hamster Kombat native token of Oraichain',
664
+ denom_units: [{
665
+ denom: 'factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR',
666
+ exponent: 0,
667
+ aliases: ['nanohmstr']
668
+ }, {
669
+ denom: 'hmstr',
670
+ exponent: 9
671
+ }],
672
+ traces: [{
673
+ type: 'bridge',
674
+ counterparty: {
675
+ chain_name: 'ton',
676
+ base_denom: 'nanohmstr'
677
+ },
678
+ provider: 'Oraichain Labs Ton Bridge'
679
+ }],
680
+ base: 'factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR',
681
+ name: 'HMSTR',
682
+ display: 'hmstr',
683
+ symbol: 'HMSTR',
684
+ logo_URIs: {
685
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg',
686
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png'
687
+ },
688
+ type_asset: 'sdk.coin',
689
+ images: [{
690
+ image_sync: {
691
+ chain_name: 'ton',
692
+ base_denom: 'nanohmstr'
693
+ },
694
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg',
695
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png',
696
+ theme: {
697
+ primary_color_hex: '#f4941c',
698
+ background_color_hex: '#f4941c',
699
+ circle: true
700
+ }
701
+ }]
618
702
  }
619
703
  ]
620
704
  };
@@ -1206,6 +1206,36 @@ const info = [
1206
1206
  }
1207
1207
  }]
1208
1208
  },
1209
+ {
1210
+ $schema: '../ibc_data.schema.json',
1211
+ chain_1: {
1212
+ chain_name: 'dungeon',
1213
+ client_id: '07-tendermint-3',
1214
+ connection_id: 'connection-8'
1215
+ },
1216
+ chain_2: {
1217
+ chain_name: 'osmosis',
1218
+ client_id: '07-tendermint-3',
1219
+ connection_id: 'connection-2798'
1220
+ },
1221
+ channels: [{
1222
+ chain_1: {
1223
+ channel_id: 'channel-2',
1224
+ port_id: 'transfer'
1225
+ },
1226
+ chain_2: {
1227
+ channel_id: 'channel-85791',
1228
+ port_id: 'transfer'
1229
+ },
1230
+ ordering: 'unordered',
1231
+ version: 'ics20-1',
1232
+ tags: {
1233
+ status: 'live',
1234
+ preferred: true,
1235
+ dex: 'osmosis'
1236
+ }
1237
+ }]
1238
+ },
1209
1239
  {
1210
1240
  $schema: '../ibc_data.schema.json',
1211
1241
  chain_1: {
@@ -31,6 +31,36 @@ const info = {
31
31
  website: 'https://ton.tg/',
32
32
  twitter: 'https://x.com/ton_blockchain'
33
33
  }
34
+ }, {
35
+ description: 'The Hamster Kombat ($HMSTR) is the cryptocurrency of the TON (The Open Network) blockchain.',
36
+ extended_description: 'HMSTR (The Hamster Kombat) is a cryptocurrency-based clicker game that has garnered attention for its engaging gameplay and integration with the digital currency ecosystem.',
37
+ denom_units: [{
38
+ denom: 'nanohmstr',
39
+ exponent: 0,
40
+ aliases: ['nanoHmstr']
41
+ }, {
42
+ denom: 'hmstr',
43
+ exponent: 9
44
+ }],
45
+ type_asset: 'unknown',
46
+ base: 'nanohmstr',
47
+ name: 'Hamster',
48
+ display: 'hmstr',
49
+ symbol: 'HMSTR',
50
+ coingecko_id: 'hamster-kombat',
51
+ images: [{
52
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg',
53
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png',
54
+ theme: {
55
+ circle: true,
56
+ primary_color_hex: '#0088CC',
57
+ background_color_hex: '#0088CC'
58
+ }
59
+ }],
60
+ socials: {
61
+ website: 'https://hamsterkombatgame.io/',
62
+ twitter: 'https://x.com/hamster_kombat'
63
+ }
34
64
  }]
35
65
  };
36
66
  export default info;
@@ -118,6 +118,7 @@ import * as _vincechaintestnet from './vincechaintestnet';
118
118
  import * as _wardenprotocoltestnet from './wardenprotocoltestnet';
119
119
  import * as _wavehashtestnet from './wavehashtestnet';
120
120
  import * as _xiontestnet from './xiontestnet';
121
+ import * as _xplatestnet from './xplatestnet';
121
122
  import * as _zetachaintestnet from './zetachaintestnet';
122
123
  const assets = [
123
124
  _airchainstestnet.assets,
@@ -240,6 +241,7 @@ const assets = [
240
241
  _wardenprotocoltestnet.assets,
241
242
  _wavehashtestnet.assets,
242
243
  _xiontestnet.assets,
244
+ _xplatestnet.assets,
243
245
  _zetachaintestnet.assets
244
246
  ];
245
247
  export default assets;
@@ -118,6 +118,7 @@ import * as _vincechaintestnet from './vincechaintestnet';
118
118
  import * as _wardenprotocoltestnet from './wardenprotocoltestnet';
119
119
  import * as _wavehashtestnet from './wavehashtestnet';
120
120
  import * as _xiontestnet from './xiontestnet';
121
+ import * as _xplatestnet from './xplatestnet';
121
122
  import * as _zetachaintestnet from './zetachaintestnet';
122
123
  const chains = [
123
124
  _airchainstestnet.chain,
@@ -240,6 +241,7 @@ const chains = [
240
241
  _wardenprotocoltestnet.chain,
241
242
  _wavehashtestnet.chain,
242
243
  _xiontestnet.chain,
244
+ _xplatestnet.chain,
243
245
  _zetachaintestnet.chain
244
246
  ];
245
247
  export default chains;
@@ -118,4 +118,5 @@ export * as vincechaintestnet from './vincechaintestnet';
118
118
  export * as wardenprotocoltestnet from './wardenprotocoltestnet';
119
119
  export * as wavehashtestnet from './wavehashtestnet';
120
120
  export * as xiontestnet from './xiontestnet';
121
+ export * as xplatestnet from './xplatestnet';
121
122
  export * as zetachaintestnet from './zetachaintestnet';
@@ -0,0 +1,32 @@
1
+ const info = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chain_name: 'xplatestnet',
4
+ assets: [{
5
+ description: 'The native staking token of XPLA.',
6
+ denom_units: [{
7
+ denom: 'axpla',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'xpla',
11
+ exponent: 18
12
+ }],
13
+ base: 'axpla',
14
+ name: 'Xpla',
15
+ display: 'xpla',
16
+ symbol: 'XPLA',
17
+ logo_URIs: {
18
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png',
19
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg'
20
+ },
21
+ coingecko_id: 'xpla',
22
+ images: [{
23
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png',
24
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg',
25
+ theme: {
26
+ primary_color_hex: '#04b4fc'
27
+ }
28
+ }],
29
+ type_asset: 'sdk.coin'
30
+ }]
31
+ };
32
+ export default info;
@@ -0,0 +1,65 @@
1
+ const info = {
2
+ $schema: '../../chain.schema.json',
3
+ chain_name: 'xplatestnet',
4
+ status: 'live',
5
+ website: 'https://xpla.io',
6
+ network_type: 'testnet',
7
+ pretty_name: 'XPLA',
8
+ chain_type: 'cosmos',
9
+ chain_id: 'cube_47-5',
10
+ bech32_prefix: 'xpla',
11
+ daemon_name: 'xplad',
12
+ node_home: '$HOME/.xpla',
13
+ key_algos: ['ethsecp256k1'],
14
+ slip44: 60,
15
+ fees: {
16
+ fee_tokens: [{
17
+ denom: 'axpla',
18
+ fixed_min_gas_price: 850000000000,
19
+ low_gas_price: 850000000000,
20
+ average_gas_price: 1147500000000,
21
+ high_gas_price: 1487500000000
22
+ }]
23
+ },
24
+ staking: {
25
+ staking_tokens: [{
26
+ denom: 'axpla'
27
+ }]
28
+ },
29
+ codebase: {},
30
+ logo_URIs: {
31
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png',
32
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg'
33
+ },
34
+ apis: {
35
+ rpc: [{
36
+ address: 'https://cube-rpc.xpla.dev',
37
+ provider: 'Holdings'
38
+ }],
39
+ rest: [{
40
+ address: 'https://cube-lcd.xpla.dev',
41
+ provider: 'Holdings'
42
+ }],
43
+ "evm-http-jsonrpc": [{
44
+ address: 'https://cube-evm-rpc.xpla.dev',
45
+ provider: 'Holdings'
46
+ }]
47
+ },
48
+ explorers: [{
49
+ kind: 'explorer.xpla',
50
+ url: 'https://explorer.xpla.io/testnet',
51
+ tx_page: 'https://explorer.xpla.io/testnet/mainnet/tx/${txHash}'
52
+ }, {
53
+ kind: 'finder',
54
+ url: 'https://finder.xpla.io/testnet',
55
+ tx_page: 'https://finder.xpla.io/testnet/tx/${txHash}'
56
+ }],
57
+ images: [{
58
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png',
59
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg',
60
+ theme: {
61
+ primary_color_hex: '#04b4fc'
62
+ }
63
+ }]
64
+ };
65
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ export const assets = _assets;
4
+ export const chain = _chain;
@@ -82,6 +82,10 @@ const info = {
82
82
  {
83
83
  address: 'https://akash.declab.pro:26601',
84
84
  provider: 'Decloud Nodes Lab'
85
+ },
86
+ {
87
+ address: 'https://rpc.akash.bronbro.io:443',
88
+ provider: 'Bro_n_Bro'
85
89
  }
86
90
  ],
87
91
  rest: [
@@ -152,6 +156,10 @@ const info = {
152
156
  {
153
157
  address: 'https://akash.declab.pro:443',
154
158
  provider: 'Decloud Nodes Lab'
159
+ },
160
+ {
161
+ address: 'https://lcd.akash.bronbro.io:443',
162
+ provider: 'Bro_n_Bro'
155
163
  }
156
164
  ],
157
165
  grpc: [
@@ -194,6 +202,10 @@ const info = {
194
202
  {
195
203
  address: 'grpc-akash.whispernode.com:443',
196
204
  provider: 'WhisperNode 🤐'
205
+ },
206
+ {
207
+ address: 'https://grpc.akash.bronbro.io:443',
208
+ provider: 'Bro_n_Bro'
197
209
  }
198
210
  ]
199
211
  },
@@ -207,6 +207,7 @@ const info = {
207
207
  primary_color_hex: '#3a3444'
208
208
  }
209
209
  }],
210
+ coingecko_id: 'axlweth',
210
211
  type_asset: 'sdk.coin'
211
212
  },
212
213
  {
@@ -490,6 +490,36 @@ const info = [
490
490
  }
491
491
  }]
492
492
  },
493
+ {
494
+ $schema: '../ibc_data.schema.json',
495
+ chain_1: {
496
+ chain_name: 'cosmoshub',
497
+ client_id: '07-tendermint-4',
498
+ connection_id: 'connection-1057'
499
+ },
500
+ chain_2: {
501
+ chain_name: 'dungeon',
502
+ client_id: '07-tendermint-4',
503
+ connection_id: 'connection-9'
504
+ },
505
+ channels: [{
506
+ chain_1: {
507
+ channel_id: 'channel-1213',
508
+ port_id: 'transfer'
509
+ },
510
+ chain_2: {
511
+ channel_id: 'channel-3',
512
+ port_id: 'transfer'
513
+ },
514
+ ordering: 'unordered',
515
+ version: 'ics20-1',
516
+ tags: {
517
+ status: 'live',
518
+ preferred: true,
519
+ dex: 'osmosis'
520
+ }
521
+ }]
522
+ },
493
523
  {
494
524
  $schema: '../ibc_data.schema.json',
495
525
  chain_1: {
@@ -0,0 +1,3 @@
1
+ import { IBCInfo } from '@chain-registry/types';
2
+ declare const info: IBCInfo[];
3
+ export default info;
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../ibc_data.schema.json',
5
+ chain_1: {
6
+ chain_name: 'cosmoshub',
7
+ client_id: '07-tendermint-4',
8
+ connection_id: 'connection-1057'
9
+ },
10
+ chain_2: {
11
+ chain_name: 'dungeon',
12
+ client_id: '07-tendermint-4',
13
+ connection_id: 'connection-9'
14
+ },
15
+ channels: [{
16
+ chain_1: {
17
+ channel_id: 'channel-1213',
18
+ port_id: 'transfer'
19
+ },
20
+ chain_2: {
21
+ channel_id: 'channel-3',
22
+ port_id: 'transfer'
23
+ },
24
+ ordering: 'unordered',
25
+ version: 'ics20-1',
26
+ tags: {
27
+ status: 'live',
28
+ preferred: true,
29
+ dex: 'osmosis'
30
+ }
31
+ }]
32
+ }, {
33
+ $schema: '../ibc_data.schema.json',
34
+ chain_1: {
35
+ chain_name: 'dungeon',
36
+ client_id: '07-tendermint-3',
37
+ connection_id: 'connection-8'
38
+ },
39
+ chain_2: {
40
+ chain_name: 'osmosis',
41
+ client_id: '07-tendermint-3',
42
+ connection_id: 'connection-2798'
43
+ },
44
+ channels: [{
45
+ chain_1: {
46
+ channel_id: 'channel-2',
47
+ port_id: 'transfer'
48
+ },
49
+ chain_2: {
50
+ channel_id: 'channel-85791',
51
+ port_id: 'transfer'
52
+ },
53
+ ordering: 'unordered',
54
+ version: 'ics20-1',
55
+ tags: {
56
+ status: 'live',
57
+ preferred: true,
58
+ dex: 'osmosis'
59
+ }
60
+ }]
61
+ }];
62
+ exports.default = info;
@@ -1,2 +1,3 @@
1
1
  export declare const assets: import("@chain-registry/types").AssetList;
2
2
  export declare const chain: import("@chain-registry/types").Chain;
3
+ export declare const ibc: import("@chain-registry/types").IBCInfo[];
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.chain = exports.assets = void 0;
6
+ exports.ibc = exports.chain = exports.assets = void 0;
7
7
  const assets_1 = __importDefault(require("./assets"));
8
8
  const chain_1 = __importDefault(require("./chain"));
9
+ const ibc_1 = __importDefault(require("./ibc"));
9
10
  exports.assets = assets_1.default;
10
11
  exports.chain = chain_1.default;
12
+ exports.ibc = ibc_1.default;
package/mainnet/ibc.js CHANGED
@@ -65,6 +65,7 @@ const _desmos = __importStar(require("./desmos"));
65
65
  const _dhealth = __importStar(require("./dhealth"));
66
66
  const _dig = __importStar(require("./dig"));
67
67
  const _doravota = __importStar(require("./doravota"));
68
+ const _dungeon = __importStar(require("./dungeon"));
68
69
  const _dydx = __importStar(require("./dydx"));
69
70
  const _dymension = __importStar(require("./dymension"));
70
71
  const _dyson = __importStar(require("./dyson"));
@@ -216,6 +217,7 @@ const ibc = [
216
217
  ..._dhealth.ibc,
217
218
  ..._dig.ibc,
218
219
  ..._doravota.ibc,
220
+ ..._dungeon.ibc,
219
221
  ..._dydx.ibc,
220
222
  ..._dymension.ibc,
221
223
  ..._dyson.ibc,
@@ -36,18 +36,24 @@ const info = {
36
36
  description: 'The Blockchain that is Pioneering Ethical Standards, Values, and Transparency in cross chain Blockchain Technology to drive innovation',
37
37
  apis: {
38
38
  rpc: [{
39
- address: 'https://rpc2.neutaro.tech:443',
39
+ address: 'https://rpc2.neutaro.io:443',
40
40
  provider: 'Neutaro'
41
41
  }, {
42
- address: 'https://rpc3.neutaro.tech:26657',
42
+ address: 'https://rpc3.neutaro.io:443',
43
43
  provider: 'Neutaro'
44
44
  }],
45
45
  rest: [{
46
- address: 'https://api2.neutaro.tech:443',
46
+ address: 'https://api2.neutaro.io:443',
47
+ provider: 'Neutaro'
48
+ }, {
49
+ address: 'https://api3.neutaro.io:443',
47
50
  provider: 'Neutaro'
48
51
  }],
49
52
  grpc: [{
50
- address: 'https://grpc2.neutaro.tech:443',
53
+ address: 'https://grpc2.neutaro.io:443',
54
+ provider: 'Neutaro'
55
+ }, {
56
+ address: 'https://grpc3.neutaro.io:443',
51
57
  provider: 'Neutaro'
52
58
  }]
53
59
  },
@@ -280,6 +280,7 @@ const info = {
280
280
  address: 'orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge',
281
281
  base: 'cw20:orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge',
282
282
  name: 'Oraix',
283
+ coingecko_id: 'oraidex',
283
284
  display: 'oraix',
284
285
  symbol: 'ORAIX',
285
286
  images: [{
@@ -397,6 +398,7 @@ const info = {
397
398
  base: 'cw20:orai1065qe48g7aemju045aeyprflytemx7kecxkf5m7u5h5mphd0qlcs47pclp',
398
399
  name: 'Scorai',
399
400
  display: 'scorai',
401
+ coingecko_id: 'scorai',
400
402
  symbol: 'SCORAI',
401
403
  images: [{
402
404
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scorai.png',
@@ -455,6 +457,7 @@ const info = {
455
457
  name: 'scATOM',
456
458
  display: 'scatom',
457
459
  symbol: 'scATOM',
460
+ coingecko_id: 'scatom',
458
461
  images: [{
459
462
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scatom.png',
460
463
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/scatom.svg'
@@ -567,6 +570,7 @@ const info = {
567
570
  name: 'Och',
568
571
  display: 'och',
569
572
  symbol: 'OCH',
573
+ coingecko_id: 'och',
570
574
  images: [{
571
575
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.png',
572
576
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/och.svg'
@@ -603,6 +607,7 @@ const info = {
603
607
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png',
604
608
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg'
605
609
  },
610
+ type_asset: 'sdk.coin',
606
611
  images: [{
607
612
  image_sync: {
608
613
  chain_name: 'ton',
@@ -615,8 +620,87 @@ const info = {
615
620
  primary_color_hex: '#0088CC',
616
621
  background_color_hex: '#0088CC'
617
622
  }
623
+ }]
624
+ },
625
+ {
626
+ description: 'The PEPE native token of Oraichain',
627
+ denom_units: [{
628
+ denom: 'factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE',
629
+ exponent: 0
630
+ }, {
631
+ denom: 'pepe',
632
+ exponent: 6
633
+ }],
634
+ traces: [{
635
+ type: 'bridge',
636
+ counterparty: {
637
+ chain_name: 'ethereum',
638
+ base_denom: '0x6982508145454Ce325dDbE47a25d4ec3d2311933'
639
+ },
640
+ provider: 'Oraichain Labs OBridge'
641
+ }],
642
+ base: 'factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE',
643
+ name: 'Pepe',
644
+ display: 'pepe',
645
+ symbol: 'PEPE',
646
+ logo_URIs: {
647
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png',
648
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg'
649
+ },
650
+ images: [{
651
+ image_sync: {
652
+ chain_name: 'ethereum',
653
+ base_denom: '0x6982508145454Ce325dDbE47a25d4ec3d2311933'
654
+ },
655
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png',
656
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg',
657
+ theme: {
658
+ primary_color_hex: '#cc3233'
659
+ }
618
660
  }],
661
+ keywords: ['meme'],
619
662
  type_asset: 'sdk.coin'
663
+ },
664
+ {
665
+ description: 'The Hamster Kombat native token of Oraichain',
666
+ denom_units: [{
667
+ denom: 'factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR',
668
+ exponent: 0,
669
+ aliases: ['nanohmstr']
670
+ }, {
671
+ denom: 'hmstr',
672
+ exponent: 9
673
+ }],
674
+ traces: [{
675
+ type: 'bridge',
676
+ counterparty: {
677
+ chain_name: 'ton',
678
+ base_denom: 'nanohmstr'
679
+ },
680
+ provider: 'Oraichain Labs Ton Bridge'
681
+ }],
682
+ base: 'factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR',
683
+ name: 'HMSTR',
684
+ display: 'hmstr',
685
+ symbol: 'HMSTR',
686
+ logo_URIs: {
687
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg',
688
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png'
689
+ },
690
+ type_asset: 'sdk.coin',
691
+ images: [{
692
+ image_sync: {
693
+ chain_name: 'ton',
694
+ base_denom: 'nanohmstr'
695
+ },
696
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg',
697
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png',
698
+ theme: {
699
+ primary_color_hex: '#f4941c',
700
+ background_color_hex: '#f4941c',
701
+ circle: true
702
+ }
703
+ }]
620
704
  }
621
705
  ]
622
706
  };
@@ -1208,6 +1208,36 @@ const info = [
1208
1208
  }
1209
1209
  }]
1210
1210
  },
1211
+ {
1212
+ $schema: '../ibc_data.schema.json',
1213
+ chain_1: {
1214
+ chain_name: 'dungeon',
1215
+ client_id: '07-tendermint-3',
1216
+ connection_id: 'connection-8'
1217
+ },
1218
+ chain_2: {
1219
+ chain_name: 'osmosis',
1220
+ client_id: '07-tendermint-3',
1221
+ connection_id: 'connection-2798'
1222
+ },
1223
+ channels: [{
1224
+ chain_1: {
1225
+ channel_id: 'channel-2',
1226
+ port_id: 'transfer'
1227
+ },
1228
+ chain_2: {
1229
+ channel_id: 'channel-85791',
1230
+ port_id: 'transfer'
1231
+ },
1232
+ ordering: 'unordered',
1233
+ version: 'ics20-1',
1234
+ tags: {
1235
+ status: 'live',
1236
+ preferred: true,
1237
+ dex: 'osmosis'
1238
+ }
1239
+ }]
1240
+ },
1211
1241
  {
1212
1242
  $schema: '../ibc_data.schema.json',
1213
1243
  chain_1: {
@@ -33,6 +33,36 @@ const info = {
33
33
  website: 'https://ton.tg/',
34
34
  twitter: 'https://x.com/ton_blockchain'
35
35
  }
36
+ }, {
37
+ description: 'The Hamster Kombat ($HMSTR) is the cryptocurrency of the TON (The Open Network) blockchain.',
38
+ extended_description: 'HMSTR (The Hamster Kombat) is a cryptocurrency-based clicker game that has garnered attention for its engaging gameplay and integration with the digital currency ecosystem.',
39
+ denom_units: [{
40
+ denom: 'nanohmstr',
41
+ exponent: 0,
42
+ aliases: ['nanoHmstr']
43
+ }, {
44
+ denom: 'hmstr',
45
+ exponent: 9
46
+ }],
47
+ type_asset: 'unknown',
48
+ base: 'nanohmstr',
49
+ name: 'Hamster',
50
+ display: 'hmstr',
51
+ symbol: 'HMSTR',
52
+ coingecko_id: 'hamster-kombat',
53
+ images: [{
54
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg',
55
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png',
56
+ theme: {
57
+ circle: true,
58
+ primary_color_hex: '#0088CC',
59
+ background_color_hex: '#0088CC'
60
+ }
61
+ }],
62
+ socials: {
63
+ website: 'https://hamsterkombatgame.io/',
64
+ twitter: 'https://x.com/hamster_kombat'
65
+ }
36
66
  }]
37
67
  };
38
68
  exports.default = info;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "1.69.25",
3
+ "version": "1.69.27",
4
4
  "description": "Cosmos chain registry ⚛️",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme",
@@ -29,11 +29,11 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "devDependencies": {
32
- "@chain-registry/utils": "^1.51.7",
32
+ "@chain-registry/utils": "^1.51.9",
33
33
  "deepmerge": "^4.2.2"
34
34
  },
35
35
  "dependencies": {
36
- "@chain-registry/types": "^0.50.7"
36
+ "@chain-registry/types": "^0.50.9"
37
37
  },
38
38
  "keywords": [
39
39
  "chain-registry",
@@ -43,5 +43,5 @@
43
43
  "interchain",
44
44
  "tokens"
45
45
  ],
46
- "gitHead": "b36875604920628d1b3b8b54c4070a927b4a1742"
46
+ "gitHead": "2a511bf77a2b27543600fbc69529e5ac77dd2855"
47
47
  }
package/testnet/assets.js CHANGED
@@ -143,6 +143,7 @@ const _vincechaintestnet = __importStar(require("./vincechaintestnet"));
143
143
  const _wardenprotocoltestnet = __importStar(require("./wardenprotocoltestnet"));
144
144
  const _wavehashtestnet = __importStar(require("./wavehashtestnet"));
145
145
  const _xiontestnet = __importStar(require("./xiontestnet"));
146
+ const _xplatestnet = __importStar(require("./xplatestnet"));
146
147
  const _zetachaintestnet = __importStar(require("./zetachaintestnet"));
147
148
  const assets = [
148
149
  _airchainstestnet.assets,
@@ -265,6 +266,7 @@ const assets = [
265
266
  _wardenprotocoltestnet.assets,
266
267
  _wavehashtestnet.assets,
267
268
  _xiontestnet.assets,
269
+ _xplatestnet.assets,
268
270
  _zetachaintestnet.assets
269
271
  ];
270
272
  exports.default = assets;
package/testnet/chains.js CHANGED
@@ -143,6 +143,7 @@ const _vincechaintestnet = __importStar(require("./vincechaintestnet"));
143
143
  const _wardenprotocoltestnet = __importStar(require("./wardenprotocoltestnet"));
144
144
  const _wavehashtestnet = __importStar(require("./wavehashtestnet"));
145
145
  const _xiontestnet = __importStar(require("./xiontestnet"));
146
+ const _xplatestnet = __importStar(require("./xplatestnet"));
146
147
  const _zetachaintestnet = __importStar(require("./zetachaintestnet"));
147
148
  const chains = [
148
149
  _airchainstestnet.chain,
@@ -265,6 +266,7 @@ const chains = [
265
266
  _wardenprotocoltestnet.chain,
266
267
  _wavehashtestnet.chain,
267
268
  _xiontestnet.chain,
269
+ _xplatestnet.chain,
268
270
  _zetachaintestnet.chain
269
271
  ];
270
272
  exports.default = chains;
@@ -118,4 +118,5 @@ export * as vincechaintestnet from './vincechaintestnet';
118
118
  export * as wardenprotocoltestnet from './wardenprotocoltestnet';
119
119
  export * as wavehashtestnet from './wavehashtestnet';
120
120
  export * as xiontestnet from './xiontestnet';
121
+ export * as xplatestnet from './xplatestnet';
121
122
  export * as zetachaintestnet from './zetachaintestnet';
package/testnet/named.js CHANGED
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.jackaltestnet2 = exports.jackaltestnet = exports.injectivetestnet = exports.imversedtestnet = exports.impacthubtestnet = exports.hypersigntestnet = exports.humanstestnet = exports.hedgetestnet = exports.gitopiatestnet = exports.galacticatestnet = exports.finschiatestnet = exports.fiammatestnet = exports.fetchhubtestnet = exports.evmostestnet = exports.epixtestnet = exports.entrypointtestnet = exports.empowertestnet = exports.empetestnet = exports.elystestnet = exports.dydxtestnet = exports.doravotatestnet2 = exports.doravotatestnet = exports.dhealthtestnet = exports.desmostestnet = exports.deardogetestnet = exports.cudostestnet = exports.cosstestnet = exports.cosmwasmtestnet = exports.cosmosicsprovidertestnet = exports.cosmoshubtestnet = exports.coreumtestnet = exports.coolcattestnet = exports.composabletestnet = exports.chimbatestnet = exports.cheqdtestnet = exports.chain4energytestnet = exports.celestiatestnet3 = exports.celestiatestnet = exports.cascadiatestnet = exports.blockxtestnet = exports.bitcannadevnet = exports.babylontestnet1 = exports.babylontestnet = exports.axelartestnet = exports.auratestnet = exports.artelatestnet = exports.arkeonetworktestnet = exports.archwaytestnet = exports.akashtestnet = exports.airchainstestnet = void 0;
27
27
  exports.stargazetestnet = exports.sourcetestnet = exports.soarchaintestnet = exports.sixtestnet = exports.shentutestnet = exports.sgetestnet4 = exports.sgetestnet = exports.selfchaindevnet = exports.seitestnet2 = exports.seitestnet = exports.secretnetworktestnet2 = exports.secretnetworktestnet = exports.sagatestnet = exports.qwoyntestnet = exports.quicksilvertestnet = exports.quasartestnet = exports.pryzmtestnet = exports.planqtestnet = exports.persistencetestnet2 = exports.persistencetestnet = exports.permtestnet = exports.osmosistestnet4 = exports.osmosistestnet = exports.okp4testnet = exports.nyxtestnet = exports.nomictestnet = exports.nolustestnet = exports.noistestnet = exports.nobletestnet = exports.nilliontestnet = exports.nibirutestnet3 = exports.nibirutestnet2 = exports.nibirutestnet = exports.neutrontestnet = exports.neuratestnet = exports.migalootestnet = exports.metanovaversetestnet = exports.marstestnet = exports.mantrachaintestnet2 = exports.mantrachaintestnet = exports.manifesttestnet = exports.lumenxtestnet = exports.likecointestnet = exports.lavatestnet1 = exports.lavatestnet = exports.kyvetestnet = exports.kujiratestnet = exports.kimanetworktestnet = exports.kichaintestnet = exports.junotestnet = void 0;
28
- exports.zetachaintestnet = exports.xiontestnet = exports.wavehashtestnet = exports.wardenprotocoltestnet = exports.vincechaintestnet = exports.upticktestnet = exports.uniontestnet = exports.unificationtestnet = exports.ulastestnet = exports.tucanatestnet = exports.titantestnet = exports.terra2testnet = exports.terpnettestnet2 = exports.terpnettestnet = exports.temporaltestnet = exports.synternettestnet = exports.symphonytestnet = exports.swisstroniktestnet = exports.sunrisetestnet = exports.stridetestnet = exports.statesettestnet = void 0;
28
+ exports.zetachaintestnet = exports.xplatestnet = exports.xiontestnet = exports.wavehashtestnet = exports.wardenprotocoltestnet = exports.vincechaintestnet = exports.upticktestnet = exports.uniontestnet = exports.unificationtestnet = exports.ulastestnet = exports.tucanatestnet = exports.titantestnet = exports.terra2testnet = exports.terpnettestnet2 = exports.terpnettestnet = exports.temporaltestnet = exports.synternettestnet = exports.symphonytestnet = exports.swisstroniktestnet = exports.sunrisetestnet = exports.stridetestnet = exports.statesettestnet = void 0;
29
29
  exports.airchainstestnet = __importStar(require("./airchainstestnet"));
30
30
  exports.akashtestnet = __importStar(require("./akashtestnet"));
31
31
  exports.archwaytestnet = __importStar(require("./archwaytestnet"));
@@ -146,4 +146,5 @@ exports.vincechaintestnet = __importStar(require("./vincechaintestnet"));
146
146
  exports.wardenprotocoltestnet = __importStar(require("./wardenprotocoltestnet"));
147
147
  exports.wavehashtestnet = __importStar(require("./wavehashtestnet"));
148
148
  exports.xiontestnet = __importStar(require("./xiontestnet"));
149
+ exports.xplatestnet = __importStar(require("./xplatestnet"));
149
150
  exports.zetachaintestnet = __importStar(require("./zetachaintestnet"));
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../assetlist.schema.json',
5
+ chain_name: 'xplatestnet',
6
+ assets: [{
7
+ description: 'The native staking token of XPLA.',
8
+ denom_units: [{
9
+ denom: 'axpla',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'xpla',
13
+ exponent: 18
14
+ }],
15
+ base: 'axpla',
16
+ name: 'Xpla',
17
+ display: 'xpla',
18
+ symbol: 'XPLA',
19
+ logo_URIs: {
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png',
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg'
22
+ },
23
+ coingecko_id: 'xpla',
24
+ images: [{
25
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png',
26
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg',
27
+ theme: {
28
+ primary_color_hex: '#04b4fc'
29
+ }
30
+ }],
31
+ type_asset: 'sdk.coin'
32
+ }]
33
+ };
34
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ import { Chain } from '@chain-registry/types';
2
+ declare const info: Chain;
3
+ export default info;
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../chain.schema.json',
5
+ chain_name: 'xplatestnet',
6
+ status: 'live',
7
+ website: 'https://xpla.io',
8
+ network_type: 'testnet',
9
+ pretty_name: 'XPLA',
10
+ chain_type: 'cosmos',
11
+ chain_id: 'cube_47-5',
12
+ bech32_prefix: 'xpla',
13
+ daemon_name: 'xplad',
14
+ node_home: '$HOME/.xpla',
15
+ key_algos: ['ethsecp256k1'],
16
+ slip44: 60,
17
+ fees: {
18
+ fee_tokens: [{
19
+ denom: 'axpla',
20
+ fixed_min_gas_price: 850000000000,
21
+ low_gas_price: 850000000000,
22
+ average_gas_price: 1147500000000,
23
+ high_gas_price: 1487500000000
24
+ }]
25
+ },
26
+ staking: {
27
+ staking_tokens: [{
28
+ denom: 'axpla'
29
+ }]
30
+ },
31
+ codebase: {},
32
+ logo_URIs: {
33
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png',
34
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg'
35
+ },
36
+ apis: {
37
+ rpc: [{
38
+ address: 'https://cube-rpc.xpla.dev',
39
+ provider: 'Holdings'
40
+ }],
41
+ rest: [{
42
+ address: 'https://cube-lcd.xpla.dev',
43
+ provider: 'Holdings'
44
+ }],
45
+ "evm-http-jsonrpc": [{
46
+ address: 'https://cube-evm-rpc.xpla.dev',
47
+ provider: 'Holdings'
48
+ }]
49
+ },
50
+ explorers: [{
51
+ kind: 'explorer.xpla',
52
+ url: 'https://explorer.xpla.io/testnet',
53
+ tx_page: 'https://explorer.xpla.io/testnet/mainnet/tx/${txHash}'
54
+ }, {
55
+ kind: 'finder',
56
+ url: 'https://finder.xpla.io/testnet',
57
+ tx_page: 'https://finder.xpla.io/testnet/tx/${txHash}'
58
+ }],
59
+ images: [{
60
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png',
61
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg',
62
+ theme: {
63
+ primary_color_hex: '#04b4fc'
64
+ }
65
+ }]
66
+ };
67
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assets: import("@chain-registry/types").AssetList;
2
+ export declare const chain: import("@chain-registry/types").Chain;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.chain = exports.assets = void 0;
7
+ const assets_1 = __importDefault(require("./assets"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assets = assets_1.default;
10
+ exports.chain = chain_1.default;