chain-registry 1.63.72 → 1.63.74

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 (62) hide show
  1. package/esm/mainnet/assets.js +2 -0
  2. package/esm/mainnet/canto/ibc.js +29 -0
  3. package/esm/mainnet/chains.js +2 -0
  4. package/esm/mainnet/ibc.js +2 -0
  5. package/esm/mainnet/joltify/chain.js +14 -0
  6. package/esm/mainnet/kujira/assets.js +22 -0
  7. package/esm/mainnet/lorenzo/assets.js +71 -0
  8. package/esm/mainnet/lorenzo/chain.js +59 -0
  9. package/esm/mainnet/lorenzo/ibc.js +30 -0
  10. package/esm/mainnet/lorenzo/index.js +6 -0
  11. package/esm/mainnet/named.js +1 -0
  12. package/esm/mainnet/osmosis/assets.js +124 -0
  13. package/esm/mainnet/osmosis/ibc.js +29 -0
  14. package/esm/mainnet/sei/chain.js +18 -6
  15. package/esm/mainnet/sommelier/ibc.js +29 -0
  16. package/esm/mainnet/stride/assets.js +1 -0
  17. package/esm/testnet/archwaytestnet/ibc.js +28 -0
  18. package/esm/testnet/assets.js +2 -0
  19. package/esm/testnet/chains.js +2 -0
  20. package/esm/testnet/cosmoshubtestnet/ibc.js +28 -0
  21. package/esm/testnet/junotestnet/ibc.js +28 -0
  22. package/esm/testnet/named.js +1 -0
  23. package/esm/testnet/symphonytestnet/ibc.js +84 -0
  24. package/esm/testnet/tucanatestnet/assets.js +25 -0
  25. package/esm/testnet/tucanatestnet/chain.js +49 -0
  26. package/esm/testnet/tucanatestnet/index.js +4 -0
  27. package/mainnet/assets.js +2 -0
  28. package/mainnet/canto/ibc.js +29 -0
  29. package/mainnet/chains.js +2 -0
  30. package/mainnet/ibc.js +2 -0
  31. package/mainnet/joltify/chain.js +14 -0
  32. package/mainnet/kujira/assets.js +22 -0
  33. package/mainnet/lorenzo/assets.d.ts +3 -0
  34. package/mainnet/lorenzo/assets.js +73 -0
  35. package/mainnet/lorenzo/chain.d.ts +3 -0
  36. package/mainnet/lorenzo/chain.js +61 -0
  37. package/mainnet/lorenzo/ibc.d.ts +3 -0
  38. package/mainnet/lorenzo/ibc.js +32 -0
  39. package/mainnet/lorenzo/index.d.ts +3 -0
  40. package/mainnet/lorenzo/index.js +12 -0
  41. package/mainnet/named.d.ts +1 -0
  42. package/mainnet/named.js +4 -3
  43. package/mainnet/osmosis/assets.js +124 -0
  44. package/mainnet/osmosis/ibc.js +29 -0
  45. package/mainnet/sei/chain.js +18 -6
  46. package/mainnet/sommelier/ibc.js +29 -0
  47. package/mainnet/stride/assets.js +1 -0
  48. package/package.json +4 -4
  49. package/testnet/archwaytestnet/ibc.js +28 -0
  50. package/testnet/assets.js +2 -0
  51. package/testnet/chains.js +2 -0
  52. package/testnet/cosmoshubtestnet/ibc.js +28 -0
  53. package/testnet/junotestnet/ibc.js +28 -0
  54. package/testnet/named.d.ts +1 -0
  55. package/testnet/named.js +2 -1
  56. package/testnet/symphonytestnet/ibc.js +84 -0
  57. package/testnet/tucanatestnet/assets.d.ts +3 -0
  58. package/testnet/tucanatestnet/assets.js +27 -0
  59. package/testnet/tucanatestnet/chain.d.ts +3 -0
  60. package/testnet/tucanatestnet/chain.js +51 -0
  61. package/testnet/tucanatestnet/index.d.ts +2 -0
  62. package/testnet/tucanatestnet/index.js +10 -0
