chain-registry 1.69.52 → 1.69.53

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 (40) hide show
  1. package/devnet/kyvedevnet/chain.js +5 -4
  2. package/esm/devnet/kyvedevnet/chain.js +5 -4
  3. package/esm/mainnet/assets.js +2 -0
  4. package/esm/mainnet/axelar/ibc.js +29 -0
  5. package/esm/mainnet/chains.js +2 -0
  6. package/esm/mainnet/ibc.js +2 -0
  7. package/esm/mainnet/injective/ibc.js +29 -0
  8. package/esm/mainnet/kyve/chain.js +14 -2
  9. package/esm/mainnet/named.js +1 -0
  10. package/esm/mainnet/noble/ibc.js +29 -0
  11. package/esm/mainnet/osmosis/ibc.js +29 -0
  12. package/esm/mainnet/xion/assets.js +34 -0
  13. package/esm/mainnet/xion/chain.js +100 -0
  14. package/esm/mainnet/xion/ibc.js +119 -0
  15. package/esm/mainnet/xion/index.js +6 -0
  16. package/esm/testnet/kyvetestnet/chain.js +7 -2
  17. package/esm/testnet/xiontestnet/assets.js +1 -0
  18. package/esm/testnet/xiontestnet/chain.js +22 -18
  19. package/mainnet/assets.js +2 -0
  20. package/mainnet/axelar/ibc.js +29 -0
  21. package/mainnet/chains.js +2 -0
  22. package/mainnet/ibc.js +2 -0
  23. package/mainnet/injective/ibc.js +29 -0
  24. package/mainnet/kyve/chain.js +14 -2
  25. package/mainnet/named.d.ts +1 -0
  26. package/mainnet/named.js +2 -1
  27. package/mainnet/noble/ibc.js +29 -0
  28. package/mainnet/osmosis/ibc.js +29 -0
  29. package/mainnet/xion/assets.d.ts +3 -0
  30. package/mainnet/xion/assets.js +36 -0
  31. package/mainnet/xion/chain.d.ts +3 -0
  32. package/mainnet/xion/chain.js +102 -0
  33. package/mainnet/xion/ibc.d.ts +3 -0
  34. package/mainnet/xion/ibc.js +121 -0
  35. package/mainnet/xion/index.d.ts +3 -0
  36. package/mainnet/xion/index.js +12 -0
  37. package/package.json +4 -4
  38. package/testnet/kyvetestnet/chain.js +7 -2
  39. package/testnet/xiontestnet/assets.js +1 -0
  40. package/testnet/xiontestnet/chain.js +22 -18
@@ -9,7 +9,7 @@ const info = {
9
9
  status: 'live',
10
10
  network_type: 'devnet',
11
11
  bech32_prefix: 'kyve',
12
- daemon_name: 'chaind',
12
+ daemon_name: 'kyved',
13
13
  node_home: '$HOME/.kyve',
14
14
  key_algos: ['secp256k1'],
15
15
  slip44: 118,
@@ -31,9 +31,10 @@ const info = {
31
31
  }]
32
32
  },
33
33
  explorers: [{
34
- kind: 'explorers.guru',
35
- url: 'https://kyve.explorers.guru/',
36
- tx_page: 'https://kyve.explorers.guru/transaction/${txHash}'
34
+ kind: 'KYVE Explorer',
35
+ url: 'https://explorer.kyve.network/korellia',
36
+ tx_page: 'https://explorer.kyve.network/korellia/tx/${txHash}',
37
+ account_page: 'https://explorer.kyve.network/korellia/account/${accountAddress}'
37
38
  }]
38
39
  };
39
40
  exports.default = info;
@@ -7,7 +7,7 @@ const info = {
7
7
  status: 'live',
8
8
  network_type: 'devnet',
9
9
  bech32_prefix: 'kyve',
10
- daemon_name: 'chaind',
10
+ daemon_name: 'kyved',
11
11
  node_home: '$HOME/.kyve',
12
12
  key_algos: ['secp256k1'],
13
13
  slip44: 118,
@@ -29,9 +29,10 @@ const info = {
29
29
  }]
