chain-registry 2.0.12 → 2.0.13

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.
@@ -30,6 +30,7 @@ import * as _bluechip from './bluechip';
30
30
  import * as _bluzelle from './bluzelle';
31
31
  import * as _bostrom from './bostrom';
32
32
  import * as _bouachain from './bouachain';
33
+ import * as _buycex from './buycex';
33
34
  import * as _canto from './canto';
34
35
  import * as _carbon from './carbon';
35
36
  import * as _celestia from './celestia';
@@ -238,6 +239,7 @@ const assetList = [
238
239
  _bluzelle.assetList,
239
240
  _bostrom.assetList,
240
241
  _bouachain.assetList,
242
+ _buycex.assetList,
241
243
  _canto.assetList,
242
244
  _carbon.assetList,
243
245
  _celestia.assetList,
@@ -13,25 +13,25 @@ const info = {
13
13
  nodeHome: '$HOME/.bitsongd',
14
14
  codebase: {
15
15
  gitRepo: 'https://github.com/bitsongofficial/go-bitsong',
16
- recommendedVersion: 'v0.20.4',
17
- compatibleVersions: ['v0.20.4'],
16
+ recommendedVersion: 'v0.23.0',
17
+ compatibleVersions: ['v0.23.0'],
18
18
  binaries: {
19
- "linux/amd64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.20.4/bitsongd-linux-amd64',
20
- "linux/arm64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.20.4/bitsongd-linux-arm64'
19
+ "linux/amd64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.23.0/bitsongd-linux-amd64',
20
+ "linux/arm64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.23.0/bitsongd-linux-arm64'
21
21
  },
22
22
  genesis: {
23
23
  genesisUrl: 'https://raw.githubusercontent.com/bitsongofficial/networks/master/bitsong-2b/genesis.json'
24
24
  },
25
25
  sdk: {
26
26
  type: 'cosmos',
27
- version: '0.47.15'
27
+ version: '0.53.0'
28
28
  },
29
29
  ibc: {
30
30
  type: 'go',
31
- version: 'v7.4.0'
31
+ version: 'v8.7.0'
32
32
  },
33
33
  cosmwasm: {
34
- version: '0.45.0',
34
+ version: '0.53.3',
35
35
  enabled: true
36
36
  }
37
37
  },
@@ -0,0 +1,28 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'buycex',
4
+ assets: [{
5
+ typeAsset: 'sdk.coin',
6
+ description: 'Buycex is the native token of the BuyCex Infinity Chain.',
7
+ denomUnits: [{
8
+ denom: 'ubcx',
9
+ exponent: 0
10
+ }, {
11
+ denom: 'BCX',
12
+ exponent: 18
13
+ }],
14
+ base: 'ubcx',
15
+ name: 'Buycex',
16
+ display: 'BCX',
17
+ symbol: 'BCX',
18
+ logoURIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/buycex/images/bcx.png'
20
+ },
21
+ keywords: [
22
+ 'native',
23
+ 'staking',
24
+ 'utility'
25
+ ]
26
+ }]
27
+ };
28
+ export default info;
@@ -0,0 +1,49 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'buycex',
4
+ chainId: 'bcx_323-1',
5
+ prettyName: 'BuyCex Infinity Chain',
6
+ status: 'live',
7
+ networkType: 'mainnet',
8
+ website: 'https://infinity.buycex.com',
9
+ bech32Prefix: 'bcx',
10
+ daemonName: 'bcxd',
11
+ nodeHome: '$HOME/.bcxd',
12
+ chainType: 'cosmos',
13
+ slip44: 60,
14
+ codebase: {
15
+ genesis: {
16
+ genesisUrl: 'https://buycex.net/genesis.json'
17
+ },
18
+ gitRepo: 'https://github.com/cosvmlabs/buycex-chain',
19
+ recommendedVersion: 'v1.0.0',
20
+ compatibleVersions: ['v1.0.0'],
21
+ sdk: {
22
+ type: 'cosmos',
23
+ version: 'v0.45.16'
24
+ }
25
+ },
26
+ apis: {
27
+ rpc: [{
28
+ address: 'https://endpoint.buycex.net',
29
+ provider: 'buycex'
30
+ }],
31
+ rest: [{
32
+ address: 'https://api.buycex.net',
33
+ provider: 'buycex'
34
+ }],
35
+ grpc: [{
36
+ address: 'https://grpc.buycex.net',
37
+ provider: 'buycex'
38
+ }]
39
+ },
40
+ explorers: [{
41
+ kind: 'pingpub',
42
+ url: 'https://cosmos.buycex.net',
43
+ txPage: 'https://cosmos.buycex.net/tx/${txHash}'
44
+ }],
45
+ logoURIs: {
46
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/buycex/images/bcx.png'
47
+ }
48
+ };
49
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assetList from './asset-list';
2
+ import _chain from './chain';
3
+ export const assetList = _assetList;
4
+ export const chain = _chain;
@@ -30,6 +30,7 @@ import * as _bluechip from './bluechip';
30
30
  import * as _bluzelle from './bluzelle';