@@ -92,6 +92,7 @@ import * as _lava from './lava';
92
92
  import * as _likecoin from './likecoin';
93
93
  import * as _logos from './logos';
94
94
  import * as _loop from './loop';
95
+ import * as _lorenzo from './lorenzo';
95
96
  import * as _loyal from './loyal';
96
97
  import * as _lumenx from './lumenx';
97
98
  import * as _lumnetwork from './lumnetwork';
@@ -277,6 +278,7 @@ const assets = [
277
278
  _likecoin.assets,
278
279
  _logos.assets,
279
280
  _loop.assets,
281
+ _lorenzo.assets,
280
282
  _loyal.assets,
281
283
  _lumenx.assets,
282
284
  _lumnetwork.assets,
@@ -87,6 +87,35 @@ const info = [
87
87
  dex: 'osmosis'
88
88
  }
89
89
  }]
90
+ },
91
+ {
92
+ $schema: '../ibc_data.schema.json',
93
+ chain_1: {
94
+ chain_name: 'canto',
95
+ client_id: '07-tendermint-24',
96
+ connection_id: 'connection-16'
97
+ },
98
+ chain_2: {
99
+ chain_name: 'sommelier',
100
+ client_id: '07-tendermint-10',
101
+ connection_id: 'connection-6'
102
+ },
103
+ channels: [{
104
+ chain_1: {
105
+ channel_id: 'channel-10',
106
+ port_id: 'transfer'
107
+ },
108
+ chain_2: {
109
+ channel_id: 'channel-2',
110
+ port_id: 'transfer'
111
+ },
112
+ ordering: 'unordered',
113
+ version: 'ics20-1',
114
+ tags: {
115
+ status: 'live',
116
+ preferred: true
117
+ }
118
+ }]
90
119
  }
91
120
  ];
92
121
  export default info;
@@ -93,6 +93,7 @@ import * as _lava from './lava';
93
93
  import * as _likecoin from './likecoin';
94
94
  import * as _logos from './logos';
95
95
  import * as _loop from './loop';
96
+ import * as _lorenzo from './lorenzo';
96
97
  import * as _loyal from './loyal';
97
98
  import * as _lumenx from './lumenx';
98
99
  import * as _lumnetwork from './lumnetwork';
