chain-registry 2.0.134 → 2.0.136
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.
- package/esm/mainnet/cosmoshub/ibc-data.js +31 -0
- package/esm/mainnet/divine/ibc-data.js +62 -0
- package/esm/mainnet/divine/index.js +2 -0
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/mirage/ibc-data.js +6 -6
- package/esm/mainnet/osmosis/ibc-data.js +37 -6
- package/esm/testnet/cosmosicsprovidertestnet/ibc-data.js +31 -0
- package/esm/testnet/divinetestnet/ibc-data.js +30 -0
- package/mainnet/cosmoshub/ibc-data.js +31 -0
- package/mainnet/divine/ibc-data.d.ts +3 -0
- package/mainnet/divine/ibc-data.js +64 -0
- package/mainnet/divine/index.d.ts +1 -0
- package/mainnet/divine/index.js +3 -1
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/mirage/ibc-data.js +6 -6
- package/mainnet/osmosis/ibc-data.js +37 -6
- package/package.json +3 -3
- package/testnet/cosmosicsprovidertestnet/ibc-data.js +31 -0
- package/testnet/divinetestnet/ibc-data.js +30 -0
|
@@ -637,6 +637,37 @@ const info = [
|
|
|
637
637
|
version: 'ics20-1'
|
|
638
638
|
}]
|
|
639
639
|
},
|
|
640
|
+
{
|
|
641
|
+
$schema: '../ibc_data.schema.json',
|
|
642
|
+
chain1: {
|
|
643
|
+
chainName: 'cosmoshub',
|
|
644
|
+
chainId: 'cosmoshub-4',
|
|
645
|
+
clientId: '07-tendermint-1457',
|
|
646
|
+
connectionId: 'connection-1199'
|
|
647
|
+
},
|
|
648
|
+
chain2: {
|
|
649
|
+
chainName: 'divine',
|
|
650
|
+
chainId: 'divine-1',
|
|
651
|
+
clientId: '07-tendermint-6',
|
|
652
|
+
connectionId: 'connection-6'
|
|
653
|
+
},
|
|
654
|
+
channels: [{
|
|
655
|
+
chain1: {
|
|
656
|
+
channelId: 'channel-1672',
|
|
657
|
+
portId: 'transfer'
|
|
658
|
+
},
|
|
659
|
+
chain2: {
|
|
660
|
+
channelId: 'channel-1',
|
|
661
|
+
portId: 'transfer'
|
|
662
|
+
},
|
|
663
|
+
ordering: 'unordered',
|
|
664
|
+
version: 'ics20-1',
|
|
665
|
+
tags: {
|
|
666
|
+
preferred: true,
|
|
667
|
+
status: 'ACTIVE'
|
|
668
|
+
}
|
|
669
|
+
}]
|
|
670
|
+
},
|
|
640
671
|
{
|
|
641
672
|
$schema: '../ibc_data.schema.json',
|
|
642
673
|
chain1: {
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'cosmoshub',
|
|
5
|
+
chainId: 'cosmoshub-4',
|
|
6
|
+
clientId: '07-tendermint-1457',
|
|
7
|
+
connectionId: 'connection-1199'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'divine',
|
|
11
|
+
chainId: 'divine-1',
|
|
12
|
+
clientId: '07-tendermint-6',
|
|
13
|
+
connectionId: 'connection-6'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-1672',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-1',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true,
|
|
28
|
+
status: 'ACTIVE'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}, {
|
|
32
|
+
$schema: '../ibc_data.schema.json',
|
|
33
|
+
chain1: {
|
|
34
|
+
chainName: 'divine',
|
|
35
|
+
chainId: 'divine-1',
|
|
36
|
+
clientId: '07-tendermint-2',
|
|
37
|
+
connectionId: 'connection-2'
|
|
38
|
+
},
|
|
39
|
+
chain2: {
|
|
40
|
+
chainName: 'osmosis',
|
|
41
|
+
chainId: 'osmosis-1',
|
|
42
|
+
clientId: '07-tendermint-3647',
|
|
43
|
+
connectionId: 'connection-10994'
|
|
44
|
+
},
|
|
45
|
+
channels: [{
|
|
46
|
+
chain1: {
|
|
47
|
+
channelId: 'channel-0',
|
|
48
|
+
portId: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
chain2: {
|
|
51
|
+
channelId: 'channel-108620',
|
|
52
|
+
portId: 'transfer'
|
|
53
|
+
},
|
|
54
|
+
ordering: 'unordered',
|
|
55
|
+
version: 'ics20-1',
|
|
56
|
+
tags: {
|
|
57
|
+
preferred: true,
|
|
58
|
+
status: 'ACTIVE'
|
|
59
|
+
}
|
|
60
|
+
}]
|
|
61
|
+
}];
|
|
62
|
+
export default info;
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -43,6 +43,7 @@ import * as _cryptoorgchain from './cryptoorgchain';
|
|
|
43
43
|
import * as _decentr from './decentr';
|
|
44
44
|
import * as _desmos from './desmos';
|
|
45
45
|
import * as _dhealth from './dhealth';
|
|
46
|
+
import * as _divine from './divine';
|
|
46
47
|
import * as _doravota from './doravota';
|
|
47
48
|
import * as _dungeon from './dungeon';
|
|
48
49
|
import * as _dydx from './dydx';
|
|
@@ -219,6 +220,7 @@ const ibcData = [
|
|
|
219
220
|
..._decentr.ibcData,
|
|
220
221
|
..._desmos.ibcData,
|
|
221
222
|
..._dhealth.ibcData,
|
|
223
|
+
..._divine.ibcData,
|
|
222
224
|
..._doravota.ibcData,
|
|
223
225
|
..._dungeon.ibcData,
|
|
224
226
|
..._dydx.ibcData,
|
|
@@ -3,22 +3,22 @@ const info = [{
|
|
|
3
3
|
chain1: {
|
|
4
4
|
chainName: 'mirage',
|
|
5
5
|
chainId: 'mirage-1',
|
|
6
|
-
clientId: '07-tendermint-
|
|
7
|
-
connectionId: 'connection-
|
|
6
|
+
clientId: '07-tendermint-2',
|
|
7
|
+
connectionId: 'connection-1'
|
|
8
8
|
},
|
|
9
9
|
chain2: {
|
|
10
10
|
chainName: 'osmosis',
|
|
11
11
|
chainId: 'osmosis-1',
|
|
12
|
-
clientId: '07-tendermint-
|
|
13
|
-
connectionId: 'connection-
|
|
12
|
+
clientId: '07-tendermint-3654',
|
|
13
|
+
connectionId: 'connection-11001'
|
|
14
14
|
},
|
|
15
15
|
channels: [{
|
|
16
16
|
chain1: {
|
|
17
|
-
channelId: 'channel-
|
|
17
|
+
channelId: 'channel-1',
|
|
18
18
|
portId: 'transfer'
|
|
19
19
|
},
|
|
20
20
|
chain2: {
|
|
21
|
-
channelId: 'channel-
|
|
21
|
+
channelId: 'channel-108698',
|
|
22
22
|
portId: 'transfer'
|
|
23
23
|
},
|
|
24
24
|
ordering: 'unordered',
|
|
@@ -1361,6 +1361,37 @@ const info = [
|
|
|
1361
1361
|
}
|
|
1362
1362
|
}]
|
|
1363
1363
|
},
|
|
1364
|
+
{
|
|
1365
|
+
$schema: '../ibc_data.schema.json',
|
|
1366
|
+
chain1: {
|
|
1367
|
+
chainName: 'divine',
|
|
1368
|
+
chainId: 'divine-1',
|
|
1369
|
+
clientId: '07-tendermint-2',
|
|
1370
|
+
connectionId: 'connection-2'
|
|
1371
|
+
},
|
|
1372
|
+
chain2: {
|
|
1373
|
+
chainName: 'osmosis',
|
|
1374
|
+
chainId: 'osmosis-1',
|
|
1375
|
+
clientId: '07-tendermint-3647',
|
|
1376
|
+
connectionId: 'connection-10994'
|
|
1377
|
+
},
|
|
1378
|
+
channels: [{
|
|
1379
|
+
chain1: {
|
|
1380
|
+
channelId: 'channel-0',
|
|
1381
|
+
portId: 'transfer'
|
|
1382
|
+
},
|
|
1383
|
+
chain2: {
|
|
1384
|
+
channelId: 'channel-108620',
|
|
1385
|
+
portId: 'transfer'
|
|
1386
|
+
},
|
|
1387
|
+
ordering: 'unordered',
|
|
1388
|
+
version: 'ics20-1',
|
|
1389
|
+
tags: {
|
|
1390
|
+
preferred: true,
|
|
1391
|
+
status: 'ACTIVE'
|
|
1392
|
+
}
|
|
1393
|
+
}]
|
|
1394
|
+
},
|
|
1364
1395
|
{
|
|
1365
1396
|
$schema: '../ibc_data.schema.json',
|
|
1366
1397
|
chain1: {
|
|
@@ -3136,22 +3167,22 @@ const info = [
|
|
|
3136
3167
|
chain1: {
|
|
3137
3168
|
chainName: 'mirage',
|
|
3138
3169
|
chainId: 'mirage-1',
|
|
3139
|
-
clientId: '07-tendermint-
|
|
3140
|
-
connectionId: 'connection-
|
|
3170
|
+
clientId: '07-tendermint-2',
|
|
3171
|
+
connectionId: 'connection-1'
|
|
3141
3172
|
},
|
|
3142
3173
|
chain2: {
|
|
3143
3174
|
chainName: 'osmosis',
|
|
3144
3175
|
chainId: 'osmosis-1',
|
|
3145
|
-
clientId: '07-tendermint-
|
|
3146
|
-
connectionId: 'connection-
|
|
3176
|
+
clientId: '07-tendermint-3654',
|
|
3177
|
+
connectionId: 'connection-11001'
|
|
3147
3178
|
},
|
|
3148
3179
|
channels: [{
|
|
3149
3180
|
chain1: {
|
|
3150
|
-
channelId: 'channel-
|
|
3181
|
+
channelId: 'channel-1',
|
|
3151
3182
|
portId: 'transfer'
|
|
3152
3183
|
},
|
|
3153
3184
|
chain2: {
|
|
3154
|
-
channelId: 'channel-
|
|
3185
|
+
channelId: 'channel-108698',
|
|
3155
3186
|
portId: 'transfer'
|
|
3156
3187
|
},
|
|
3157
3188
|
ordering: 'unordered',
|
|
@@ -61,6 +61,37 @@ const info = [
|
|
|
61
61
|
}
|
|
62
62
|
}]
|
|
63
63
|
},
|
|
64
|
+
{
|
|
65
|
+
$schema: '../../ibc_data.schema.json',
|
|
66
|
+
chain1: {
|
|
67
|
+
chainName: 'cosmosicsprovidertestnet',
|
|
68
|
+
chainId: 'provider',
|
|
69
|
+
clientId: '07-tendermint-399',
|
|
70
|
+
connectionId: 'connection-286'
|
|
71
|
+
},
|
|
72
|
+
chain2: {
|
|
73
|
+
chainName: 'divinetestnet',
|
|
74
|
+
chainId: 'divine-testnet-1',
|
|
75
|
+
clientId: '07-tendermint-4',
|
|
76
|
+
connectionId: 'connection-1'
|
|
77
|
+
},
|
|
78
|
+
channels: [{
|
|
79
|
+
chain1: {
|
|
80
|
+
channelId: 'channel-572',
|
|
81
|
+
portId: 'transfer'
|
|
82
|
+
},
|
|
83
|
+
chain2: {
|
|
84
|
+
channelId: 'channel-1',
|
|
85
|
+
portId: 'transfer'
|
|
86
|
+
},
|
|
87
|
+
ordering: 'unordered',
|
|
88
|
+
version: 'ics20-1',
|
|
89
|
+
tags: {
|
|
90
|
+
preferred: true,
|
|
91
|
+
status: 'ACTIVE'
|
|
92
|
+
}
|
|
93
|
+
}]
|
|
94
|
+
},
|
|
64
95
|
{
|
|
65
96
|
$schema: '../../ibc_data.schema.json',
|
|
66
97
|
chain1: {
|
|
@@ -1,4 +1,34 @@
|
|
|
1
1
|
const info = [{
|
|
2
|
+
$schema: '../../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'cosmosicsprovidertestnet',
|
|
5
|
+
chainId: 'provider',
|
|
6
|
+
clientId: '07-tendermint-399',
|
|
7
|
+
connectionId: 'connection-286'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'divinetestnet',
|
|
11
|
+
chainId: 'divine-testnet-1',
|
|
12
|
+
clientId: '07-tendermint-4',
|
|
13
|
+
connectionId: 'connection-1'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-572',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-1',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true,
|
|
28
|
+
status: 'ACTIVE'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}, {
|
|
2
32
|
$schema: '../../ibc_data.schema.json',
|
|
3
33
|
chain1: {
|
|
4
34
|
chainName: 'divinetestnet',
|
|
@@ -639,6 +639,37 @@ const info = [
|
|
|
639
639
|
version: 'ics20-1'
|
|
640
640
|
}]
|
|
641
641
|
},
|
|
642
|
+
{
|
|
643
|
+
$schema: '../ibc_data.schema.json',
|
|
644
|
+
chain1: {
|
|
645
|
+
chainName: 'cosmoshub',
|
|
646
|
+
chainId: 'cosmoshub-4',
|
|
647
|
+
clientId: '07-tendermint-1457',
|
|
648
|
+
connectionId: 'connection-1199'
|
|
649
|
+
},
|
|
650
|
+
chain2: {
|
|
651
|
+
chainName: 'divine',
|
|
652
|
+
chainId: 'divine-1',
|
|
653
|
+
clientId: '07-tendermint-6',
|
|
654
|
+
connectionId: 'connection-6'
|
|
655
|
+
},
|
|
656
|
+
channels: [{
|
|
657
|
+
chain1: {
|
|
658
|
+
channelId: 'channel-1672',
|
|
659
|
+
portId: 'transfer'
|
|
660
|
+
},
|
|
661
|
+
chain2: {
|
|
662
|
+
channelId: 'channel-1',
|
|
663
|
+
portId: 'transfer'
|
|
664
|
+
},
|
|
665
|
+
ordering: 'unordered',
|
|
666
|
+
version: 'ics20-1',
|
|
667
|
+
tags: {
|
|
668
|
+
preferred: true,
|
|
669
|
+
status: 'ACTIVE'
|
|
670
|
+
}
|
|
671
|
+
}]
|
|
672
|
+
},
|
|
642
673
|
{
|
|
643
674
|
$schema: '../ibc_data.schema.json',
|
|
644
675
|
chain1: {
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'cosmoshub',
|
|
7
|
+
chainId: 'cosmoshub-4',
|
|
8
|
+
clientId: '07-tendermint-1457',
|
|
9
|
+
connectionId: 'connection-1199'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'divine',
|
|
13
|
+
chainId: 'divine-1',
|
|
14
|
+
clientId: '07-tendermint-6',
|
|
15
|
+
connectionId: 'connection-6'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-1672',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-1',
|
|
24
|
+
portId: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
preferred: true,
|
|
30
|
+
status: 'ACTIVE'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
}, {
|
|
34
|
+
$schema: '../ibc_data.schema.json',
|
|
35
|
+
chain1: {
|
|
36
|
+
chainName: 'divine',
|
|
37
|
+
chainId: 'divine-1',
|
|
38
|
+
clientId: '07-tendermint-2',
|
|
39
|
+
connectionId: 'connection-2'
|
|
40
|
+
},
|
|
41
|
+
chain2: {
|
|
42
|
+
chainName: 'osmosis',
|
|
43
|
+
chainId: 'osmosis-1',
|
|
44
|
+
clientId: '07-tendermint-3647',
|
|
45
|
+
connectionId: 'connection-10994'
|
|
46
|
+
},
|
|
47
|
+
channels: [{
|
|
48
|
+
chain1: {
|
|
49
|
+
channelId: 'channel-0',
|
|
50
|
+
portId: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
chain2: {
|
|
53
|
+
channelId: 'channel-108620',
|
|
54
|
+
portId: 'transfer'
|
|
55
|
+
},
|
|
56
|
+
ordering: 'unordered',
|
|
57
|
+
version: 'ics20-1',
|
|
58
|
+
tags: {
|
|
59
|
+
preferred: true,
|
|
60
|
+
status: 'ACTIVE'
|
|
61
|
+
}
|
|
62
|
+
}]
|
|
63
|
+
}];
|
|
64
|
+
exports.default = info;
|
package/mainnet/divine/index.js
CHANGED
|
@@ -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;
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -68,6 +68,7 @@ const _cryptoorgchain = __importStar(require("./cryptoorgchain"));
|
|
|
68
68
|
const _decentr = __importStar(require("./decentr"));
|
|
69
69
|
const _desmos = __importStar(require("./desmos"));
|
|
70
70
|
const _dhealth = __importStar(require("./dhealth"));
|
|
71
|
+
const _divine = __importStar(require("./divine"));
|
|
71
72
|
const _doravota = __importStar(require("./doravota"));
|
|
72
73
|
const _dungeon = __importStar(require("./dungeon"));
|
|
73
74
|
const _dydx = __importStar(require("./dydx"));
|
|
@@ -244,6 +245,7 @@ const ibcData = [
|
|
|
244
245
|
..._decentr.ibcData,
|
|
245
246
|
..._desmos.ibcData,
|
|
246
247
|
..._dhealth.ibcData,
|
|
248
|
+
..._divine.ibcData,
|
|
247
249
|
..._doravota.ibcData,
|
|
248
250
|
..._dungeon.ibcData,
|
|
249
251
|
..._dydx.ibcData,
|
|
@@ -5,22 +5,22 @@ const info = [{
|
|
|
5
5
|
chain1: {
|
|
6
6
|
chainName: 'mirage',
|
|
7
7
|
chainId: 'mirage-1',
|
|
8
|
-
clientId: '07-tendermint-
|
|
9
|
-
connectionId: 'connection-
|
|
8
|
+
clientId: '07-tendermint-2',
|
|
9
|
+
connectionId: 'connection-1'
|
|
10
10
|
},
|
|
11
11
|
chain2: {
|
|
12
12
|
chainName: 'osmosis',
|
|
13
13
|
chainId: 'osmosis-1',
|
|
14
|
-
clientId: '07-tendermint-
|
|
15
|
-
connectionId: 'connection-
|
|
14
|
+
clientId: '07-tendermint-3654',
|
|
15
|
+
connectionId: 'connection-11001'
|
|
16
16
|
},
|
|
17
17
|
channels: [{
|
|
18
18
|
chain1: {
|
|
19
|
-
channelId: 'channel-
|
|
19
|
+
channelId: 'channel-1',
|
|
20
20
|
portId: 'transfer'
|
|
21
21
|
},
|
|
22
22
|
chain2: {
|
|
23
|
-
channelId: 'channel-
|
|
23
|
+
channelId: 'channel-108698',
|
|
24
24
|
portId: 'transfer'
|
|
25
25
|
},
|
|
26
26
|
ordering: 'unordered',
|
|
@@ -1363,6 +1363,37 @@ const info = [
|
|
|
1363
1363
|
}
|
|
1364
1364
|
}]
|
|
1365
1365
|
},
|
|
1366
|
+
{
|
|
1367
|
+
$schema: '../ibc_data.schema.json',
|
|
1368
|
+
chain1: {
|
|
1369
|
+
chainName: 'divine',
|
|
1370
|
+
chainId: 'divine-1',
|
|
1371
|
+
clientId: '07-tendermint-2',
|
|
1372
|
+
connectionId: 'connection-2'
|
|
1373
|
+
},
|
|
1374
|
+
chain2: {
|
|
1375
|
+
chainName: 'osmosis',
|
|
1376
|
+
chainId: 'osmosis-1',
|
|
1377
|
+
clientId: '07-tendermint-3647',
|
|
1378
|
+
connectionId: 'connection-10994'
|
|
1379
|
+
},
|
|
1380
|
+
channels: [{
|
|
1381
|
+
chain1: {
|
|
1382
|
+
channelId: 'channel-0',
|
|
1383
|
+
portId: 'transfer'
|
|
1384
|
+
},
|
|
1385
|
+
chain2: {
|
|
1386
|
+
channelId: 'channel-108620',
|
|
1387
|
+
portId: 'transfer'
|
|
1388
|
+
},
|
|
1389
|
+
ordering: 'unordered',
|
|
1390
|
+
version: 'ics20-1',
|
|
1391
|
+
tags: {
|
|
1392
|
+
preferred: true,
|
|
1393
|
+
status: 'ACTIVE'
|
|
1394
|
+
}
|
|
1395
|
+
}]
|
|
1396
|
+
},
|
|
1366
1397
|
{
|
|
1367
1398
|
$schema: '../ibc_data.schema.json',
|
|
1368
1399
|
chain1: {
|
|
@@ -3138,22 +3169,22 @@ const info = [
|
|
|
3138
3169
|
chain1: {
|
|
3139
3170
|
chainName: 'mirage',
|
|
3140
3171
|
chainId: 'mirage-1',
|
|
3141
|
-
clientId: '07-tendermint-
|
|
3142
|
-
connectionId: 'connection-
|
|
3172
|
+
clientId: '07-tendermint-2',
|
|
3173
|
+
connectionId: 'connection-1'
|
|
3143
3174
|
},
|
|
3144
3175
|
chain2: {
|
|
3145
3176
|
chainName: 'osmosis',
|
|
3146
3177
|
chainId: 'osmosis-1',
|
|
3147
|
-
clientId: '07-tendermint-
|
|
3148
|
-
connectionId: 'connection-
|
|
3178
|
+
clientId: '07-tendermint-3654',
|
|
3179
|
+
connectionId: 'connection-11001'
|
|
3149
3180
|
},
|
|
3150
3181
|
channels: [{
|
|
3151
3182
|
chain1: {
|
|
3152
|
-
channelId: 'channel-
|
|
3183
|
+
channelId: 'channel-1',
|
|
3153
3184
|
portId: 'transfer'
|
|
3154
3185
|
},
|
|
3155
3186
|
chain2: {
|
|
3156
|
-
channelId: 'channel-
|
|
3187
|
+
channelId: 'channel-108698',
|
|
3157
3188
|
portId: 'transfer'
|
|
3158
3189
|
},
|
|
3159
3190
|
ordering: 'unordered',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.136",
|
|
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.
|
|
32
|
+
"@chain-registry/types": "^2.0.136"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "e57d8aeaeebeebbc5ed41864adc23bb0671d7517"
|
|
43
43
|
}
|
|
@@ -63,6 +63,37 @@ const info = [
|
|
|
63
63
|
}
|
|
64
64
|
}]
|
|
65
65
|
},
|
|
66
|
+
{
|
|
67
|
+
$schema: '../../ibc_data.schema.json',
|
|
68
|
+
chain1: {
|
|
69
|
+
chainName: 'cosmosicsprovidertestnet',
|
|
70
|
+
chainId: 'provider',
|
|
71
|
+
clientId: '07-tendermint-399',
|
|
72
|
+
connectionId: 'connection-286'
|
|
73
|
+
},
|
|
74
|
+
chain2: {
|
|
75
|
+
chainName: 'divinetestnet',
|
|
76
|
+
chainId: 'divine-testnet-1',
|
|
77
|
+
clientId: '07-tendermint-4',
|
|
78
|
+
connectionId: 'connection-1'
|
|
79
|
+
},
|
|
80
|
+
channels: [{
|
|
81
|
+
chain1: {
|
|
82
|
+
channelId: 'channel-572',
|
|
83
|
+
portId: 'transfer'
|
|
84
|
+
},
|
|
85
|
+
chain2: {
|
|
86
|
+
channelId: 'channel-1',
|
|
87
|
+
portId: 'transfer'
|
|
88
|
+
},
|
|
89
|
+
ordering: 'unordered',
|
|
90
|
+
version: 'ics20-1',
|
|
91
|
+
tags: {
|
|
92
|
+
preferred: true,
|
|
93
|
+
status: 'ACTIVE'
|
|
94
|
+
}
|
|
95
|
+
}]
|
|
96
|
+
},
|
|
66
97
|
{
|
|
67
98
|
$schema: '../../ibc_data.schema.json',
|
|
68
99
|
chain1: {
|
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const info = [{
|
|
4
|
+
$schema: '../../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'cosmosicsprovidertestnet',
|
|
7
|
+
chainId: 'provider',
|
|
8
|
+
clientId: '07-tendermint-399',
|
|
9
|
+
connectionId: 'connection-286'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'divinetestnet',
|
|
13
|
+
chainId: 'divine-testnet-1',
|
|
14
|
+
clientId: '07-tendermint-4',
|
|
15
|
+
connectionId: 'connection-1'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-572',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-1',
|
|
24
|
+
portId: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
preferred: true,
|
|
30
|
+
status: 'ACTIVE'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
}, {
|
|
4
34
|
$schema: '../../ibc_data.schema.json',
|
|
5
35
|
chain1: {
|
|
6
36
|
chainName: 'divinetestnet',
|