31
31
  import * as _bostrom from './bostrom';
32
32
  import * as _bouachain from './bouachain';
33
+ import * as _buycex from './buycex';
33
34
  import * as _canto from './canto';
34
35
  import * as _carbon from './carbon';
35
36
  import * as _celestia from './celestia';
@@ -238,6 +239,7 @@ const chains = [
238
239
  _bluzelle.chain,
239
240
  _bostrom.chain,
240
241
  _bouachain.chain,
242
+ _buycex.chain,
241
243
  _canto.chain,
242
244
  _carbon.chain,
243
245
  _celestia.chain,
@@ -28,7 +28,8 @@ const info = {
28
28
  socials: {
29
29
  website: 'https://manifestai.org/',
30
30
  twitter: 'https://x.com/ManifestAIs/'
31
- }
31
+ },
32
+ coingeckoId: 'manifest-2'
32
33
  },
33
34
  {
34
35
  description: 'Proof of Authority token for the Manifest network',
@@ -27,10 +27,10 @@ const info = {
27
27
  },
28
28
  codebase: {
29
29
  gitRepo: 'https://github.com/liftedinit/manifest-ledger',
30
- recommendedVersion: 'v1.0.3',
31
- compatibleVersions: ['v1.0.3'],
30
+ recommendedVersion: 'v1.0.5',
31
+ compatibleVersions: ['v1.0.3', 'v1.0.5'],
32
32
  binaries: {
33
- "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.3/manifest-ledger-v1.0.3-linux-amd64.tar.gz'
33
+ "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.5/manifest-ledger-v1.0.5-linux-amd64.tar.gz'
34
34
  },
35
35
  genesis: {
36
36
  genesisUrl: 'https://nodes.liftedinit.app/manifest/rpc/genesis?'
@@ -0,0 +1,30 @@
1
+ const info = [{
2
+ $schema: '../../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'hippoprotocoltestnet',
5
+ clientId: '07-tendermint-0',
6
+ connectionId: 'connection-0'
7
+ },
8
+ chain2: {
9
+ chainName: 'osmosistestnet',
10
+ clientId: '07-tendermint-4754',
11
+ connectionId: 'connection-4185'
12
+ },
13
+ channels: [{
14
+ chain1: {
15
+ channelId: 'channel-0',
16
+ portId: 'transfer'
17
+ },
18
+ chain2: {
19
+ channelId: 'channel-10743',
20
+ portId: 'transfer'
21
+ },
22
+ ordering: 'unordered',
23
+ version: 'ics20-1',
24
+ tags: {
25
+ status: 'live',
26
+ preferred: true
27
+ }
28
+ }]
29
+ }];
30
+ export default info;
@@ -1,4 +1,6 @@
1
1
  import _assetList from './asset-list';
2
2
  import _chain from './chain';
3
+ import _ibcData from './ibc-data';
3
4
  export const assetList = _assetList;
4
5
  export const chain = _chain;
6
+ export const ibcData = _ibcData;
@@ -13,6 +13,7 @@ import * as _doravotatestnet from './doravotatestnet';
13
13
  import * as _dydxtestnet from './dydxtestnet';
14
14
  import * as _elystestnet from './elystestnet';
15
15
  import * as _empowertestnet from './empowertestnet';
16
+ import * as _hippoprotocoltestnet from './hippoprotocoltestnet';
16
17
  import * as _impacthubtestnet from './impacthubtestnet';
17
18
  import * as _injectivetestnet from './injectivetestnet';
18
19
  import * as _int3facetestnet from './int3facetestnet';
@@ -62,6 +63,7 @@ const ibcData = [
62
63
  ..._dydxtestnet.ibcData,
63
64
  ..._elystestnet.ibcData,
64
65
  ..._empowertestnet.ibcData,
66
+ ..._hippoprotocoltestnet.ibcData,
65
67
  ..._impacthubtestnet.ibcData,
66
68
  ..._injectivetestnet.ibcData,
67
69
  ..._int3facetestnet.ibcData,
@@ -430,6 +430,35 @@ const info = [
430
430
  }
431
431
  }]
432
432
  },