@@ -280,6 +281,7 @@ const chains = [
280
281
  _likecoin.chain,
281
282
  _logos.chain,
282
283
  _loop.chain,
284
+ _lorenzo.chain,
283
285
  _loyal.chain,
284
286
  _lumenx.chain,
285
287
  _lumnetwork.chain,
@@ -72,6 +72,7 @@ import * as _kyve from './kyve';
72
72
  import * as _lambda from './lambda';
73
73
  import * as _lava from './lava';
74
74
  import * as _likecoin from './likecoin';
75
+ import * as _lorenzo from './lorenzo';
75
76
  import * as _lumenx from './lumenx';
76
77
  import * as _lumnetwork from './lumnetwork';
77
78
  import * as _mande from './mande';
@@ -215,6 +216,7 @@ const ibc = [
215
216
  ..._lambda.ibc,
216
217
  ..._lava.ibc,
217
218
  ..._likecoin.ibc,
219
+ ..._lorenzo.ibc,
218
220
  ..._lumenx.ibc,
219
221
  ..._lumnetwork.ibc,
220
222
  ..._mande.ibc,
@@ -41,10 +41,16 @@ const info = {
41
41
  rpc: [{
42
42
  address: 'https://rpc.joltify.io',
43
43
  provider: 'joltify'
44
+ }, {
45
+ address: 'https://joltify_mainnet_rpc.chain.whenmoonwhenlambo.money',
46
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
44
47
  }],
45
48
  rest: [{
46
49
  address: 'https://lcd.joltify.io/',
47
50
  provider: 'joltify'
51
+ }, {
52
+ address: 'https://joltify_mainnet_api.chain.whenmoonwhenlambo.money',
53
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
48
54
  }],
49
55
  grpc: [{
50
56
  address: 'grpc.joltify.io:443',
@@ -53,6 +59,9 @@ const info = {
53
59
  "evm-http-jsonrpc": [{
54
60
  address: 'https://evm.joltify.io/',
55
61
  provider: 'joltify'
62
+ }, {
63
+ address: 'https://joltify_mainnet_evm.chain.whenmoonwhenlambo.money',
64
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
56
65
  }]
57
66
  },
58
67
  explorers: [{
@@ -60,6 +69,11 @@ const info = {
60
69
  url: 'https://explorer.joltify.io/joltify',
61
70
  tx_page: 'https://explorer.joltify.io/joltify/transactions/${txHash}',
62
71
  account_page: 'https://explorer.joltify.io/joltify/accounts/${accountAddress}'
72
+ }, {
73
+ kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
74
+ url: 'https://explorer.whenmoonwhenlambo.money/joltify',
75
+ tx_page: 'https://explorer.whenmoonwhenlambo.money/joltify/tx/${txHash}',
76
+ account_page: 'https://explorer.whenmoonwhenlambo.money/joltify/account/${accountAddress}'
63
77
  }],
64
78
  keywords: ['rwa', 'lending']
65
79
  };
@@ -2027,6 +2027,28 @@ const info = {
2027
2027
  }
2028
2028
  }]
2029
2029
  },
2030
+ {
2031
+ description: 'The receipt token of NAMI Protocol',
2032
+ denom_units: [{
2033
+ denom: 'factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd',
2034
+ exponent: 0
2035
+ }, {
2036
+ denom: 'nausd',
2037
+ exponent: 6
2038
+ }],
2039
+ base: 'factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd',
2040
+ name: 'NAUSD',
2041
+ display: 'nausd',
2042
+ symbol: 'NAUSD',
2043
+ logo_URIs: {
2044
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.png',
2045
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.svg'
2046
+ },
2047
+ images: [{
2048
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.png',
2049
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.svg'
2050
+ }]
2051
+ },
2030
2052
  {
2031
2053
  description: 'The token of MCTest',
2032
2054
  denom_units: [{
@@ -0,0 +1,71 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'lorenzo',
4
+ assets: [{
5
+ description: 'Native staking token of Lorenzo: LRZ (alrz)',
6
+ denom_units: [{
7
+ denom: 'alrz',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'LRZ',
11
+ exponent: 18
12
+ }],
13
+ base: 'alrz',
14
+ name: 'LRZ',
15
+ display: 'LRZ',
16
+ symbol: 'LRZ',
17
+ logo_URIs: {
18
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.png',
19
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.svg'
20
+ },
21
+ images: [{
22
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.png',
23
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.svg',
24
+ theme: {
25
+ primary_color_hex: '#133348'
26
+ }
27
+ }],
28
+ socials: {
29
+ website: 'https://www.lorenzo-protocol.xyz/',
30
+ twitter: 'https://x.com/LorenzoProtocol'
31
+ }
32
+ }, {
33
+ description: 'stBTC is the liquid principal token of the Lorenzo protocol, designed to represent staked Bitcoin within the Babylon ecosystem.\n\n',
34
+ extended_description: 'stBTC serves as a crucial component of the Lorenzo protocol, enabling Bitcoin holders to unlock the liquidity of their assets while participating in the security of Proof-of-Stake (PoS) networks. By staking BTC through Lorenzo, users receive stBTC, which is redeemable 1-to-1 for the original Bitcoin. This mechanism allows users to earn yield without sacrificing liquidity, as stBTC can be freely utilized within the Lorenzo DeFi ecosystem.\n\nThe innovative dual-token system of stBTC and Yield Accruing Tokens (YATs) empowers users to not only stake their BTC but also engage in various decentralized finance activities such as trading, lending, and collateralization. This enhances the utility and flexibility of Bitcoin, providing additional financial opportunities while contributing to the security of PoS networks.\n\nstBTC\'s role in the Lorenzo protocol illustrates its importance in creating a highly interconnected and efficient financial ecosystem, making it a valuable asset in the broader landscape of decentralized finance.',
35
+ denom_units: [{
36
+ denom: 'stBTC',
37
+ exponent: 0
38
+ }, {
39
+ denom: 'display_stBTC',
40
+ exponent: 18
41
+ }],
42
+ base: 'stBTC',
43
+ name: 'Lorenzo stBTC',
44
+ display: 'display_stBTC',
45
+ symbol: 'stBTC',
46
+ traces: [{
47
+ type: 'liquid-stake',
48
+ counterparty: {
49
+ chain_name: 'bitcoin',
50
+ base_denom: 'sat'
51
+ },
52
+ provider: 'Lorenzo'
53
+ }],
54
+ logo_URIs: {
55
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.png',
56
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.svg'
57
+ },
58
+ images: [{
59
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.png',
60
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.svg',
61
+ theme: {
62
+ primary_color_hex: '#133348'
63
+ }
64
+ }],
65
+ socials: {
66
+ website: 'https://www.lorenzo-protocol.xyz/',
67
+ twitter: 'https://x.com/LorenzoProtocol'
68
+ }
69
+ }]
70
+ };
71
+ export default info;
@@ -0,0 +1,59 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'lorenzo',
4
+ status: 'live',
5
+ network_type: 'mainnet',
6
+ website: 'https://www.lorenzo-protocol.xyz/',
7
+ pretty_name: 'Lorenzo Protocol',
8
+ chain_type: 'cosmos',
9
+ chain_id: 'lorenzo_8329-1',
10
+ bech32_prefix: 'lrz',
11
+ daemon_name: 'lorenzod',
12
+ node_home: '$HOME/.lorenzo',
13
+ key_algos: ['ethsecp256k1'],
14
+ extra_codecs: ['ethermint'],
15
+ slip44: 60,
16
+ fees: {
17
+ fee_tokens: [{
18
+ denom: 'stBTC',
19
+ fixed_min_gas_price: 2000000,
20
+ low_gas_price: 2000000,
21
+ average_gas_price: 2000000,
22
+ high_gas_price: 8000000
23
+ }]
24
+ },
25
+ staking: {
26
+ staking_tokens: [{
27
+ denom: 'alrz'
28
+ }]
29
+ },
30
+ logo_URIs: {
31
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.png',
32
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.svg'
33
+ },
34
+ description: 'Lorenzo aims to be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.',
35
+ codebase: {},
36
+ apis: {
37
+ rpc: [{
38
+ address: 'https://rpc-cosmos.lorenzo-protocol.xyz/',
39
+ provider: 'Lorenzo Protocol'
40
+ }],
41
+ "evm-http-jsonrpc": [{
42
+ address: 'https://rpc-testnet.lorenzo-protocol.xyz/',
43
+ provider: 'Lorenzo Protocol'
44
+ }]
45
+ },
46
+ explorers: [{
47
+ kind: 'blockscout',
48
+ url: 'https://scan.lorenzo-protocol.xyz/',
49
+ tx_page: 'https://scan.lorenzo-protocol.xyz/tx/${txHash}'
50
+ }],
51
+ images: [{
52
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.png',
53
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/lorenzo.svg',
54
+ theme: {
55
+ primary_color_hex: '#133348'
56
+ }
57
+ }]
58
+ };
59
+ export default info;
@@ -0,0 +1,30 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain_1: {
4
+ chain_name: 'lorenzo',
5
+ client_id: '07-tendermint-0',
6
+ connection_id: 'connection-0'
7
+ },
8
+ chain_2: {
9
+ chain_name: 'osmosis',
10
+ client_id: '07-tendermint-3243',
11
+ connection_id: 'connection-2731'
12
+ },
13
+ channels: [{
14
+ chain_1: {
15
+ channel_id: 'channel-0',
16
+ port_id: 'transfer'
17
+ },
18
+ chain_2: {
19
+ channel_id: 'channel-79840',
20
+ port_id: 'transfer'
21
+ },
22
+ ordering: 'unordered',
23
+ version: 'ics20-1',
24
+ tags: {
25
+ status: 'live',
26
+ preferred: true
27
+ }
28
+ }]
29
+ }];
30
+ 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;
@@ -93,6 +93,7 @@ export * as lava from './lava';
93
93
  export * as likecoin from './likecoin';
94
94
  export * as logos from './logos';
95
95
  export * as loop from './loop';
96
+ export * as lorenzo from './lorenzo';
96
97
  export * as loyal from './loyal';
97
98
  export * as lumenx from './lumenx';
98
99
  export * as lumnetwork from './lumnetwork';
@@ -18370,6 +18370,130 @@ const info = {
18370
18370
  primary_color_hex: '#ef4136'
18371
18371
  }
18372
18372
  }]
