chain-registry 1.69.222 → 1.69.223
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/dungeon/ibc.js +28 -0
- package/esm/mainnet/elys/ibc.js +29 -0
- package/esm/mainnet/kopi/ibc.js +29 -0
- package/esm/mainnet/noble/ibc.js +29 -0
- package/esm/testnet/agoricdevnet/ibc.js +235 -0
- package/esm/testnet/agoricdevnet/index.js +2 -0
- package/esm/testnet/assets.js +2 -0
- package/esm/testnet/axelartestnet/ibc.js +29 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/cosmosicsprovidertestnet/ibc.js +35 -3
- package/esm/testnet/elystestnet/ibc.js +29 -0
- package/esm/testnet/ibc.js +4 -0
- package/esm/testnet/named.js +1 -0
- package/esm/testnet/neutrontestnet/ibc.js +29 -0
- package/esm/testnet/nobletestnet/ibc.js +29 -0
- package/esm/testnet/osmosistestnet/ibc.js +29 -0
- package/esm/testnet/qubeticstestnet/assets.js +26 -0
- package/esm/testnet/qubeticstestnet/chain.js +65 -0
- package/esm/testnet/qubeticstestnet/index.js +4 -0
- package/esm/testnet/stridetestnet/ibc.js +30 -0
- package/esm/testnet/stridetestnet/index.js +2 -0
- package/mainnet/dungeon/ibc.js +28 -0
- package/mainnet/elys/ibc.js +29 -0
- package/mainnet/kopi/ibc.js +29 -0
- package/mainnet/noble/ibc.js +29 -0
- package/package.json +4 -4
- package/testnet/agoricdevnet/ibc.d.ts +3 -0
- package/testnet/agoricdevnet/ibc.js +237 -0
- package/testnet/agoricdevnet/index.d.ts +1 -0
- package/testnet/agoricdevnet/index.js +3 -1
- package/testnet/assets.js +2 -0
- package/testnet/axelartestnet/ibc.js +29 -0
- package/testnet/chains.js +2 -0
- package/testnet/cosmosicsprovidertestnet/ibc.js +35 -3
- package/testnet/elystestnet/ibc.js +29 -0
- package/testnet/ibc.js +4 -0
- package/testnet/named.d.ts +1 -0
- package/testnet/named.js +3 -2
- package/testnet/neutrontestnet/ibc.js +29 -0
- package/testnet/nobletestnet/ibc.js +29 -0
- package/testnet/osmosistestnet/ibc.js +29 -0
- package/testnet/qubeticstestnet/assets.d.ts +3 -0
- package/testnet/qubeticstestnet/assets.js +28 -0
- package/testnet/qubeticstestnet/chain.d.ts +3 -0
- package/testnet/qubeticstestnet/chain.js +67 -0
- package/testnet/qubeticstestnet/index.d.ts +2 -0
- package/testnet/qubeticstestnet/index.js +10 -0
- package/testnet/stridetestnet/ibc.d.ts +3 -0
- package/testnet/stridetestnet/ibc.js +32 -0
- package/testnet/stridetestnet/index.d.ts +1 -0
- package/testnet/stridetestnet/index.js +3 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chain_name: 'qubeticstestnet',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native EVM, governance and staking token of the Qubetics Chain',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'tics',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'TICS',
|
|
11
|
+
exponent: 18
|
|
12
|
+
}],
|
|
13
|
+
base: 'tics',
|
|
14
|
+
name: 'Qubetics Testnet',
|
|
15
|
+
display: 'TICS',
|
|
16
|
+
symbol: 'TICS',
|
|
17
|
+
logo_URIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qubeticstestnet/images/qubetics.png'
|
|
19
|
+
},
|
|
20
|
+
images: [{
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/qubeticstestnet/images/qubetics.png'
|
|
22
|
+
}],
|
|
23
|
+
type_asset: 'sdk.coin'
|
|
24
|
+
}]
|
|
25
|
+
};
|
|
26
|
+
export default info;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chain_name: 'qubeticstestnet',
|
|
4
|
+
status: 'live',
|
|
5
|
+
network_type: 'testnet',
|
|
6
|
+
pretty_name: 'Qubetics Testnet',
|
|
7
|
+
chain_type: 'cosmos',
|
|
8
|
+
chain_id: 'qubetics_9029-1',
|
|
9
|
+
bech32_prefix: 'qubetics',
|
|
10
|
+
daemon_name: 'qubeticsd',
|
|
11
|
+
node_home: '$HOME/.tmp-qubeticsd',
|
|
12
|
+
key_algos: ['ethsecp256k1'],
|
|
13
|
+
extra_codecs: ['ethermint'],
|
|
14
|
+
slip44: 60,
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [{
|
|
17
|
+
denom: 'tics',
|
|
18
|
+
low_gas_price: 20000000000,
|
|
19
|
+
average_gas_price: 25000000000,
|
|
20
|
+
high_gas_price: 40000000000
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
staking_tokens: [{
|
|
25
|
+
denom: 'tics'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {
|
|
29
|
+
git_repo: 'https://github.com/Qubetics/qubetics-chain',
|
|
30
|
+
recommended_version: 'v0.0.1',
|
|
31
|
+
compatible_versions: ['v0.0.1'],
|
|
32
|
+
consensus: {
|
|
33
|
+
type: 'cometbft',
|
|
34
|
+
version: '0.37'
|
|
35
|
+
},
|
|
36
|
+
genesis: {
|
|
37
|
+
genesis_url: 'https://raw.githubusercontent.com/Qubetics/qubetics-testnet-script/refs/heads/main/genesis.json'
|
|
38
|
+
},
|
|
39
|
+
sdk: {
|
|
40
|
+
type: 'cosmos',
|
|
41
|
+
version: '0.47'
|
|
42
|
+
},
|
|
43
|
+
ibc: {
|
|
44
|
+
type: 'go',
|
|
45
|
+
version: 'v7.6.0'
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
apis: {
|
|
49
|
+
rpc: [{
|
|
50
|
+
address: 'https://tendermint-testnet.qubetics.work/',
|
|
51
|
+
provider: 'qubetics'
|
|
52
|
+
}],
|
|
53
|
+
rest: [{
|
|
54
|
+
address: 'https://swagger-testnet.qubetics.work/',
|
|
55
|
+
provider: 'qubetics'
|
|
56
|
+
}],
|
|
57
|
+
grpc: []
|
|
58
|
+
},
|
|
59
|
+
explorers: [{
|
|
60
|
+
kind: 'Qubetics Explorer',
|
|
61
|
+
url: 'https://testnet.qubetics.work/dashboard',
|
|
62
|
+
tx_page: 'https://testnet.qubetics.work/tx/${txHash}'
|
|
63
|
+
}]
|
|
64
|
+
};
|
|
65
|
+
export default info;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../../ibc_data.schema.json',
|
|
3
|
+
chain_1: {
|
|
4
|
+
chain_name: 'agoricdevnet',
|
|
5
|
+
client_id: '07-tendermint-15',
|
|
6
|
+
connection_id: 'connection-15'
|
|
7
|
+
},
|
|
8
|
+
chain_2: {
|
|
9
|
+
chain_name: 'stridetestnet',
|
|
10
|
+
client_id: '07-tendermint-68',
|
|
11
|
+
connection_id: 'connection-44'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain_1: {
|
|
15
|
+
channel_id: 'channel-13',
|
|
16
|
+
port_id: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain_2: {
|
|
19
|
+
channel_id: 'channel-60',
|
|
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;
|
package/mainnet/dungeon/ibc.js
CHANGED
|
@@ -1,6 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain_1: {
|
|
6
|
+
chain_name: 'dungeon',
|
|
7
|
+
client_id: '07-tendermint-22',
|
|
8
|
+
connection_id: 'connection-8630'
|
|
9
|
+
},
|
|
10
|
+
chain_2: {
|
|
11
|
+
chain_name: 'noble',
|
|
12
|
+
client_id: '07-tendermint-163',
|
|
13
|
+
connection_id: 'connection-157'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-5307',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-150',
|
|
22
|
+
port_id: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}, {
|
|
4
32
|
$schema: '../ibc_data.schema.json',
|
|
5
33
|
chain_1: {
|
|
6
34
|
chain_name: 'dungeon',
|
package/mainnet/elys/ibc.js
CHANGED
|
@@ -161,6 +161,35 @@ const info = [
|
|
|
161
161
|
}
|
|
162
162
|
}]
|
|
163
163
|
},
|
|
164
|
+
{
|
|
165
|
+
$schema: '../ibc_data.schema.json',
|
|
166
|
+
chain_1: {
|
|
167
|
+
chain_name: 'elys',
|
|
168
|
+
client_id: '07-tendermint-55',
|
|
169
|
+
connection_id: 'connection-36'
|
|
170
|
+
},
|
|
171
|
+
chain_2: {
|
|
172
|
+
chain_name: 'kopi',
|
|
173
|
+
client_id: '07-tendermint-24',
|
|
174
|
+
connection_id: 'connection-45'
|
|
175
|
+
},
|
|
176
|
+
channels: [{
|
|
177
|
+
chain_1: {
|
|
178
|
+
channel_id: 'channel-25',
|
|
179
|
+
port_id: 'transfer'
|
|
180
|
+
},
|
|
181
|
+
chain_2: {
|
|
182
|
+
channel_id: 'channel-17',
|
|
183
|
+
port_id: 'transfer'
|
|
184
|
+
},
|
|
185
|
+
ordering: 'unordered',
|
|
186
|
+
version: 'ics20-1',
|
|
187
|
+
tags: {
|
|
188
|
+
status: 'live',
|
|
189
|
+
preferred: true
|
|
190
|
+
}
|
|
191
|
+
}]
|
|
192
|
+
},
|
|
164
193
|
{
|
|
165
194
|
$schema: '../ibc_data.schema.json',
|
|
166
195
|
chain_1: {
|
package/mainnet/kopi/ibc.js
CHANGED
|
@@ -30,6 +30,35 @@ const info = [
|
|
|
30
30
|
}
|
|
31
31
|
}]
|
|
32
32
|
},
|
|
33
|
+
{
|
|
34
|
+
$schema: '../ibc_data.schema.json',
|
|
35
|
+
chain_1: {
|
|
36
|
+
chain_name: 'elys',
|
|
37
|
+
client_id: '07-tendermint-55',
|
|
38
|
+
connection_id: 'connection-36'
|
|
39
|
+
},
|
|
40
|
+
chain_2: {
|
|
41
|
+
chain_name: 'kopi',
|
|
42
|
+
client_id: '07-tendermint-24',
|
|
43
|
+
connection_id: 'connection-45'
|
|
44
|
+
},
|
|
45
|
+
channels: [{
|
|
46
|
+
chain_1: {
|
|
47
|
+
channel_id: 'channel-25',
|
|
48
|
+
port_id: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
chain_2: {
|
|
51
|
+
channel_id: 'channel-17',
|
|
52
|
+
port_id: 'transfer'
|
|
53
|
+
},
|
|
54
|
+
ordering: 'unordered',
|
|
55
|
+
version: 'ics20-1',
|
|
56
|
+
tags: {
|
|
57
|
+
status: 'live',
|
|
58
|
+
preferred: true
|
|
59
|
+
}
|
|
60
|
+
}]
|
|
61
|
+
},
|
|
33
62
|
{
|
|
34
63
|
$schema: '../ibc_data.schema.json',
|
|
35
64
|
chain_1: {
|
package/mainnet/noble/ibc.js
CHANGED
|
@@ -260,6 +260,35 @@ const info = [
|
|
|
260
260
|
}
|
|
261
261
|
}]
|
|
262
262
|
},
|
|
263
|
+
{
|
|
264
|
+
$schema: '../ibc_data.schema.json',
|
|
265
|
+
chain_1: {
|
|
266
|
+
chain_name: 'dungeon',
|
|
267
|
+
client_id: '07-tendermint-22',
|
|
268
|
+
connection_id: 'connection-8630'
|
|
269
|
+
},
|
|
270
|
+
chain_2: {
|
|
271
|
+
chain_name: 'noble',
|
|
272
|
+
client_id: '07-tendermint-163',
|
|
273
|
+
connection_id: 'connection-157'
|
|
274
|
+
},
|
|
275
|
+
channels: [{
|
|
276
|
+
chain_1: {
|
|
277
|
+
channel_id: 'channel-5307',
|
|
278
|
+
port_id: 'transfer'
|
|
279
|
+
},
|
|
280
|
+
chain_2: {
|
|
281
|
+
channel_id: 'channel-150',
|
|
282
|
+
port_id: 'transfer'
|
|
283
|
+
},
|
|
284
|
+
ordering: 'unordered',
|
|
285
|
+
version: 'ics20-1',
|
|
286
|
+
tags: {
|
|
287
|
+
status: 'live',
|
|
288
|
+
preferred: true
|
|
289
|
+
}
|
|
290
|
+
}]
|
|
291
|
+
},
|
|
263
292
|
{
|
|
264
293
|
$schema: '../ibc_data.schema.json',
|
|
265
294
|
chain_1: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.223",
|
|
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,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.51.
|
|
32
|
+
"@chain-registry/utils": "^1.51.138",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.138"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "3763106ae158b65f53cc145e3e8e056505c95471"
|
|
47
47
|
}
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../../ibc_data.schema.json',
|
|
6
|
+
chain_1: {
|
|
7
|
+
chain_name: 'agoricdevnet',
|
|
8
|
+
client_id: '07-tendermint-14',
|
|
9
|
+
connection_id: 'connection-14'
|
|
10
|
+
},
|
|
11
|
+
chain_2: {
|
|
12
|
+
chain_name: 'axelartestnet',
|
|
13
|
+
client_id: '07-tendermint-1128',
|
|
14
|
+
connection_id: 'connection-872'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain_1: {
|
|
18
|
+
channel_id: 'channel-12',
|
|
19
|
+
port_id: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain_2: {
|
|
22
|
+
channel_id: 'channel-602',
|
|
23
|
+
port_id: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {
|
|
28
|
+
status: 'live',
|
|
29
|
+
preferred: true
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
$schema: '../../ibc_data.schema.json',
|
|
35
|
+
chain_1: {
|
|
36
|
+
chain_name: 'agoricdevnet',
|
|
37
|
+
client_id: '07-tendermint-21',
|
|
38
|
+
connection_id: 'connection-18'
|
|
39
|
+
},
|
|
40
|
+
chain_2: {
|
|
41
|
+
chain_name: 'celestiatestnet',
|
|
42
|
+
client_id: '07-tendermint-611',
|
|
43
|
+
connection_id: 'connection-662'
|
|
44
|
+
},
|
|
45
|
+
channels: [{
|
|
46
|
+
chain_1: {
|
|
47
|
+
channel_id: 'channel-129',
|
|
48
|
+
port_id: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
chain_2: {
|
|
51
|
+
channel_id: 'channel-399',
|
|
52
|
+
port_id: 'transfer'
|
|
53
|
+
},
|
|
54
|
+
ordering: 'unordered',
|
|
55
|
+
version: 'ics20-1',
|
|
56
|
+
tags: {
|
|
57
|
+
status: 'live',
|
|
58
|
+
preferred: true
|
|
59
|
+
}
|
|
60
|
+
}]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
$schema: '../../ibc_data.schema.json',
|
|
64
|
+
chain_1: {
|
|
65
|
+
chain_name: 'agoricdevnet',
|
|
66
|
+
client_id: '07-tendermint-18',
|
|
67
|
+
connection_id: 'connection-17'
|
|
68
|
+
},
|
|
69
|
+
chain_2: {
|
|
70
|
+
chain_name: 'cosmosicsprovidertestnet',
|
|
71
|
+
client_id: '07-tendermint-311',
|
|
72
|
+
connection_id: 'connection-224'
|
|
73
|
+
},
|
|
74
|
+
channels: [{
|
|
75
|
+
chain_1: {
|
|
76
|
+
channel_id: 'channel-25',
|
|
77
|
+
port_id: 'transfer'
|
|
78
|
+
},
|
|
79
|
+
chain_2: {
|
|
80
|
+
channel_id: 'channel-388',
|
|
81
|
+
port_id: 'transfer'
|
|
82
|
+
},
|
|
83
|
+
ordering: 'unordered',
|
|
84
|
+
version: 'ics20-1',
|
|
85
|
+
tags: {
|
|
86
|
+
status: 'live',
|
|
87
|
+
preferred: true
|
|
88
|
+
}
|
|
89
|
+
}]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
$schema: '../../ibc_data.schema.json',
|
|
93
|
+
chain_1: {
|
|
94
|
+
chain_name: 'agoricdevnet',
|
|
95
|
+
client_id: '07-tendermint-16',
|
|
96
|
+
connection_id: 'connection-16'
|
|
97
|
+
},
|
|
98
|
+
chain_2: {
|
|
99
|
+
chain_name: 'elystestnet',
|
|
100
|
+
client_id: '07-tendermint-17',
|
|
101
|
+
connection_id: 'connection-10'
|
|
102
|
+
},
|
|
103
|
+
channels: [{
|
|
104
|
+
chain_1: {
|
|
105
|
+
channel_id: 'channel-23',
|
|
106
|
+
port_id: 'transfer'
|
|
107
|
+
},
|
|
108
|
+
chain_2: {
|
|
109
|
+
channel_id: 'channel-11',
|
|
110
|
+
port_id: 'transfer'
|
|
111
|
+
},
|
|
112
|
+
ordering: 'unordered',
|
|
113
|
+
version: 'ics20-1',
|
|
114
|
+
tags: {
|
|
115
|
+
status: 'live',
|
|
116
|
+
preferred: true
|
|
117
|
+
}
|
|
118
|
+
}]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
$schema: '../../ibc_data.schema.json',
|
|
122
|
+
chain_1: {
|
|
123
|
+
chain_name: 'agoricdevnet',
|
|
124
|
+
client_id: '07-tendermint-128',
|
|
125
|
+
connection_id: 'connection-82'
|
|
126
|
+
},
|
|
127
|
+
chain_2: {
|
|
128
|
+
chain_name: 'neutrontestnet',
|
|
129
|
+
client_id: '07-tendermint-553',
|
|
130
|
+
connection_id: 'connection-474'
|
|
131
|
+
},
|
|
132
|
+
channels: [{
|
|
133
|
+
chain_1: {
|
|
134
|
+
channel_id: 'channel-62',
|
|
135
|
+
port_id: 'transfer'
|
|
136
|
+
},
|
|
137
|
+
chain_2: {
|
|
138
|
+
channel_id: 'channel-1578',
|
|
139
|
+
port_id: 'transfer'
|
|
140
|
+
},
|
|
141
|
+
ordering: 'unordered',
|
|
142
|
+
version: 'ics20-1',
|
|
143
|
+
tags: {
|
|
144
|
+
status: 'live',
|
|
145
|
+
preferred: true
|
|
146
|
+
}
|
|
147
|
+
}]
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
$schema: '../../ibc_data.schema.json',
|
|
151
|
+
chain_1: {
|
|
152
|
+
chain_name: 'agoricdevnet',
|
|
153
|
+
client_id: '07-tendermint-13',
|
|
154
|
+
connection_id: 'connection-13'
|
|
155
|
+
},
|
|
156
|
+
chain_2: {
|
|
157
|
+
chain_name: 'nobletestnet',
|
|
158
|
+
client_id: '07-tendermint-432',
|
|
159
|
+
connection_id: 'connection-196'
|
|
160
|
+
},
|
|
161
|
+
channels: [{
|
|
162
|
+
chain_1: {
|
|
163
|
+
channel_id: 'channel-11',
|
|
164
|
+
port_id: 'transfer'
|
|
165
|
+
},
|
|
166
|
+
chain_2: {
|
|
167
|
+
channel_id: 'channel-337',
|
|
168
|
+
port_id: 'transfer'
|
|
169
|
+
},
|
|
170
|
+
ordering: 'unordered',
|
|
171
|
+
version: 'ics20-1',
|
|
172
|
+
tags: {
|
|
173
|
+
status: 'live',
|
|
174
|
+
preferred: true
|
|
175
|
+
}
|
|
176
|
+
}]
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
$schema: '../../ibc_data.schema.json',
|
|
180
|
+
chain_1: {
|
|
181
|
+
chain_name: 'agoricdevnet',
|
|
182
|
+
client_id: '07-tendermint-6',
|
|
183
|
+
connection_id: 'connection-6'
|
|
184
|
+
},
|
|
185
|
+
chain_2: {
|
|
186
|
+
chain_name: 'osmosistestnet',
|
|
187
|
+
client_id: '07-tendermint-4596',
|
|
188
|
+
connection_id: 'connection-3957'
|
|
189
|
+
},
|
|
190
|
+
channels: [{
|
|
191
|
+
chain_1: {
|
|
192
|
+
channel_id: 'channel-5',
|
|
193
|
+
port_id: 'transfer'
|
|
194
|
+
},
|
|
195
|
+
chain_2: {
|
|
196
|
+
channel_id: 'channel-10293',
|
|
197
|
+
port_id: 'transfer'
|
|
198
|
+
},
|
|
199
|
+
ordering: 'unordered',
|
|
200
|
+
version: 'ics20-1',
|
|
201
|
+
tags: {
|
|
202
|
+
status: 'live',
|
|
203
|
+
preferred: true
|
|
204
|
+
}
|
|
205
|
+
}]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
$schema: '../../ibc_data.schema.json',
|
|
209
|
+
chain_1: {
|
|
210
|
+
chain_name: 'agoricdevnet',
|
|
211
|
+
client_id: '07-tendermint-15',
|
|
212
|
+
connection_id: 'connection-15'
|
|
213
|
+
},
|
|
214
|
+
chain_2: {
|
|
215
|
+
chain_name: 'stridetestnet',
|
|
216
|
+
client_id: '07-tendermint-68',
|
|
217
|
+
connection_id: 'connection-44'
|
|
218
|
+
},
|
|
219
|
+
channels: [{
|
|
220
|
+
chain_1: {
|
|
221
|
+
channel_id: 'channel-13',
|
|
222
|
+
port_id: 'transfer'
|
|
223
|
+
},
|
|
224
|
+
chain_2: {
|
|
225
|
+
channel_id: 'channel-60',
|
|
226
|
+
port_id: 'transfer'
|
|
227
|
+
},
|
|
228
|
+
ordering: 'unordered',
|
|
229
|
+
version: 'ics20-1',
|
|
230
|
+
tags: {
|
|
231
|
+
status: 'live',
|
|
232
|
+
preferred: true
|
|
233
|
+
}
|
|
234
|
+
}]
|
|
235
|
+
}
|
|
236
|
+
];
|
|
237
|
+
exports.default = info;
|
|
@@ -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.assets = void 0;
|
|
6
|
+
exports.ibc = exports.chain = exports.assets = void 0;
|
|
7
7
|
const assets_1 = __importDefault(require("./assets"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_1 = __importDefault(require("./ibc"));
|
|
9
10
|
exports.assets = assets_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibc = ibc_1.default;
|
package/testnet/assets.js
CHANGED
|
@@ -116,6 +116,7 @@ const _planqtestnet = __importStar(require("./planqtestnet"));
|
|
|
116
116
|
const _pockettestnet = __importStar(require("./pockettestnet"));
|
|
117
117
|
const _pryzmtestnet = __importStar(require("./pryzmtestnet"));
|
|
118
118
|
const _quasartestnet = __importStar(require("./quasartestnet"));
|
|
119
|
+
const _qubeticstestnet = __importStar(require("./qubeticstestnet"));
|
|
119
120
|
const _quicksilvertestnet = __importStar(require("./quicksilvertestnet"));
|
|
120
121
|
const _qwoyntestnet = __importStar(require("./qwoyntestnet"));
|
|
121
122
|
const _sagatestnet = __importStar(require("./sagatestnet"));
|
|
@@ -250,6 +251,7 @@ const assets = [
|
|
|
250
251
|
_pockettestnet.assets,
|
|
251
252
|
_pryzmtestnet.assets,
|
|
252
253
|
_quasartestnet.assets,
|
|
254
|
+
_qubeticstestnet.assets,
|
|
253
255
|
_quicksilvertestnet.assets,
|
|
254
256
|
_qwoyntestnet.assets,
|
|
255
257
|
_sagatestnet.assets,
|
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../../ibc_data.schema.json',
|
|
6
|
+
chain_1: {
|
|
7
|
+
chain_name: 'agoricdevnet',
|
|
8
|
+
client_id: '07-tendermint-14',
|
|
9
|
+
connection_id: 'connection-14'
|
|
10
|
+
},
|
|
11
|
+
chain_2: {
|
|
12
|
+
chain_name: 'axelartestnet',
|
|
13
|
+
client_id: '07-tendermint-1128',
|
|
14
|
+
connection_id: 'connection-872'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain_1: {
|
|
18
|
+
channel_id: 'channel-12',
|
|
19
|
+
port_id: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain_2: {
|
|
22
|
+
channel_id: 'channel-602',
|
|
23
|
+
port_id: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {
|
|
28
|
+
status: 'live',
|
|
29
|
+
preferred: true
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
},
|
|
4
33
|
{
|
|
5
34
|
$schema: '../../ibc_data.schema.json',
|
|
6
35
|
chain_1: {
|
package/testnet/chains.js
CHANGED
|
@@ -116,6 +116,7 @@ const _planqtestnet = __importStar(require("./planqtestnet"));
|
|
|
116
116
|
const _pockettestnet = __importStar(require("./pockettestnet"));
|
|
117
117
|
const _pryzmtestnet = __importStar(require("./pryzmtestnet"));
|
|
118
118
|
const _quasartestnet = __importStar(require("./quasartestnet"));
|
|
119
|
+
const _qubeticstestnet = __importStar(require("./qubeticstestnet"));
|
|
119
120
|
const _quicksilvertestnet = __importStar(require("./quicksilvertestnet"));
|
|
120
121
|
const _qwoyntestnet = __importStar(require("./qwoyntestnet"));
|
|
121
122
|
const _sagatestnet = __importStar(require("./sagatestnet"));
|
|
@@ -250,6 +251,7 @@ const chains = [
|
|
|
250
251
|
_pockettestnet.chain,
|
|
251
252
|
_pryzmtestnet.chain,
|
|
252
253
|
_quasartestnet.chain,
|
|
254
|
+
_qubeticstestnet.chain,
|
|
253
255
|
_quicksilvertestnet.chain,
|
|
254
256
|
_qwoyntestnet.chain,
|
|
255
257
|
_sagatestnet.chain,
|