433
+ {
434
+ $schema: '../../ibc_data.schema.json',
435
+ chain1: {
436
+ chainName: 'hippoprotocoltestnet',
437
+ clientId: '07-tendermint-0',
438
+ connectionId: 'connection-0'
439
+ },
440
+ chain2: {
441
+ chainName: 'osmosistestnet',
442
+ clientId: '07-tendermint-4754',
443
+ connectionId: 'connection-4185'
444
+ },
445
+ channels: [{
446
+ chain1: {
447
+ channelId: 'channel-0',
448
+ portId: 'transfer'
449
+ },
450
+ chain2: {
451
+ channelId: 'channel-10743',
452
+ portId: 'transfer'
453
+ },
454
+ ordering: 'unordered',
455
+ version: 'ics20-1',
456
+ tags: {
457
+ status: 'live',
458
+ preferred: true
459
+ }
460
+ }]
461
+ },
433
462
  {
434
463
  $schema: '../../ibc_data.schema.json',
435
464
  chain1: {
@@ -55,6 +55,7 @@ const _bluechip = __importStar(require("./bluechip"));
55
55
  const _bluzelle = __importStar(require("./bluzelle"));
56
56
  const _bostrom = __importStar(require("./bostrom"));
57
57
  const _bouachain = __importStar(require("./bouachain"));
58
+ const _buycex = __importStar(require("./buycex"));
58
59
  const _canto = __importStar(require("./canto"));
59
60
  const _carbon = __importStar(require("./carbon"));
60
61
  const _celestia = __importStar(require("./celestia"));
@@ -263,6 +264,7 @@ const assetList = [
263
264
  _bluzelle.assetList,
264
265
  _bostrom.assetList,
265
266
  _bouachain.assetList,
267
+ _buycex.assetList,
266
268
  _canto.assetList,
267
269
  _carbon.assetList,
268
270
  _celestia.assetList,
@@ -15,25 +15,25 @@ const info = {
15
15
  nodeHome: '$HOME/.bitsongd',
16
16
  codebase: {
17
17
  gitRepo: 'https://github.com/bitsongofficial/go-bitsong',
18
- recommendedVersion: 'v0.20.4',
19
- compatibleVersions: ['v0.20.4'],
18
+ recommendedVersion: 'v0.23.0',
19
+ compatibleVersions: ['v0.23.0'],
20
20
  binaries: {
21
- "linux/amd64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.20.4/bitsongd-linux-amd64',
22
- "linux/arm64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.20.4/bitsongd-linux-arm64'
21
+ "linux/amd64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.23.0/bitsongd-linux-amd64',
22
+ "linux/arm64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.23.0/bitsongd-linux-arm64'
23
23
  },
24
24
  genesis: {
25
25
  genesisUrl: 'https://raw.githubusercontent.com/bitsongofficial/networks/master/bitsong-2b/genesis.json'
26
26
  },
27
27
  sdk: {
28
28
  type: 'cosmos',
29
- version: '0.47.15'
29
+ version: '0.53.0'
30
30
  },
31
31
  ibc: {
32
32
  type: 'go',
33
- version: 'v7.4.0'
33
+ version: 'v8.7.0'
34
34
  },
35
35
  cosmwasm: {
36
- version: '0.45.0',
36
+ version: '0.53.3',
37
37
  enabled: true
38
38
  }
39
39
  },
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chainName: 'buycex',
6
+ assets: [{
7
+ typeAsset: 'sdk.coin',
8
+ description: 'Buycex is the native token of the BuyCex Infinity Chain.',
9
+ denomUnits: [{
10
+ denom: 'ubcx',
11
+ exponent: 0
12
+ }, {
13
+ denom: 'BCX',
14
+ exponent: 18
15
+ }],
16
+ base: 'ubcx',
17
+ name: 'Buycex',
18
+ display: 'BCX',
19
+ symbol: 'BCX',
20
+ logoURIs: {
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/buycex/images/bcx.png'
22
+ },
23
+ keywords: [
24
+ 'native',
25
+ 'staking',
26
+ 'utility'
27
+ ]
28
+ }]
29
+ };
30
+ 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,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chainName: 'buycex',
6
+ chainId: 'bcx_323-1',
7
+ prettyName: 'BuyCex Infinity Chain',
8
+ status: 'live',
9
+ networkType: 'mainnet',
10
+ website: 'https://infinity.buycex.com',
11
+ bech32Prefix: 'bcx',
12
+ daemonName: 'bcxd',
13
+ nodeHome: '$HOME/.bcxd',
14
+ chainType: 'cosmos',
15
+ slip44: 60,
16
+ codebase: {
17
+ genesis: {
18
+ genesisUrl: 'https://buycex.net/genesis.json'
19
+ },
20
+ gitRepo: 'https://github.com/cosvmlabs/buycex-chain',
21
+ recommendedVersion: 'v1.0.0',
22
+ compatibleVersions: ['v1.0.0'],
23
+ sdk: {
24
+ type: 'cosmos',
25
+ version: 'v0.45.16'
26
+ }
27
+ },
28
+ apis: {
29
+ rpc: [{
30
+ address: 'https://endpoint.buycex.net',
31
+ provider: 'buycex'
32
+ }],
33
+ rest: [{
34
+ address: 'https://api.buycex.net',
35
+ provider: 'buycex'
36
+ }],
37
+ grpc: [{
38
+ address: 'https://grpc.buycex.net',
39
+ provider: 'buycex'
40
+ }]
41
+ },
42
+ explorers: [{
43
+ kind: 'pingpub',
44
+ url: 'https://cosmos.buycex.net',
45
+ txPage: 'https://cosmos.buycex.net/tx/${txHash}'
46
+ }],
47
+ logoURIs: {
48
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/buycex/images/bcx.png'
49
+ }
50
+ };
51
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assetList: 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.assetList = void 0;
7
+ const asset_list_1 = __importDefault(require("./asset-list"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assetList = asset_list_1.default;
10
+ exports.chain = chain_1.default;
package/mainnet/chains.js CHANGED
@@ -55,6 +55,7 @@ const _bluechip = __importStar(require("./bluechip"));
55
55
  const _bluzelle = __importStar(require("./bluzelle"));
56
56
  const _bostrom = __importStar(require("./bostrom"));
57
57
  const _bouachain = __importStar(require("./bouachain"));
58
+ const _buycex = __importStar(require("./buycex"));
58
59
  const _canto = __importStar(require("./canto"));
59
60
  const _carbon = __importStar(require("./carbon"));
60
61
  const _celestia = __importStar(require("./celestia"));
@@ -263,6 +264,7 @@ const chains = [
263
264
  _bluzelle.chain,
264
265
  _bostrom.chain,
265
266
  _bouachain.chain,
267
+ _buycex.chain,
266
268
  _canto.chain,
267
269
  _carbon.chain,
268
270
  _celestia.chain,
@@ -30,7 +30,8 @@ const info = {
30
30
  socials: {
31
31
  website: 'https://manifestai.org/',
32
32
  twitter: 'https://x.com/ManifestAIs/'
33
- }
33
+ },
34
+ coingeckoId: 'manifest-2'
34
35
  },
35
36
  {
36
37
  description: 'Proof of Authority token for the Manifest network',
@@ -29,10 +29,10 @@ const info = {
29
29
  },
30
30
  codebase: {
31
31
  gitRepo: 'https://github.com/liftedinit/manifest-ledger',
32
- recommendedVersion: 'v1.0.3',
33
- compatibleVersions: ['v1.0.3'],
32
+ recommendedVersion: 'v1.0.5',
33
+ compatibleVersions: ['v1.0.3', 'v1.0.5'],
34
34
  binaries: {
35
- "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.3/manifest-ledger-v1.0.3-linux-amd64.tar.gz'
35
+ "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.5/manifest-ledger-v1.0.5-linux-amd64.tar.gz'
36
36
  },
37
37
  genesis: {
38
38
  genesisUrl: 'https://nodes.liftedinit.app/manifest/rpc/genesis?'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.12",
3
+ "version": "2.0.13",
4
4
  "description": "Cosmos chain registry ⚛️",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
@@ -29,7 +29,7 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "dependencies": {
32
- "@chain-registry/types": "^2.0.12"
32
+ "@chain-registry/types": "^2.0.13"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "a1949f88679fc5bb45f0a598408f377ae8d1e8f1"
42
+ "gitHead": "8046b7b2b11479163f1a5e96bf3be7f8baf421de"
43
43
  }
@@ -0,0 +1,3 @@
1
+ import { IBCData } from '@chain-registry/types';
2
+ declare const info: IBCData[];
3
+ export default info;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../../ibc_data.schema.json',
5
+ chain1: {
6
+ chainName: 'hippoprotocoltestnet',
7
+ clientId: '07-tendermint-0',
8
+ connectionId: 'connection-0'
9
+ },
10
+ chain2: {
11
+ chainName: 'osmosistestnet',
12
+ clientId: '07-tendermint-4754',
13
+ connectionId: 'connection-4185'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-0',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-10743',
22
+ portId: 'transfer'
23
+ },
24
+ ordering: 'unordered',
25
+ version: 'ics20-1',
26
+ tags: {
27
+ status: 'live',
28
+ preferred: true
29
+ }
30
+ }]
31
+ }];
32
+ exports.default = info;
@@ -1,2 +1,3 @@
1
1
  export declare const assetList: import("@chain-registry/types").AssetList;
2
2
  export declare const chain: import("@chain-registry/types").Chain;
3
+ export declare const ibcData: import("@chain-registry/types").IBCData[];
@@ -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.assetList = void 0;
6
+ exports.ibcData = exports.chain = exports.assetList = void 0;
7
7
  const asset_list_1 = __importDefault(require("./asset-list"));
8
8
  const chain_1 = __importDefault(require("./chain"));
9
+ const ibc_data_1 = __importDefault(require("./ibc-data"));
9
10
  exports.assetList = asset_list_1.default;
10
11
  exports.chain = chain_1.default;
12
+ exports.ibcData = ibc_data_1.default;
@@ -38,6 +38,7 @@ const _doravotatestnet = __importStar(require("./doravotatestnet"));
38
38
  const _dydxtestnet = __importStar(require("./dydxtestnet"));
39
39
  const _elystestnet = __importStar(require("./elystestnet"));
40
40
  const _empowertestnet = __importStar(require("./empowertestnet"));
41
+ const _hippoprotocoltestnet = __importStar(require("./hippoprotocoltestnet"));
41
42
  const _impacthubtestnet = __importStar(require("./impacthubtestnet"));
42
43
  const _injectivetestnet = __importStar(require("./injectivetestnet"));
43
44
  const _int3facetestnet = __importStar(require("./int3facetestnet"));
@@ -87,6 +88,7 @@ const ibcData = [
87
88
  ..._dydxtestnet.ibcData,
88
89
  ..._elystestnet.ibcData,
89
90
  ..._empowertestnet.ibcData,
91
+ ..._hippoprotocoltestnet.ibcData,
90
92
  ..._impacthubtestnet.ibcData,
91
93
  ..._injectivetestnet.ibcData,
92
94
  ..._int3facetestnet.ibcData,
@@ -432,6 +432,35 @@ const info = [
432
432
  }
433
433
  }]
434
434
  },
435
+ {
436
+ $schema: '../../ibc_data.schema.json',
437
+ chain1: {
438
+ chainName: 'hippoprotocoltestnet',
439
+ clientId: '07-tendermint-0',
440
+ connectionId: 'connection-0'
441
+ },
442
+ chain2: {
443
+ chainName: 'osmosistestnet',
444
+ clientId: '07-tendermint-4754',
445
+ connectionId: 'connection-4185'
446
+ },
447
+ channels: [{
448
+ chain1: {
449
+ channelId: 'channel-0',
450
+ portId: 'transfer'
451
+ },
452
+ chain2: {
453
+ channelId: 'channel-10743',
454
+ portId: 'transfer'
455
+ },
456
+ ordering: 'unordered',
457
+ version: 'ics20-1',
458
+ tags: {
459
+ status: 'live',
460
+ preferred: true
461
+ }
462
+ }]
463
+ },
435
464
  {
436
465
  $schema: '../../ibc_data.schema.json',
437
466
  chain1: {