chain-registry 1.69.120 → 1.69.122

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/devnet/celestiatestnet2/chain.js +8 -5
  2. package/devnet/manifestdevnet/chain.js +1 -1
  3. package/esm/devnet/celestiatestnet2/chain.js +8 -5
  4. package/esm/devnet/manifestdevnet/chain.js +1 -1
  5. package/esm/mainnet/assets.js +2 -0
  6. package/esm/mainnet/atomone/chain.js +9 -9
  7. package/esm/mainnet/celestia/chain.js +12 -10
  8. package/esm/mainnet/chains.js +2 -0
  9. package/esm/mainnet/ibc.js +2 -0
  10. package/esm/mainnet/kopi/assets.js +5 -5
  11. package/esm/mainnet/kopi/ibc.js +6 -6
  12. package/esm/mainnet/named.js +1 -0
  13. package/esm/mainnet/noble/ibc.js +29 -0
  14. package/esm/mainnet/osmosis/ibc.js +35 -6
  15. package/esm/mainnet/sidechain/assets.js +115 -0
  16. package/esm/mainnet/sidechain/chain.js +190 -0
  17. package/esm/mainnet/sidechain/ibc.js +58 -0
  18. package/esm/mainnet/sidechain/index.js +6 -0
  19. package/esm/testnet/atomonetestnet/chain.js +9 -9
  20. package/esm/testnet/celestiatestnet3/chain.js +8 -5
  21. package/esm/testnet/manifesttestnet/chain.js +1 -1
  22. package/mainnet/assets.js +2 -0
  23. package/mainnet/atomone/chain.js +9 -9
  24. package/mainnet/celestia/chain.js +12 -10
  25. package/mainnet/chains.js +2 -0
  26. package/mainnet/ibc.js +2 -0
  27. package/mainnet/kopi/assets.js +5 -5
  28. package/mainnet/kopi/ibc.js +6 -6
  29. package/mainnet/named.d.ts +1 -0
  30. package/mainnet/named.js +2 -1
  31. package/mainnet/noble/ibc.js +29 -0
  32. package/mainnet/osmosis/ibc.js +35 -6
  33. package/mainnet/sidechain/assets.d.ts +3 -0
  34. package/mainnet/sidechain/assets.js +117 -0
  35. package/mainnet/sidechain/chain.d.ts +3 -0
  36. package/mainnet/sidechain/chain.js +192 -0
  37. package/mainnet/sidechain/ibc.d.ts +3 -0
  38. package/mainnet/sidechain/ibc.js +60 -0
  39. package/mainnet/sidechain/index.d.ts +3 -0
  40. package/mainnet/sidechain/index.js +12 -0
  41. package/package.json +4 -4
  42. package/testnet/atomonetestnet/chain.js +9 -9
  43. package/testnet/celestiatestnet3/chain.js +8 -5
  44. package/testnet/manifesttestnet/chain.js +1 -1
@@ -0,0 +1,58 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain_1: {
4
+ chain_name: 'noble',
5
+ client_id: '07-tendermint-141',
6
+ connection_id: 'connection-136'
7
+ },
8
+ chain_2: {
9
+ chain_name: 'sidechain',
10
+ client_id: '07-tendermint-7',
11
+ connection_id: 'connection-2'
12
+ },
13
+ channels: [{
14
+ chain_1: {
15
+ channel_id: 'channel-123',
16
+ port_id: 'transfer'
17
+ },
18
+ chain_2: {
19
+ channel_id: 'channel-1',
20
+ port_id: 'transfer'
21
+ },
22
+ ordering: 'unordered',
23
+ version: 'ics20-1',
24
+ tags: {
25
+ status: 'live',
26
+ preferred: true
27
+ }
28
+ }]
29
+ }, {
30
+ $schema: '../ibc_data.schema.json',
31
+ chain_1: {
32
+ chain_name: 'osmosis',
33
+ client_id: '07-tendermint-3425',
34
+ connection_id: 'connection-10585'
35
+ },
36
+ chain_2: {
37
+ chain_name: 'sidechain',
38
+ client_id: '07-tendermint-5',
39
+ connection_id: 'connection-1'
40
+ },
41
+ channels: [{
42
+ chain_1: {
43
+ channel_id: 'channel-98081',
44
+ port_id: 'transfer'
45
+ },
46
+ chain_2: {
47
+ channel_id: 'channel-0',
48
+ port_id: 'transfer'
49
+ },
50
+ ordering: 'unordered',
51
+ version: 'ics20-1',
52
+ tags: {
53
+ status: 'live',
54
+ preferred: true
55
+ }
56
+ }]
57
+ }];
58
+ 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;
@@ -28,22 +28,22 @@ const info = {
28
28
  },