30
30
  },
31
31
  explorers: [{
32
- kind: 'explorers.guru',
33
- url: 'https://kyve.explorers.guru/',
34
- tx_page: 'https://kyve.explorers.guru/transaction/${txHash}'
32
+ kind: 'KYVE Explorer',
33
+ url: 'https://explorer.kyve.network/korellia',
34
+ tx_page: 'https://explorer.kyve.network/korellia/tx/${txHash}',
35
+ account_page: 'https://explorer.kyve.network/korellia/account/${accountAddress}'
35
36
  }]
36
37
  };
37
38
  export default info;
@@ -181,6 +181,7 @@ import * as _unicorn from './unicorn';
181
181
  import * as _unification from './unification';
182
182
  import * as _ununifi from './ununifi';
183
183
  import * as _uptick from './uptick';
184
+ import * as _xion from './xion';
184
185
  import * as _xpla from './xpla';
185
186
  import * as _zetachain from './zetachain';
186
187
  const assets = [
@@ -367,6 +368,7 @@ const assets = [
367
368
  _unification.assets,
368
369
  _ununifi.assets,
369
370
  _uptick.assets,
371
+ _xion.assets,
370
372
  _xpla.assets,
371
373
  _zetachain.assets
372
374
  ];
@@ -1238,6 +1238,35 @@ const info = [
1238
1238
  status: 'live'
1239
1239
  }
1240
1240
  }]
1241
+ },
1242
+ {
1243
+ $schema: '../ibc_data.schema.json',
1244
+ chain_1: {
1245
+ chain_name: 'axelar',
1246
+ client_id: '07-tendermint-230',
1247
+ connection_id: 'connection-221'
1248
+ },
1249
+ chain_2: {
1250
+ chain_name: 'xion',
1251
+ client_id: '07-tendermint-3',
1252
+ connection_id: 'connection-3'
1253
+ },
1254
+ channels: [{
1255
+ chain_1: {
1256
+ channel_id: 'channel-161',
1257
+ port_id: 'transfer'
1258
+ },
1259
+ chain_2: {
1260
+ channel_id: 'channel-3',
1261
+ port_id: 'transfer'
1262
+ },
1263
+ ordering: 'unordered',
1264
+ version: 'ics20-1',
1265
+ tags: {
1266
+ status: 'live',
1267
+ preferred: true
1268
+ }
1269
+ }]
1241
1270
  }
1242
1271
  ];
1243
1272
  export default info;
@@ -181,6 +181,7 @@ import * as _unicorn from './unicorn';
181
181
  import * as _unification from './unification';
182
182
  import * as _ununifi from './ununifi';
183
183
  import * as _uptick from './uptick';
184
+ import * as _xion from './xion';
184
185
  import * as _xpla from './xpla';
185
186
  import * as _zetachain from './zetachain';
186
187
  const chains = [
@@ -367,6 +368,7 @@ const chains = [
367
368
  _unification.chain,
368
369
  _ununifi.chain,
369
370
  _uptick.chain,
371
+ _xion.chain,
370
372
  _xpla.chain,
371
373
  _zetachain.chain
372
374
  ];
@@ -142,6 +142,7 @@ import * as _titan from './titan';
142
142
  import * as _umee from './umee';
143
143
  import * as _unification from './unification';
144
144
  import * as _uptick from './uptick';
145
+ import * as _xion from './xion';
145
146
  import * as _xpla from './xpla';
146
147
  const ibc = [
147
148
  ..._ethereum.ibc,
@@ -288,6 +289,7 @@ const ibc = [
288
289
  ..._umee.ibc,
289
290
  ..._unification.ibc,
290
291
  ..._uptick.ibc,
292
+ ..._xion.ibc,
291
293
  ..._xpla.ibc
292
294
  ];
293
295
  export default ibc;
@@ -826,6 +826,35 @@ const info = [
826
826
  }
827
827
  }]