18373
+ },
18374
+ {
18375
+ description: 'Fractionalized Bad Kids',
18376
+ extended_description: 'Fractionalized Bad Kids NFT Via Fractal.fun',
18377
+ denom_units: [{
18378
+ denom: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD',
18379
+ exponent: 0
18380
+ }, {
18381
+ denom: 'fBAD',
18382
+ exponent: 9
18383
+ }],
18384
+ type_asset: 'sdk.coin',
18385
+ address: 'osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv',
18386
+ base: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD',
18387
+ name: 'fBAD',
18388
+ display: 'fBAD',
18389
+ symbol: 'fBAD',
18390
+ logo_URIs: {
18391
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBAD.png'
18392
+ },
18393
+ images: [{
18394
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBAD.png',
18395
+ theme: {
18396
+ primary_color_hex: '#639BFF'
18397
+ }
18398
+ }],
18399
+ keywords: ['nft'],
18400
+ socials: {
18401
+ website: 'https://fractal.fun',
18402
+ twitter: 'https://twitter.com/fractaldotfun'
18403
+ }
18404
+ },
18405
+ {
18406
+ description: 'Fractionalized Mad Scientists',
18407
+ extended_description: 'Fractionalized Mad Scientists NFT Via Fractal.fun',
18408
+ denom_units: [{
18409
+ denom: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD',
18410
+ exponent: 0
18411
+ }, {
18412
+ denom: 'fMAD',
18413
+ exponent: 9
18414
+ }],
18415
+ type_asset: 'sdk.coin',
18416
+ address: 'osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv',
18417
+ base: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD',
18418
+ name: 'fMAD',
18419
+ display: 'fMAD',
18420
+ symbol: 'fMAD',
18421
+ logo_URIs: {
18422
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fMAD.png'
18423
+ },
18424
+ images: [{
18425
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fMAD.png',
18426
+ theme: {
18427
+ primary_color_hex: '#639BFF'
18428
+ }
18429
+ }],
18430
+ keywords: ['nft'],
18431
+ socials: {
18432
+ website: 'https://fractal.fun',
18433
+ twitter: 'https://twitter.com/fractaldotfun'
18434
+ }
18435
+ },
18436
+ {
18437
+ description: 'Fractionalized Celestine Sloth Society',
18438
+ extended_description: 'Fractionalized Celestine Sloth Society NFT Via Fractal.fun',
18439
+ denom_units: [{
18440
+ denom: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH',
18441
+ exponent: 0
18442
+ }, {
18443
+ denom: 'fSLOTH',
18444
+ exponent: 9
18445
+ }],
18446
+ type_asset: 'sdk.coin',
18447
+ address: 'osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv',
18448
+ base: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH',
18449
+ name: 'fSLOTH',
18450
+ display: 'fSLOTH',
18451
+ symbol: 'fSLOTH',
18452
+ logo_URIs: {
18453
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fSLOTH.png'
18454
+ },
18455
+ images: [{
18456
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fSLOTH.png',
18457
+ theme: {
18458
+ primary_color_hex: '#639BFF'
18459
+ }
18460
+ }],
18461
+ keywords: ['nft'],
18462
+ socials: {
18463
+ website: 'https://fractal.fun',
18464
+ twitter: 'https://twitter.com/fractaldotfun'
18465
+ }
18466
+ },
18467
+ {
18468
+ description: 'Fractionalized DAONuts',
18469
+ extended_description: 'Fractionalized DAONuts NFT Via Fractal.fun',
18470
+ denom_units: [{
18471
+ denom: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT',
18472
+ exponent: 0
18473
+ }, {
18474
+ denom: 'fNUT',
18475
+ exponent: 9
18476
+ }],
18477
+ type_asset: 'sdk.coin',
18478
+ address: 'osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv',
18479
+ base: 'factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT',
18480
+ name: 'fNUT',
18481
+ display: 'fNUT',
18482
+ symbol: 'fNUT',
18483
+ logo_URIs: {
18484
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fNUT.png'
18485
+ },
18486
+ images: [{
18487
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fNUT.png',
18488
+ theme: {
18489
+ primary_color_hex: '#639BFF'
18490
+ }
18491
+ }],
18492
+ keywords: ['nft'],
18493
+ socials: {
18494
+ website: 'https://fractal.fun',
18495
+ twitter: 'https://twitter.com/fractaldotfun'
18496
+ }
18373
18497
  }