29
29
  codebase: {
30
30
  git_repo: 'https://github.com/atomone-hub/atomone',
31
- recommended_version: 'v1.0.0',
32
- compatible_versions: ['v1.0.0'],
31
+ recommended_version: 'v1.0.1',
32
+ compatible_versions: ['v1.0.0', 'v1.0.1'],
33
33
  binaries: {
34
- "linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-linux-amd64',
35
- "linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-linux-arm64',
36
- "darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-darwin-amd64',
37
- "darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-darwin-arm64',
38
- "windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-windows-amd64.exe',
39
- "windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-windows-arm64.exe'
34
+ "linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-amd64',
35
+ "linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-arm64',
36
+ "darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-amd64',
37
+ "darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-arm64',
38
+ "windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-amd64.exe',
39
+ "windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-arm64.exe'
40
40
  },
41
41
  genesis: {
42
42
  genesis_url: 'https://atomone.fra1.digitaloceanspaces.com/atomone-testnet-1/genesis.json'
43
43
  },
44
44
  consensus: {
45
45
  type: 'cometbft',
46
- version: 'v0.37.5'
46
+ version: 'v0.37.15'
47
47
  },
48
48
  sdk: {
49
49
  type: 'cosmos',
@@ -22,12 +22,15 @@ const info = {
22
22
  },
23
23
  codebase: {
24
24
  git_repo: 'https://github.com/celestiaorg/celestia-app',
25
- recommended_version: 'v2.1.2',
25
+ recommended_version: 'v3.3.1-mocha',
26
26
  compatible_versions: [
27
- 'v2.0.0',
28
- 'v2.1.0',
29
- 'v2.1.1',
30
- 'v2.1.2'
27
+ 'v3.0.0-mocha',
28
+ 'v3.0.1-mocha',
29
+ 'v3.0.2-mocha',
30
+ 'v3.1.1-mocha',
31
+ 'v3.2.0-mocha',
32
+ 'v3.3.0-mocha',
33
+ 'v3.3.1-mocha'
31
34
  ],
32
35
  genesis: {
33
36
  genesis_url: 'https://raw.githubusercontent.com/celestiaorg/networks/master/mocha-4/genesis.json'
@@ -16,7 +16,7 @@ const info = {
16
16
  denom: 'umfx',
17
17
  fixed_min_gas_price: 0.001,
18
18
  low_gas_price: 0.01,
19
- average_gas_price: 0.007,
19
+ average_gas_price: 0.02,
20
20
  high_gas_price: 0.1
21
21
  }]
22
22
  },
package/mainnet/assets.js CHANGED
@@ -187,6 +187,7 @@ const _sge = __importStar(require("./sge"));
187
187
  const _shareledger = __importStar(require("./shareledger"));
188
188
  const _shentu = __importStar(require("./shentu"));
189
189
  const _shido = __importStar(require("./shido"));
190
+ const _sidechain = __importStar(require("./sidechain"));
190
191
  const _sifchain = __importStar(require("./sifchain"));
191
192
  const _six = __importStar(require("./six"));
192
193
  const _sommelier = __importStar(require("./sommelier"));
@@ -382,6 +383,7 @@ const assets = [
382
383
  _shareledger.assets,
383
384
  _shentu.assets,
384
385
  _shido.assets,
386
+ _sidechain.assets,
385
387
  _sifchain.assets,
386
388
  _six.assets,
387
389
  _sommelier.assets,
@@ -30,22 +30,22 @@ const info = {
30
30
  },
31
31
  codebase: {
32
32
  git_repo: 'https://github.com/atomone-hub/atomone',
33
- recommended_version: 'v1.0.0',
34
- compatible_versions: ['v1.0.0'],
33
+ recommended_version: 'v1.0.1',
34
+ compatible_versions: ['v1.0.0', 'v1.0.1'],
35
35
  binaries: {
36
- "linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-linux-amd64',
37
- "linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-linux-arm64',
38
- "darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-darwin-amd64',
39
- "darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-darwin-arm64',
40
- "windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-windows-amd64.exe',
41
- "windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-windows-arm64.exe'
36
+ "linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-amd64',
37
+ "linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-arm64',
38
+ "darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-amd64',
39
+ "darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-arm64',
40
+ "windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-amd64.exe',
41
+ "windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-arm64.exe'
42
42
  },
43
43
  genesis: {
44
44
  genesis_url: 'https://atomone.fra1.digitaloceanspaces.com/atomone-1/genesis.json'
45
45
  },
46
46
  consensus: {
47
47
  type: 'cometbft',
48
- version: 'v0.37.5'
48
+ version: 'v0.37.15'
49
49
  },
50
50
  sdk: {
51
51
  type: 'cosmos',
@@ -30,18 +30,20 @@ const info = {
30
30
  },
31
31
  codebase: {
32
32
  git_repo: 'https://github.com/celestiaorg/celestia-app',
33
- recommended_version: 'v2.1.2',
33
+ recommended_version: 'v3.3.1',
34
34
  compatible_versions: [
35
- 'v2.0.0',
36
- 'v2.1.0',
37
- 'v2.1.1',
38
- 'v2.1.2'
35
+ 'v3.3.1',
36
+ 'v3.3.0',
37
+ 'v3.2.0',
38
+ 'v3.1.1',
39
+ 'v3.0.2',
40
+ 'v3.0.1'
39
41
  ],
40
42
  consensus: {
41
43
  type: 'tendermint',
42
- version: 'v1.40.0',
44
+ version: 'v1.45.0',
43
45
  repo: 'https://github.com/celestiaorg/celestia-core',
44
- tag: 'v1.40.0-tm-v0.34.29'
46
+ tag: 'v1.45.0-tm-v0.34.35'
45
47
  },
46
48
  genesis: {
47
49
  genesis_url: 'https://raw.githubusercontent.com/celestiaorg/networks/master/celestia/genesis.json'
@@ -49,12 +51,12 @@ const info = {
49
51
  sdk: {
50
52
  type: 'cosmos',
51
53
  repo: 'https://github.com/celestiaorg/cosmos-sdk',
52
- version: 'v1.24.1',
53
- tag: 'v1.24.1-sdk-v0.46.16'
54
+ version: 'v1.27.0',
55
+ tag: 'v1.27.0-sdk-v0.46.16'
54
56
  },
55
57
  ibc: {
56
58
  type: 'go',
57
- version: 'v6.2.1'
59
+ version: 'v6.2.2'
58
60
  }
59
61
  },
60
62
  logo_URIs: {
package/mainnet/chains.js CHANGED
@@ -187,6 +187,7 @@ const _sge = __importStar(require("./sge"));
187
187
  const _shareledger = __importStar(require("./shareledger"));
188
188
  const _shentu = __importStar(require("./shentu"));
189
189
  const _shido = __importStar(require("./shido"));
190
+ const _sidechain = __importStar(require("./sidechain"));
190
191
  const _sifchain = __importStar(require("./sifchain"));
191
192
  const _six = __importStar(require("./six"));
192
193
  const _sommelier = __importStar(require("./sommelier"));
@@ -382,6 +383,7 @@ const chains = [
382
383
  _shareledger.chain,
383
384
  _shentu.chain,
384
385
  _shido.chain,
386
+ _sidechain.chain,
385
387
  _sifchain.chain,
386
388
  _six.chain,
387
389
  _sommelier.chain,
package/mainnet/ibc.js CHANGED
@@ -152,6 +152,7 @@ const _sge = __importStar(require("./sge"));
152
152
  const _shareledger = __importStar(require("./shareledger"));
153
153
  const _shentu = __importStar(require("./shentu"));
154
154
  const _shido = __importStar(require("./shido"));
155
+ const _sidechain = __importStar(require("./sidechain"));
155
156
  const _sifchain = __importStar(require("./sifchain"));
156
157
  const _sommelier = __importStar(require("./sommelier"));
157
158
  const _source = __importStar(require("./source"));
@@ -302,6 +303,7 @@ const ibc = [
302
303
  ..._shareledger.ibc,
303
304
  ..._shentu.ibc,
304
305
  ..._shido.ibc,
306
+ ..._sidechain.ibc,
305
307
  ..._sifchain.ibc,
306
308
  ..._sommelier.ibc,
307
309
  ..._source.ibc,
@@ -283,13 +283,13 @@ const info = {
283
283
  {
284
284
  description: 'Osmosis from Osmosis Chain',
285
285
  denom_units: [{
286
- denom: 'ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85',
286
+ denom: 'ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955',
287
287
  exponent: 0
288
288
  }, {
289
289
  denom: 'osmo',
290
290
  exponent: 6
291
291
  }],
292
- base: 'ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85',
292
+ base: 'ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955',
293
293
  name: 'OSMO',
294
294
  display: 'osmo',
295
295
  symbol: 'OSMO',
@@ -306,11 +306,11 @@ const info = {
306
306
  counterparty: {
307
307
  chain_name: 'osmosis',
308
308
  base_denom: 'uosmo',
309
- channel_id: 'channel-88475'
309
+ channel_id: 'channel-97998'
310
310
  },
311
311
  chain: {
312
- channel_id: 'channel-6',
313
- path: 'transfer/channel-6/uosmo'
312
+ channel_id: 'channel-10',
313
+ path: 'transfer/channel-10/uosmo'
314
314
  }
315
315
  }]
316
316
  },
@@ -92,21 +92,21 @@ const info = [
92
92
  $schema: '../ibc_data.schema.json',
93
93
  chain_1: {
94
94
  chain_name: 'kopi',
95
- client_id: '07-tendermint-3',
96
- connection_id: 'connection-3'
95
+ client_id: '07-tendermint-12',
96
+ connection_id: 'connection-36'
97
97
  },
98
98
  chain_2: {
99
99
  chain_name: 'osmosis',
100
- client_id: '07-tendermint-3359',
101
- connection_id: 'connection-2816'
100
+ client_id: '07-tendermint-3422',
101
+ connection_id: 'connection-10584'
102
102
  },
103
103
  channels: [{
104
104
  chain_1: {
105
- channel_id: 'channel-6',
105
+ channel_id: 'channel-10',
106
106
  port_id: 'transfer'
107
107
  },
108
108
  chain_2: {
109
- channel_id: 'channel-88475',
109
+ channel_id: 'channel-97998',
110
110
  port_id: 'transfer'
111
111
  },
112
112
  ordering: 'unordered',
@@ -162,6 +162,7 @@ export * as sge from './sge';
162
162
  export * as shareledger from './shareledger';
163
163
  export * as shentu from './shentu';
164
164
  export * as shido from './shido';
165
+ export * as sidechain from './sidechain';
165
166
  export * as sifchain from './sifchain';
166
167
  export * as six from './six';
167
168
  export * as sommelier from './sommelier';
package/mainnet/named.js CHANGED
@@ -26,7 +26,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cnhostables = exports.cifer = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.celestia = exports.carbon = exports.canto = exports.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.axelar = exports.aura = exports.atomone = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda = exports.althea = exports.allora = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports.aaronetwork = exports.tron = exports.ton = exports.solana = exports.rootstock = exports.ethereum = void 0;
27
27
  exports.logos = exports.likecoin = exports.lefeef = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.kopi = exports.konstellation = exports.kimanetwork = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.int3face = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.ggezchain = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.epix = exports.empowerchain = exports.emoney = exports.elys = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.dungeon = exports.doravota = exports.dhealth = void 0;
28
28
  exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.qfs = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.opct = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.noble = exports.nim = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.mises = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.mantrachain = exports.mande = exports.lumnetwork = exports.loyal = exports.lorenzo = exports.loop = void 0;
29
- exports.zetachain = exports.zenrock = exports.xpla = exports.xion = exports.vector = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = void 0;
29
+ exports.zetachain = exports.zenrock = exports.xpla = exports.xion = exports.vector = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.sidechain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = void 0;
30
30
  exports.ethereum = __importStar(require("./ethereum"));
31
31
  exports.rootstock = __importStar(require("./rootstock"));
32
32
  exports.solana = __importStar(require("./solana"));
@@ -191,6 +191,7 @@ exports.sge = __importStar(require("./sge"));
191
191
  exports.shareledger = __importStar(require("./shareledger"));
192
192
  exports.shentu = __importStar(require("./shentu"));
193
193
  exports.shido = __importStar(require("./shido"));
194
+ exports.sidechain = __importStar(require("./sidechain"));
194
195
  exports.sifchain = __importStar(require("./sifchain"));
195
196
  exports.six = __importStar(require("./six"));
196
197
  exports.sommelier = __importStar(require("./sommelier"));
@@ -1105,6 +1105,35 @@ const info = [
1105
1105
  }
1106
1106
  }]
1107
1107
  },
1108
+ {
1109
+ $schema: '../ibc_data.schema.json',
1110
+ chain_1: {
1111
+ chain_name: 'noble',
1112
+ client_id: '07-tendermint-141',
1113
+ connection_id: 'connection-136'
1114
+ },
1115
+ chain_2: {
1116
+ chain_name: 'sidechain',
1117
+ client_id: '07-tendermint-7',
1118
+ connection_id: 'connection-2'
1119
+ },
1120
+ channels: [{
1121
+ chain_1: {
1122
+ channel_id: 'channel-123',
1123
+ port_id: 'transfer'
1124
+ },
1125
+ chain_2: {
1126
+ channel_id: 'channel-1',
1127
+ port_id: 'transfer'
1128
+ },
1129
+ ordering: 'unordered',
1130
+ version: 'ics20-1',
1131
+ tags: {
1132
+ status: 'live',
1133
+ preferred: true
1134
+ }
1135
+ }]
1136
+ },
1108
1137
  {
1109
1138
  $schema: '../ibc_data.schema.json',
1110
1139
  chain_1: {
@@ -2198,21 +2198,21 @@ const info = [
2198
2198
  $schema: '../ibc_data.schema.json',
2199
2199
  chain_1: {
2200
2200
  chain_name: 'kopi',
2201
- client_id: '07-tendermint-3',
2202
- connection_id: 'connection-3'
2201
+ client_id: '07-tendermint-12',
2202
+ connection_id: 'connection-36'
2203
2203
  },
2204
2204
  chain_2: {
2205
2205
  chain_name: 'osmosis',
2206
- client_id: '07-tendermint-3359',
2207
- connection_id: 'connection-2816'
2206
+ client_id: '07-tendermint-3422',
2207
+ connection_id: 'connection-10584'
2208
2208
  },
2209
2209
  channels: [{
2210
2210
  chain_1: {
2211
- channel_id: 'channel-6',
2211
+ channel_id: 'channel-10',
2212
2212
  port_id: 'transfer'
2213
2213
  },
2214
2214
  chain_2: {
2215
- channel_id: 'channel-88475',
2215
+ channel_id: 'channel-97998',
2216
2216
  port_id: 'transfer'
2217
2217
  },
2218
2218
  ordering: 'unordered',
@@ -3995,6 +3995,35 @@ const info = [
3995
3995
  }
3996
3996
  }]
3997
3997
  },
3998
+ {
3999
+ $schema: '../ibc_data.schema.json',
4000
+ chain_1: {
4001
+ chain_name: 'osmosis',
4002
+ client_id: '07-tendermint-3425',
4003
+ connection_id: 'connection-10585'
4004
+ },
4005
+ chain_2: {
4006
+ chain_name: 'sidechain',
4007
+ client_id: '07-tendermint-5',
4008
+ connection_id: 'connection-1'
4009
+ },
4010
+ channels: [{
4011
+ chain_1: {
4012
+ channel_id: 'channel-98081',
4013
+ port_id: 'transfer'
4014
+ },
4015
+ chain_2: {
4016
+ channel_id: 'channel-0',
4017
+ port_id: 'transfer'
4018
+ },
4019
+ ordering: 'unordered',
4020
+ version: 'ics20-1',
4021
+ tags: {
4022
+ status: 'live',
4023
+ preferred: true
4024
+ }
4025
+ }]
4026
+ },
3998
4027
  {
3999
4028
  $schema: '../ibc_data.schema.json',
4000
4029
  chain_1: {
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,117 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chain_name: 'sidechain',
6
+ assets: [
7
+ {
8
+ description: 'The native token of Side Chain.',
9
+ denom_units: [{
10
+ denom: 'uside',
11
+ exponent: 0
12
+ }, {
13
+ denom: 'side',
14
+ exponent: 6
15
+ }],
16
+ base: 'uside',
17
+ name: 'Side Chain native token',
18
+ display: 'side',
19
+ symbol: 'SIDE',
20
+ logo_URIs: {
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png',
22
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg'
23
+ },
24
+ images: [{
25
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png',
26
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg',
27
+ theme: {
28
+ primary_color_hex: '#f7771a'
29
+ }
30
+ }],
31
+ socials: {
32
+ website: 'https://side.one',
33
+ twitter: 'https://x.com/SideProtocol'
34
+ },
35
+ type_asset: 'sdk.coin'
36
+ },
37
+ {
38
+ description: 'BTC-pegged token on Side Chain.',
39
+ extended_description: 'sBTC is the native token of the Side Chain, fully pegged 1:1 to BTC held in a vault secured by 21 TSS signers on the Bitcoin mainnet. As a synthetic asset, sBTC enables Bitcoin liquidity to seamlessly flow into the Side Chain and the broader Cosmos ecosystem.',
40
+ denom_units: [{
41
+ denom: 'sat',
42
+ exponent: 0
43
+ }, {
44
+ denom: 'sBTC',
45
+ exponent: 8
46
+ }],
47
+ base: 'sat',
48
+ name: 'Side Bitcoin',
49
+ display: 'sBTC',
50
+ symbol: 'sBTC',
51
+ traces: [{
52
+ type: 'bridge',
53
+ counterparty: {
54
+ chain_name: 'bitcoin',
55
+ base_denom: 'sat'
56
+ },
57
+ provider: 'Side Chain'
58
+ }],
59
+ images: [{
60
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/sBTC.svg',
61
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/sBTC.png',
62
+ theme: {
63
+ primary_color_hex: '#f7771a'
64
+ }
65
+ }],
66
+ socials: {
67
+ website: 'https://side.one',
68
+ twitter: 'https://x.com/SideProtocol'
69
+ },
70
+ type_asset: 'sdk.coin'
71
+ },
72
+ {
73
+ description: 'Noble USDC on Side Chain.',
74
+ denom_units: [{
75
+ denom: 'ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3',
76
+ exponent: 0
77
+ }, {
78
+ denom: 'usdc',
79
+ exponent: 6
80
+ }],
81
+ type_asset: 'ics20',
82
+ base: 'ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3',
83
+ name: 'Noble USDC',
84
+ display: 'usdc',
85
+ symbol: 'USDC',
86
+ traces: [{
87
+ type: 'ibc',
88
+ counterparty: {
89
+ chain_name: 'noble',
90
+ base_denom: 'uusdc',
91
+ channel_id: 'channel-123'
92
+ },
93
+ chain: {
94
+ channel_id: 'channel-1',
95
+ path: 'transfer/channel-1/uusdc'
96
+ }
97
+ }],
98
+ images: [{
99
+ image_sync: {
100
+ chain_name: 'noble',
101
+ base_denom: 'uusdc'
102
+ },
103
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
104
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
105
+ theme: {
106
+ circle: true,
107
+ primary_color_hex: '#2775CA'
108
+ }
109
+ }],
110
+ logo_URIs: {
111
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
112
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
113
+ }
114
+ }
115
+ ]
116
+ };
117
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ import { Chain } from '@chain-registry/types';
2
+ declare const info: Chain;
3
+ export default info;