828
828
  },
829
+ {
830
+ $schema: '../ibc_data.schema.json',
831
+ chain_1: {
832
+ chain_name: 'injective',
833
+ client_id: '07-tendermint-279',
834
+ connection_id: 'connection-282'
835
+ },
836
+ chain_2: {
837
+ chain_name: 'xion',
838
+ client_id: '07-tendermint-4',
839
+ connection_id: 'connection-4'
840
+ },
841
+ channels: [{
842
+ chain_1: {
843
+ channel_id: 'channel-387',
844
+ port_id: 'transfer'
845
+ },
846
+ chain_2: {
847
+ channel_id: 'channel-4',
848
+ port_id: 'transfer'
849
+ },
850
+ ordering: 'unordered',
851
+ version: 'ics20-1',
852
+ tags: {
853
+ status: 'live',
854
+ preferred: true
855
+ }
856
+ }]
857
+ },
829
858
  {
830
859
  $schema: '../ibc_data.schema.json',
831
860
  chain_1: {
@@ -35,7 +35,7 @@ const info = {
35
35
  apis: {
36
36
  rpc: [
37
37
  {
38
- address: 'https://rpc-eu-1.kyve.network',
38
+ address: 'https://rpc.kyve.network',
39
39
  provider: 'kyve'
40
40
  },
41
41
  {
@@ -89,7 +89,7 @@ const info = {
89
89
  ],
90
90
  rest: [
91
91
  {
92
- address: 'https://api-eu-1.kyve.network',
92
+ address: 'https://api.kyve.network',
93
93
  provider: 'kyve'
94
94
  },
95
95
  {
@@ -228,6 +228,18 @@ const info = {
228
228
  url: 'https://explorer.whenmoonwhenlambo.money/kyve',
229
229
  tx_page: 'https://explorer.whenmoonwhenlambo.money/kyve/txs/${txHash}',
230
230
  account_page: 'https://explorer.whenmoonwhenlambo.money/kyve/account/${accountAddress}'
231
+ },
232
+ {
233
+ kind: 'KYVE Explorer',
234
+ url: 'https://explorer.kyve.network/kyve',
235
+ tx_page: 'https://explorer.kyve.network/kyve/tx/${txHash}',
236
+ account_page: 'https://explorer.kyve.network/kyve/account/${accountAddress}'
237
+ },
238
+ {
239
+ kind: 'Viewblock',
240
+ url: 'https://viewblock.io/kyve',
241
+ tx_page: 'https://viewblock.io/kyve/tx/${txHash}',
242
+ account_page: 'https://viewblock.io/kyve/address/${accountAddress}'
231
243
  }
232
244
  ],
233
245
  images: [{
@@ -181,5 +181,6 @@ export * as unicorn from './unicorn';
181
181
  export * as unification from './unification';
182
182
  export * as ununifi from './ununifi';
183
183
  export * as uptick from './uptick';
184
+ export * as xion from './xion';
184
185
  export * as xpla from './xpla';
185
186
  export * as zetachain from './zetachain';
@@ -1190,6 +1190,35 @@ const info = [
1190
1190
  preferred: true
1191
1191
  }
1192
1192
  }]
1193
+ },
1194
+ {
1195
+ $schema: '../ibc_data.schema.json',
1196
+ chain_1: {
1197
+ chain_name: 'noble',
1198
+ client_id: '07-tendermint-128',
1199
+ connection_id: 'connection-124'
1200
+ },
1201
+ chain_2: {
1202
+ chain_name: 'xion',
1203
+ client_id: '07-tendermint-2',
1204
+ connection_id: 'connection-2'
1205
+ },
1206
+ channels: [{
1207
+ chain_1: {
1208
+ channel_id: 'channel-113',
1209
+ port_id: 'transfer'
1210
+ },
1211
+ chain_2: {
1212
+ channel_id: 'channel-2',
1213
+ port_id: 'transfer'
1214
+ },
1215
+ ordering: 'unordered',
1216
+ version: 'ics20-1',
1217
+ tags: {
1218
+ status: 'live',
1219
+ preferred: true
1220
+ }
1221
+ }]
1193
1222
  }
1194
1223
  ];
1195
1224
  export default info;
@@ -4466,6 +4466,35 @@ const info = [
4466
4466
  }
4467
4467
  }]
4468
4468
  },
4469
+ {
4470
+ $schema: '../ibc_data.schema.json',
4471
+ chain_1: {
4472
+ chain_name: 'osmosis',
4473
+ client_id: '07-tendermint-3366',
4474
+ connection_id: 'connection-2823'
4475
+ },
4476
+ chain_2: {
4477
+ chain_name: 'xion',
4478
+ client_id: '07-tendermint-1',
4479
+ connection_id: 'connection-1'
4480
+ },
4481
+ channels: [{
4482
+ chain_1: {
4483
+ channel_id: 'channel-89321',
4484
+ port_id: 'transfer'
4485
+ },
4486
+ chain_2: {
4487
+ channel_id: 'channel-1',
4488
+ port_id: 'transfer'
4489
+ },
4490
+ ordering: 'unordered',
4491
+ version: 'ics20-1',
4492
+ tags: {
4493
+ status: 'live',
4494
+ preferred: true
4495
+ }
4496
+ }]
4497
+ },
4469
4498
  {
4470
4499
  $schema: '../ibc_data.schema.json',
4471
4500
  chain_1: {
@@ -0,0 +1,34 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'xion',
4
+ assets: [{
5
+ description: 'XION is the first walletless L1 blockchain purpose built for consumer adoption through chain abstraction.',
6
+ extended_description: 'XION is the first walletless L1 blockchain purpose built for consumer adoption through chain abstraction. Utilizing protocol-level implementations related to abstracted accounts, signatures, fees, interoperability, and more, XION empowers developers to build secure, intuitive, and seamless user experiences.',
7
+ denom_units: [{
8
+ denom: 'uxion',
9
+ exponent: 0,
10
+ aliases: ['microxion']
11
+ }, {
12
+ denom: 'XION',
13
+ exponent: 6,
14
+ aliases: ['xion']
15
+ }],
16
+ base: 'uxion',
17
+ display: 'XION',
18
+ name: 'xion',
19
+ symbol: 'XION',
20
+ coingecko_id: 'xion-2',
21
+ type_asset: 'sdk.coin',
22
+ logo_URIs: {
23
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png'
24
+ },
25
+ images: [{
26
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png'
27
+ }],
28
+ socials: {
29
+ website: 'https://xion.burnt.com/',
30
+ twitter: 'https://twitter.com/burnt_xion'
31
+ }
32
+ }]
33
+ };
34
+ export default info;
@@ -0,0 +1,100 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'xion',
4
+ chain_id: 'xion-mainnet-1',
5
+ chain_type: 'cosmos',
6
+ pretty_name: 'Xion Mainnet',
7
+ website: 'https://burnt.com',
8
+ network_type: 'mainnet',
9
+ status: 'live',
10
+ bech32_prefix: 'xion',
11
+ daemon_name: 'xiond',
12
+ node_home: '$HOME/.xiond',
13
+ key_algos: ['secp256k1'],
14
+ slip44: 118,
15
+ fees: {
16
+ fee_tokens: [{
17
+ denom: 'uxion',
18
+ fixed_min_gas_price: 0.001,
19
+ low_gas_price: 0.001,
20
+ average_gas_price: 0.001,
21
+ high_gas_price: 0.01
22
+ }]
23
+ },
24
+ staking: {
25
+ staking_tokens: [{
26
+ denom: 'uxion'
27
+ }]
28
+ },
29
+ codebase: {},
30
+ apis: {
31
+ rpc: [
32
+ {
33
+ address: 'https://rpc.xion-mainnet-1.burnt.com',
34
+ provider: '🔥BurntLabs🔥'
35
+ },
36
+ {
37
+ address: 'https://xion-rpc.lavenderfive.com',
38
+ provider: 'Lavender.Five Nodes 🐝'
39
+ },
40
+ {
41
+ address: 'https://rpc-burnt.imperator.co/',
42
+ provider: 'Imperator.co'
43
+ },
44
+ {
45
+ address: 'https://xion-rpc.polkachu.com',
46
+ provider: 'Polkachu'
47
+ }
48
+ ],
49
+ rest: [
50
+ {
51
+ address: 'https://api.xion-mainnet-1.burnt.com',
52
+ provider: '🔥BurntLabs🔥'
53
+ },
54
+ {
55
+ address: 'https://xion-api.lavenderfive.com',
56
+ provider: 'Lavender.Five Nodes 🐝'
57
+ },
58
+ {
59
+ address: 'https://lcd-burnt.imperator.co/',
60
+ provider: 'Imperator.co'
61
+ },
62
+ {
63
+ address: 'https://xion-api.polkachu.com',
64
+ provider: 'Polkachu'
65
+ }
66
+ ],
67
+ grpc: [
68
+ {
69
+ address: 'grpc.xion-mainnet-1.burnt.com:443',
70
+ provider: '🔥BurntLabs🔥'
71
+ },
72
+ {
73
+ address: 'xion-grpc.lavenderfive.com:443',
74
+ provider: 'Lavender.Five Nodes 🐝'
75
+ },
76
+ {
77
+ address: 'xion-grpc.polkachu.com:22390',
78
+ provider: 'Polkachu'
79
+ }
80
+ ]
81
+ },
82
+ explorers: [{
83
+ url: 'https://explorer.burnt.com/xion-mainnet-1',
84
+ tx_page: 'https://explorer.burnt.com/xion-mainnet-1/tx/${txHash}',
85
+ account_page: 'https://explorer.burnt.com/xion-mainnet-1/account/${accountAddress}'
86
+ }],
87
+ images: [{
88
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png'
89
+ }],
90
+ logo_URIs: {
91
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png'
92
+ },
93
+ description: 'XION is the first walletless L1 blockchain purpose built for consumer adoption through chain abstraction.',
94
+ keywords: [
95
+ 'xion',
96
+ 'burnt',
97
+ 'mainnet'
98
+ ]
99
+ };
100
+ export default info;
@@ -0,0 +1,119 @@
1
+ const info = [
2
+ {
3
+ $schema: '../ibc_data.schema.json',
4
+ chain_1: {
5
+ chain_name: 'axelar',
6
+ client_id: '07-tendermint-230',
7
+ connection_id: 'connection-221'
8
+ },
9
+ chain_2: {
10
+ chain_name: 'xion',
11
+ client_id: '07-tendermint-3',
12
+ connection_id: 'connection-3'
13
+ },
14
+ channels: [{
15
+ chain_1: {
16
+ channel_id: 'channel-161',
17
+ port_id: 'transfer'
18
+ },
19
+ chain_2: {
20
+ channel_id: 'channel-3',
21
+ port_id: 'transfer'
22
+ },
23
+ ordering: 'unordered',
24
+ version: 'ics20-1',
25
+ tags: {
26
+ status: 'live',
27
+ preferred: true
28
+ }
29
+ }]
30
+ },
31
+ {
32
+ $schema: '../ibc_data.schema.json',
33
+ chain_1: {
34
+ chain_name: 'injective',
35
+ client_id: '07-tendermint-279',
36
+ connection_id: 'connection-282'
37
+ },
38
+ chain_2: {
39
+ chain_name: 'xion',
40
+ client_id: '07-tendermint-4',
41
+ connection_id: 'connection-4'
42
+ },
43
+ channels: [{
44
+ chain_1: {
45
+ channel_id: 'channel-387',
46
+ port_id: 'transfer'
47
+ },
48
+ chain_2: {
49
+ channel_id: 'channel-4',
50
+ port_id: 'transfer'
51
+ },
52
+ ordering: 'unordered',
53
+ version: 'ics20-1',
54
+ tags: {
55
+ status: 'live',
56
+ preferred: true
57
+ }
58
+ }]
59
+ },
60
+ {
61
+ $schema: '../ibc_data.schema.json',
62
+ chain_1: {
63
+ chain_name: 'noble',
64
+ client_id: '07-tendermint-128',
65
+ connection_id: 'connection-124'
66
+ },
67
+ chain_2: {
68
+ chain_name: 'xion',
69
+ client_id: '07-tendermint-2',
70
+ connection_id: 'connection-2'
71
+ },
72
+ channels: [{
73
+ chain_1: {
74
+ channel_id: 'channel-113',
75
+ port_id: 'transfer'
76
+ },
77
+ chain_2: {
78
+ channel_id: 'channel-2',
79
+ port_id: 'transfer'
80
+ },
81
+ ordering: 'unordered',
82
+ version: 'ics20-1',
83
+ tags: {
84
+ status: 'live',
85
+ preferred: true
86
+ }
87
+ }]
88
+ },
89
+ {
90
+ $schema: '../ibc_data.schema.json',
91
+ chain_1: {
92
+ chain_name: 'osmosis',
93
+ client_id: '07-tendermint-3366',
94
+ connection_id: 'connection-2823'
95
+ },
96
+ chain_2: {
97
+ chain_name: 'xion',
98
+ client_id: '07-tendermint-1',
99
+ connection_id: 'connection-1'
100
+ },
101
+ channels: [{
102
+ chain_1: {
103
+ channel_id: 'channel-89321',
104
+ port_id: 'transfer'
105
+ },
106
+ chain_2: {
107
+ channel_id: 'channel-1',
108
+ port_id: 'transfer'
109
+ },
110
+ ordering: 'unordered',
111
+ version: 'ics20-1',
112
+ tags: {
113
+ status: 'live',
114
+ preferred: true
115
+ }
116
+ }]
117
+ }
118
+ ];
119
+ export default info;
@@ -0,0 +1,6 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ import _ibc from './ibc';
4
+ export const assets = _assets;
5
+ export const chain = _chain;
6
+ export const ibc = _ibc;
@@ -29,7 +29,7 @@ const info = {
29
29
  apis: {
30
30
  rpc: [
31
31
  {
32
- address: 'https://rpc-eu-1.kaon.kyve.network',
32
+ address: 'https://rpc.kaon.kyve.network',
33
33
  provider: 'kyve'
34
34
  },
35
35
  {
@@ -43,7 +43,7 @@ const info = {
43
43
  ],
44
44
  rest: [
45
45
  {
46
- address: 'https://api-eu-1.kaon.kyve.network',
46
+ address: 'https://api.kaon.kyve.network',
47
47
  provider: 'kyve'
48
48
  },
49
49
  {
@@ -61,6 +61,11 @@ const info = {
61
61
  url: 'https://mintscan.io/kyve-testnet',
62
62
  tx_page: 'https://mintscan.io/kyve-testnet/txs/${txHash}',
63
63
  account_page: 'https://mintscan.io/kyve-testnet/account/${accountAddress}'
64
+ }, {
65
+ kind: 'KYVE Explorer',
66
+ url: 'https://explorer.kyve.network/kaon',
67
+ tx_page: 'https://explorer.kyve.network/kaon/tx/${txHash}',
68
+ account_page: 'https://explorer.kyve.network/kaon/account/${accountAddress}'
64
69
  }]
65
70
  };
66
71
  export default info;
@@ -117,6 +117,7 @@ const info = {
117
117
  name: 'Noble USDC Token',
118
118
  display: 'usdc',
119
119
  symbol: 'USDC',
120
+ coingecko_id: 'usd-coin',
120
121
  traces: [{
121
122
  type: 'ibc',
122
123
  counterparty: {