18374
18498
  ]
18375
18499
  };
@@ -2135,6 +2135,35 @@ const info = [
2135
2135
  }
2136
2136
  }]
2137
2137
  },
2138
+ {
2139
+ $schema: '../ibc_data.schema.json',
2140
+ chain_1: {
2141
+ chain_name: 'lorenzo',
2142
+ client_id: '07-tendermint-0',
2143
+ connection_id: 'connection-0'
2144
+ },
2145
+ chain_2: {
2146
+ chain_name: 'osmosis',
2147
+ client_id: '07-tendermint-3243',
2148
+ connection_id: 'connection-2731'
2149
+ },
2150
+ channels: [{
2151
+ chain_1: {
2152
+ channel_id: 'channel-0',
2153
+ port_id: 'transfer'
2154
+ },
2155
+ chain_2: {
2156
+ channel_id: 'channel-79840',
2157
+ port_id: 'transfer'
2158
+ },
2159
+ ordering: 'unordered',
2160
+ version: 'ics20-1',
2161
+ tags: {
2162
+ status: 'live',
2163
+ preferred: true
2164
+ }
2165
+ }]
2166
+ },
2138
2167
  {
2139
2168
  $schema: '../ibc_data.schema.json',
2140
2169
  chain_1: {
@@ -38,6 +38,10 @@ const info = {
38
38
  description: 'Sei is the fastest Layer 1 blockchain, designed to scale with the industry.',
39
39
  apis: {
40
40
  rpc: [
41
+ {
42
+ address: 'https://rpc.sei-apis.com',
43
+ provider: 'Rhino Stake'
44
+ },
41
45
  {
42
46
  address: 'https://sei-rpc.lavenderfive.com:443',
43
47
  provider: 'Lavender.Five Nodes 🐝'
@@ -68,6 +72,10 @@ const info = {
68
72
  }
69
73
  ],
70
74
  rest: [
75
+ {
76
+ address: 'https://rest.sei-apis.com',
77
+ provider: 'Rhino Stake'
78
+ },
71
79
  {
72
80
  address: 'https://sei-api.lavenderfive.com:443',
73
81
  provider: 'Lavender.Five Nodes 🐝'
@@ -98,6 +106,10 @@ const info = {
98
106
  }
99
107
  ],
100
108
  grpc: [
109
+ {
110
+ address: 'https://grpc.sei-apis.com:443',
111
+ provider: 'Rhino Stake'
112
+ },
101
113
  {
102
114
  address: 'https://sei-grpc.lavenderfive.com:443',
103
115
  provider: 'Lavender.Five Nodes 🐝'
@@ -126,7 +138,7 @@ const info = {
126
138
  "evm-http-jsonrpc": [
127
139
  {
128
140
  address: 'https://evm-rpc.sei-apis.com',
129
- provider: 'Rhino'
141
+ provider: 'Rhino Stake'
130
142
  },
131
143
  {
132
144
  address: 'https://seievm-rpc.polkachu.com',
@@ -140,10 +152,10 @@ const info = {
140
152
  },
141
153
  explorers: [
142
154
  {
143
- kind: 'ping.pub',
144
- url: 'https://ping.pub/sei',
145
- tx_page: 'https://ping.pub/sei/tx/${txHash}',
146
- account_page: 'https://ping.pub/sei/account/${accountAddress}'
155
+ kind: 'blockscout',
156
+ url: 'https://seitrace.com',
157
+ tx_page: 'https://seitrace.com/tx/${txHash}?chain=pacific-1',
158
+ account_page: 'https://seitrace.com/address/${accountAddress}?chain=pacific-1'
147
159
  },
148
160
  {
149
161
  kind: 'mintscan',
@@ -158,7 +170,7 @@ const info = {
158
170
  account_page: 'https://ezstaking.app/sei/account/${accountAddress}'
159
171
  },
160
172
  {
161
- kind: 'seiscan',
173
+ kind: 'celatone',
162
174
  url: 'https://www.seiscan.app/pacific-1',
163
175
  tx_page: 'https://www.seiscan.app/pacific-1/txs/${txHash}',
164
176
  account_page: 'https://www.seiscan.app/pacific-1/accounts/${accountAddress}'
@@ -28,6 +28,35 @@ const info = [
28
28
  }
29
29
  }]
30
30
  },
31
+ {
32
+ $schema: '../ibc_data.schema.json',
33
+ chain_1: {
34
+ chain_name: 'canto',
35
+ client_id: '07-tendermint-24',
36
+ connection_id: 'connection-16'
37
+ },
38
+ chain_2: {
39
+ chain_name: 'sommelier',
40
+ client_id: '07-tendermint-10',
41
+ connection_id: 'connection-6'
42
+ },
43
+ channels: [{
44
+ chain_1: {
45
+ channel_id: 'channel-10',
46
+ port_id: 'transfer'
47
+ },
48
+ chain_2: {
49
+ channel_id: 'channel-2',
50
+ port_id: 'transfer'
51
+ },
52
+ ordering: 'unordered',
53
+ version: 'ics20-1',
54
+ tags: {
55
+ status: 'live',
56
+ preferred: true
57
+ }
58
+ }]
59
+ },
31
60
  {
32
61
  $schema: '../ibc_data.schema.json',
33
62
  chain_1: {
@@ -560,6 +560,7 @@ const info = {
560
560
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.png',
561
561
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.svg'
562
562
  },
563
+ coingecko_id: 'stride-staked-islm',
563
564
  images: [{
564
565
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.png',
565
566
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.svg',
@@ -142,6 +142,34 @@ const info = [
142
142
  }
143
143
  }
144
144
  ]
145
+ },
146
+ {
147
+ $schema: '../ibc_data.schema.json',
148
+ chain_1: {
149
+ chain_name: 'archwaytestnet',
150
+ client_id: '07-tendermint-139',
151
+ connection_id: 'connection-144'
152
+ },
153
+ chain_2: {
154
+ chain_name: 'symphonytestnet',
155
+ client_id: '07-tendermint-25',
156
+ connection_id: 'connection-12'
157
+ },
158
+ channels: [{
159
+ chain_1: {
160
+ channel_id: 'channel-495',
161
+ port_id: 'transfer'
162
+ },
163
+ chain_2: {
164
+ channel_id: 'channel-10',
165
+ port_id: 'transfer'
166
+ },
167
+ ordering: 'unordered',
168
+ version: 'ics20-1',
169
+ tags: {
170
+ status: 'live'
171
+ }
172
+ }]
145
173
  }
146
174
  ];
147
175
  export default info;
@@ -102,6 +102,7 @@ import * as _terpnettestnet from './terpnettestnet';
102
102
  import * as _terpnettestnet2 from './terpnettestnet2';
103
103
  import * as _terra2testnet from './terra2testnet';
104
104
  import * as _titantestnet from './titantestnet';
105
+ import * as _tucanatestnet from './tucanatestnet';
105
106
  import * as _ulastestnet from './ulastestnet';
106
107
  import * as _uniontestnet from './uniontestnet';
107
108
  import * as _upticktestnet from './upticktestnet';
@@ -215,6 +216,7 @@ const assets = [
215
216
  _terpnettestnet2.assets,
216
217
  _terra2testnet.assets,
217
218
  _titantestnet.assets,
219
+ _tucanatestnet.assets,
218
220
  _ulastestnet.assets,
219
221
  _uniontestnet.assets,
220
222
  _upticktestnet.assets,