chain-registry 2.0.4 → 2.0.5
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/allora/ibc-data.js +81 -0
- package/esm/mainnet/allora/index.js +2 -0
- package/esm/mainnet/axelar/ibc-data.js +26 -0
- package/esm/mainnet/cosmoshub/ibc-data.js +26 -0
- package/esm/mainnet/decentr/chain.js +1 -1
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/lombardledger/asset-list.js +1 -1
- package/esm/mainnet/sei/ibc-data.js +26 -0
- package/mainnet/allora/ibc-data.d.ts +3 -0
- package/mainnet/allora/ibc-data.js +83 -0
- package/mainnet/allora/index.d.ts +1 -0
- package/mainnet/allora/index.js +3 -1
- package/mainnet/axelar/ibc-data.js +26 -0
- package/mainnet/cosmoshub/ibc-data.js +26 -0
- package/mainnet/decentr/chain.js +1 -1
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/lombardledger/asset-list.js +1 -1
- package/mainnet/sei/ibc-data.js +26 -0
- package/package.json +3 -3
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain1: {
|
|
5
|
+
chainName: 'allora',
|
|
6
|
+
clientId: '07-tendermint-0',
|
|
7
|
+
connectionId: 'connection-0'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'axelar',
|
|
11
|
+
clientId: '07-tendermint-232',
|
|
12
|
+
connectionId: 'connection-223'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain1: {
|
|
16
|
+
channelId: 'channel-0',
|
|
17
|
+
portId: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain2: {
|
|
20
|
+
channelId: 'channel-164',
|
|
21
|
+
portId: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1',
|
|
25
|
+
tags: {}
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
$schema: '../ibc_data.schema.json',
|
|
30
|
+
chain1: {
|
|
31
|
+
chainName: 'allora',
|
|
32
|
+
clientId: '07-tendermint-2',
|
|
33
|
+
connectionId: 'connection-7'
|
|
34
|
+
},
|
|
35
|
+
chain2: {
|
|
36
|
+
chainName: 'cosmoshub',
|
|
37
|
+
clientId: '07-tendermint-1384',
|
|
38
|
+
connectionId: 'connection-1107'
|
|
39
|
+
},
|
|
40
|
+
channels: [{
|
|
41
|
+
chain1: {
|
|
42
|
+
channelId: 'channel-2',
|
|
43
|
+
portId: 'transfer'
|
|
44
|
+
},
|
|
45
|
+
chain2: {
|
|
46
|
+
channelId: 'channel-1353',
|
|
47
|
+
portId: 'transfer'
|
|
48
|
+
},
|
|
49
|
+
ordering: 'unordered',
|
|
50
|
+
version: 'ics20-1',
|
|
51
|
+
tags: {}
|
|
52
|
+
}]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
$schema: '../ibc_data.schema.json',
|
|
56
|
+
chain1: {
|
|
57
|
+
chainName: 'allora',
|
|
58
|
+
clientId: '07-tendermint-1',
|
|
59
|
+
connectionId: 'connection-1'
|
|
60
|
+
},
|
|
61
|
+
chain2: {
|
|
62
|
+
chainName: 'sei',
|
|
63
|
+
clientId: '07-tendermint-141',
|
|
64
|
+
connectionId: 'connection-175'
|
|
65
|
+
},
|
|
66
|
+
channels: [{
|
|
67
|
+
chain1: {
|
|
68
|
+
channelId: 'channel-1',
|
|
69
|
+
portId: 'transfer'
|
|
70
|
+
},
|
|
71
|
+
chain2: {
|
|
72
|
+
channelId: 'channel-79',
|
|
73
|
+
portId: 'transfer'
|
|
74
|
+
},
|
|
75
|
+
ordering: 'unordered',
|
|
76
|
+
version: 'ics20-1',
|
|
77
|
+
tags: {}
|
|
78
|
+
}]
|
|
79
|
+
}
|
|
80
|
+
];
|
|
81
|
+
export default info;
|
|
@@ -57,6 +57,32 @@ const info = [
|
|
|
57
57
|
}
|
|
58
58
|
}]
|
|
59
59
|
},
|
|
60
|
+
{
|
|
61
|
+
$schema: '../ibc_data.schema.json',
|
|
62
|
+
chain1: {
|
|
63
|
+
chainName: 'allora',
|
|
64
|
+
clientId: '07-tendermint-0',
|
|
65
|
+
connectionId: 'connection-0'
|
|
66
|
+
},
|
|
67
|
+
chain2: {
|
|
68
|
+
chainName: 'axelar',
|
|
69
|
+
clientId: '07-tendermint-232',
|
|
70
|
+
connectionId: 'connection-223'
|
|
71
|
+
},
|
|
72
|
+
channels: [{
|
|
73
|
+
chain1: {
|
|
74
|
+
channelId: 'channel-0',
|
|
75
|
+
portId: 'transfer'
|
|
76
|
+
},
|
|
77
|
+
chain2: {
|
|
78
|
+
channelId: 'channel-164',
|
|
79
|
+
portId: 'transfer'
|
|
80
|
+
},
|
|
81
|
+
ordering: 'unordered',
|
|
82
|
+
version: 'ics20-1',
|
|
83
|
+
tags: {}
|
|
84
|
+
}]
|
|
85
|
+
},
|
|
60
86
|
{
|
|
61
87
|
$schema: '../ibc_data.schema.json',
|
|
62
88
|
chain1: {
|
|
@@ -112,6 +112,32 @@ const info = [
|
|
|
112
112
|
tags: {}
|
|
113
113
|
}]
|
|
114
114
|
},
|
|
115
|
+
{
|
|
116
|
+
$schema: '../ibc_data.schema.json',
|
|
117
|
+
chain1: {
|
|
118
|
+
chainName: 'allora',
|
|
119
|
+
clientId: '07-tendermint-2',
|
|
120
|
+
connectionId: 'connection-7'
|
|
121
|
+
},
|
|
122
|
+
chain2: {
|
|
123
|
+
chainName: 'cosmoshub',
|
|
124
|
+
clientId: '07-tendermint-1384',
|
|
125
|
+
connectionId: 'connection-1107'
|
|
126
|
+
},
|
|
127
|
+
channels: [{
|
|
128
|
+
chain1: {
|
|
129
|
+
channelId: 'channel-2',
|
|
130
|
+
portId: 'transfer'
|
|
131
|
+
},
|
|
132
|
+
chain2: {
|
|
133
|
+
channelId: 'channel-1353',
|
|
134
|
+
portId: 'transfer'
|
|
135
|
+
},
|
|
136
|
+
ordering: 'unordered',
|
|
137
|
+
version: 'ics20-1',
|
|
138
|
+
tags: {}
|
|
139
|
+
}]
|
|
140
|
+
},
|
|
115
141
|
{
|
|
116
142
|
$schema: '../ibc_data.schema.json',
|
|
117
143
|
chain1: {
|
|
@@ -152,7 +152,7 @@ const info = {
|
|
|
152
152
|
txPage: 'https://explorer.nodexcapital.com/decentr/tx/${txHash}'
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
|
-
kind: 'Explorer
|
|
155
|
+
kind: 'Explorer CommunityNode',
|
|
156
156
|
url: 'https://explorer.comunitynode.my.id/decentr',
|
|
157
157
|
txPage: 'https://explorer.comunitynode.my.id/decentr/tx/${txHash}'
|
|
158
158
|
}
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -5,6 +5,7 @@ import * as _acrechain from './acrechain';
|
|
|
5
5
|
import * as _agoric from './agoric';
|
|
6
6
|
import * as _aioz from './aioz';
|
|
7
7
|
import * as _akash from './akash';
|
|
8
|
+
import * as _allora from './allora';
|
|
8
9
|
import * as _andromeda from './andromeda';
|
|
9
10
|
import * as _archway from './archway';
|
|
10
11
|
import * as _arkeo from './arkeo';
|
|
@@ -161,6 +162,7 @@ const ibcData = [
|
|
|
161
162
|
..._agoric.ibcData,
|
|
162
163
|
..._aioz.ibcData,
|
|
163
164
|
..._akash.ibcData,
|
|
165
|
+
..._allora.ibcData,
|
|
164
166
|
..._andromeda.ibcData,
|
|
165
167
|
..._archway.ibcData,
|
|
166
168
|
..._arkeo.ibcData,
|
|
@@ -41,7 +41,7 @@ const info = {
|
|
|
41
41
|
}]
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
|
-
description: 'ustake is a
|
|
44
|
+
description: 'ustake is a synthetic token to implement a PoA with BFT features over CometBFT',
|
|
45
45
|
denomUnits: [{
|
|
46
46
|
denom: 'ustake',
|
|
47
47
|
exponent: 0
|
|
@@ -1,4 +1,30 @@
|
|
|
1
1
|
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain1: {
|
|
5
|
+
chainName: 'allora',
|
|
6
|
+
clientId: '07-tendermint-1',
|
|
7
|
+
connectionId: 'connection-1'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'sei',
|
|
11
|
+
clientId: '07-tendermint-141',
|
|
12
|
+
connectionId: 'connection-175'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain1: {
|
|
16
|
+
channelId: 'channel-1',
|
|
17
|
+
portId: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain2: {
|
|
20
|
+
channelId: 'channel-79',
|
|
21
|
+
portId: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1',
|
|
25
|
+
tags: {}
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
2
28
|
{
|
|
3
29
|
$schema: '../ibc_data.schema.json',
|
|
4
30
|
chain1: {
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../ibc_data.schema.json',
|
|
6
|
+
chain1: {
|
|
7
|
+
chainName: 'allora',
|
|
8
|
+
clientId: '07-tendermint-0',
|
|
9
|
+
connectionId: 'connection-0'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'axelar',
|
|
13
|
+
clientId: '07-tendermint-232',
|
|
14
|
+
connectionId: 'connection-223'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain1: {
|
|
18
|
+
channelId: 'channel-0',
|
|
19
|
+
portId: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain2: {
|
|
22
|
+
channelId: 'channel-164',
|
|
23
|
+
portId: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {}
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
$schema: '../ibc_data.schema.json',
|
|
32
|
+
chain1: {
|
|
33
|
+
chainName: 'allora',
|
|
34
|
+
clientId: '07-tendermint-2',
|
|
35
|
+
connectionId: 'connection-7'
|
|
36
|
+
},
|
|
37
|
+
chain2: {
|
|
38
|
+
chainName: 'cosmoshub',
|
|
39
|
+
clientId: '07-tendermint-1384',
|
|
40
|
+
connectionId: 'connection-1107'
|
|
41
|
+
},
|
|
42
|
+
channels: [{
|
|
43
|
+
chain1: {
|
|
44
|
+
channelId: 'channel-2',
|
|
45
|
+
portId: 'transfer'
|
|
46
|
+
},
|
|
47
|
+
chain2: {
|
|
48
|
+
channelId: 'channel-1353',
|
|
49
|
+
portId: 'transfer'
|
|
50
|
+
},
|
|
51
|
+
ordering: 'unordered',
|
|
52
|
+
version: 'ics20-1',
|
|
53
|
+
tags: {}
|
|
54
|
+
}]
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
$schema: '../ibc_data.schema.json',
|
|
58
|
+
chain1: {
|
|
59
|
+
chainName: 'allora',
|
|
60
|
+
clientId: '07-tendermint-1',
|
|
61
|
+
connectionId: 'connection-1'
|
|
62
|
+
},
|
|
63
|
+
chain2: {
|
|
64
|
+
chainName: 'sei',
|
|
65
|
+
clientId: '07-tendermint-141',
|
|
66
|
+
connectionId: 'connection-175'
|
|
67
|
+
},
|
|
68
|
+
channels: [{
|
|
69
|
+
chain1: {
|
|
70
|
+
channelId: 'channel-1',
|
|
71
|
+
portId: 'transfer'
|
|
72
|
+
},
|
|
73
|
+
chain2: {
|
|
74
|
+
channelId: 'channel-79',
|
|
75
|
+
portId: 'transfer'
|
|
76
|
+
},
|
|
77
|
+
ordering: 'unordered',
|
|
78
|
+
version: 'ics20-1',
|
|
79
|
+
tags: {}
|
|
80
|
+
}]
|
|
81
|
+
}
|
|
82
|
+
];
|
|
83
|
+
exports.default = info;
|
package/mainnet/allora/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;
|
|
@@ -59,6 +59,32 @@ const info = [
|
|
|
59
59
|
}
|
|
60
60
|
}]
|
|
61
61
|
},
|
|
62
|
+
{
|
|
63
|
+
$schema: '../ibc_data.schema.json',
|
|
64
|
+
chain1: {
|
|
65
|
+
chainName: 'allora',
|
|
66
|
+
clientId: '07-tendermint-0',
|
|
67
|
+
connectionId: 'connection-0'
|
|
68
|
+
},
|
|
69
|
+
chain2: {
|
|
70
|
+
chainName: 'axelar',
|
|
71
|
+
clientId: '07-tendermint-232',
|
|
72
|
+
connectionId: 'connection-223'
|
|
73
|
+
},
|
|
74
|
+
channels: [{
|
|
75
|
+
chain1: {
|
|
76
|
+
channelId: 'channel-0',
|
|
77
|
+
portId: 'transfer'
|
|
78
|
+
},
|
|
79
|
+
chain2: {
|
|
80
|
+
channelId: 'channel-164',
|
|
81
|
+
portId: 'transfer'
|
|
82
|
+
},
|
|
83
|
+
ordering: 'unordered',
|
|
84
|
+
version: 'ics20-1',
|
|
85
|
+
tags: {}
|
|
86
|
+
}]
|
|
87
|
+
},
|
|
62
88
|
{
|
|
63
89
|
$schema: '../ibc_data.schema.json',
|
|
64
90
|
chain1: {
|
|
@@ -114,6 +114,32 @@ const info = [
|
|
|
114
114
|
tags: {}
|
|
115
115
|
}]
|
|
116
116
|
},
|
|
117
|
+
{
|
|
118
|
+
$schema: '../ibc_data.schema.json',
|
|
119
|
+
chain1: {
|
|
120
|
+
chainName: 'allora',
|
|
121
|
+
clientId: '07-tendermint-2',
|
|
122
|
+
connectionId: 'connection-7'
|
|
123
|
+
},
|
|
124
|
+
chain2: {
|
|
125
|
+
chainName: 'cosmoshub',
|
|
126
|
+
clientId: '07-tendermint-1384',
|
|
127
|
+
connectionId: 'connection-1107'
|
|
128
|
+
},
|
|
129
|
+
channels: [{
|
|
130
|
+
chain1: {
|
|
131
|
+
channelId: 'channel-2',
|
|
132
|
+
portId: 'transfer'
|
|
133
|
+
},
|
|
134
|
+
chain2: {
|
|
135
|
+
channelId: 'channel-1353',
|
|
136
|
+
portId: 'transfer'
|
|
137
|
+
},
|
|
138
|
+
ordering: 'unordered',
|
|
139
|
+
version: 'ics20-1',
|
|
140
|
+
tags: {}
|
|
141
|
+
}]
|
|
142
|
+
},
|
|
117
143
|
{
|
|
118
144
|
$schema: '../ibc_data.schema.json',
|
|
119
145
|
chain1: {
|
package/mainnet/decentr/chain.js
CHANGED
|
@@ -154,7 +154,7 @@ const info = {
|
|
|
154
154
|
txPage: 'https://explorer.nodexcapital.com/decentr/tx/${txHash}'
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
|
-
kind: 'Explorer
|
|
157
|
+
kind: 'Explorer CommunityNode',
|
|
158
158
|
url: 'https://explorer.comunitynode.my.id/decentr',
|
|
159
159
|
txPage: 'https://explorer.comunitynode.my.id/decentr/tx/${txHash}'
|
|
160
160
|
}
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -30,6 +30,7 @@ const _acrechain = __importStar(require("./acrechain"));
|
|
|
30
30
|
const _agoric = __importStar(require("./agoric"));
|
|
31
31
|
const _aioz = __importStar(require("./aioz"));
|
|
32
32
|
const _akash = __importStar(require("./akash"));
|
|
33
|
+
const _allora = __importStar(require("./allora"));
|
|
33
34
|
const _andromeda = __importStar(require("./andromeda"));
|
|
34
35
|
const _archway = __importStar(require("./archway"));
|
|
35
36
|
const _arkeo = __importStar(require("./arkeo"));
|
|
@@ -186,6 +187,7 @@ const ibcData = [
|
|
|
186
187
|
..._agoric.ibcData,
|
|
187
188
|
..._aioz.ibcData,
|
|
188
189
|
..._akash.ibcData,
|
|
190
|
+
..._allora.ibcData,
|
|
189
191
|
..._andromeda.ibcData,
|
|
190
192
|
..._archway.ibcData,
|
|
191
193
|
..._arkeo.ibcData,
|
|
@@ -43,7 +43,7 @@ const info = {
|
|
|
43
43
|
}]
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
|
-
description: 'ustake is a
|
|
46
|
+
description: 'ustake is a synthetic token to implement a PoA with BFT features over CometBFT',
|
|
47
47
|
denomUnits: [{
|
|
48
48
|
denom: 'ustake',
|
|
49
49
|
exponent: 0
|
package/mainnet/sei/ibc-data.js
CHANGED
|
@@ -1,6 +1,32 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../ibc_data.schema.json',
|
|
6
|
+
chain1: {
|
|
7
|
+
chainName: 'allora',
|
|
8
|
+
clientId: '07-tendermint-1',
|
|
9
|
+
connectionId: 'connection-1'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'sei',
|
|
13
|
+
clientId: '07-tendermint-141',
|
|
14
|
+
connectionId: 'connection-175'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain1: {
|
|
18
|
+
channelId: 'channel-1',
|
|
19
|
+
portId: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain2: {
|
|
22
|
+
channelId: 'channel-79',
|
|
23
|
+
portId: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {}
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
4
30
|
{
|
|
5
31
|
$schema: '../ibc_data.schema.json',
|
|
6
32
|
chain1: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
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.5"
|
|
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": "1e8678ab80ee8d05828ed59e2be2462ed35de67c"
|
|
43
43
|
}
|