chain-registry 1.69.205 → 1.69.207
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/testnet/cosmoshubtestnet/ibc.js +28 -0
- package/esm/testnet/ibc.js +2 -0
- package/esm/testnet/wardenprotocoltestnet/assets.js +49 -9
- package/esm/testnet/wardenprotocoltestnet/chain.js +14 -14
- package/esm/testnet/wardenprotocoltestnet/ibc.js +29 -0
- package/esm/testnet/wardenprotocoltestnet/index.js +2 -0
- package/package.json +4 -4
- package/testnet/cosmoshubtestnet/ibc.js +28 -0
- package/testnet/ibc.js +2 -0
- package/testnet/wardenprotocoltestnet/assets.js +49 -9
- package/testnet/wardenprotocoltestnet/chain.js +14 -14
- package/testnet/wardenprotocoltestnet/ibc.d.ts +3 -0
- package/testnet/wardenprotocoltestnet/ibc.js +31 -0
- package/testnet/wardenprotocoltestnet/index.d.ts +1 -0
- package/testnet/wardenprotocoltestnet/index.js +3 -1
|
@@ -282,6 +282,34 @@ const info = [
|
|
|
282
282
|
preferred: true
|
|
283
283
|
}
|
|
284
284
|
}]
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
$schema: '../../ibc_data.schema.json',
|
|
288
|
+
chain_1: {
|
|
289
|
+
chain_name: 'cosmoshubtestnet',
|
|
290
|
+
client_id: '07-tendermint-289',
|
|
291
|
+
connection_id: 'connection-207'
|
|
292
|
+
},
|
|
293
|
+
chain_2: {
|
|
294
|
+
chain_name: 'wardenprotocoltestnet',
|
|
295
|
+
client_id: '07-tendermint-0',
|
|
296
|
+
connection_id: 'connection-0'
|
|
297
|
+
},
|
|
298
|
+
channels: [{
|
|
299
|
+
chain_1: {
|
|
300
|
+
channel_id: 'channel-373',
|
|
301
|
+
port_id: 'transfer'
|
|
302
|
+
},
|
|
303
|
+
chain_2: {
|
|
304
|
+
channel_id: 'channel-0',
|
|
305
|
+
port_id: 'transfer'
|
|
306
|
+
},
|
|
307
|
+
ordering: 'unordered',
|
|
308
|
+
version: 'ics20-1',
|
|
309
|
+
tags: {
|
|
310
|
+
status: 'live'
|
|
311
|
+
}
|
|
312
|
+
}]
|
|
285
313
|
}
|
|
286
314
|
];
|
|
287
315
|
export default info;
|
package/esm/testnet/ibc.js
CHANGED
|
@@ -41,6 +41,7 @@ import * as _synternettestnet from './synternettestnet';
|
|
|
41
41
|
import * as _terra2testnet from './terra2testnet';
|
|
42
42
|
import * as _titannettestnet from './titannettestnet';
|
|
43
43
|
import * as _titantestnet from './titantestnet';
|
|
44
|
+
import * as _wardenprotocoltestnet from './wardenprotocoltestnet';
|
|
44
45
|
import * as _xiontestnet2 from './xiontestnet2';
|
|
45
46
|
import * as _xrplevmtestnet from './xrplevmtestnet';
|
|
46
47
|
const ibc = [
|
|
@@ -87,6 +88,7 @@ const ibc = [
|
|
|
87
88
|
..._terra2testnet.ibc,
|
|
88
89
|
..._titannettestnet.ibc,
|
|
89
90
|
..._titantestnet.ibc,
|
|
91
|
+
..._wardenprotocoltestnet.ibc,
|
|
90
92
|
..._xiontestnet2.ibc,
|
|
91
93
|
..._xrplevmtestnet.ibc
|
|
92
94
|
];
|
|
@@ -2,18 +2,15 @@ const info = {
|
|
|
2
2
|
$schema: '../../assetlist.schema.json',
|
|
3
3
|
chain_name: 'wardenprotocoltestnet',
|
|
4
4
|
assets: [{
|
|
5
|
-
description: '
|
|
5
|
+
description: 'Temporary staking token for Warden Protocol',
|
|
6
6
|
denom_units: [{
|
|
7
|
-
denom: '
|
|
7
|
+
denom: 'wSTAKE',
|
|
8
8
|
exponent: 0
|
|
9
|
-
}, {
|
|
10
|
-
denom: 'ward',
|
|
11
|
-
exponent: 6
|
|
12
9
|
}],
|
|
13
|
-
base: '
|
|
14
|
-
name: '
|
|
15
|
-
display: '
|
|
16
|
-
symbol: '
|
|
10
|
+
base: 'wSTAKE',
|
|
11
|
+
name: 'wSTAKE',
|
|
12
|
+
display: 'wSTAKE',
|
|
13
|
+
symbol: 'wSTAKE',
|
|
17
14
|
logo_URIs: {
|
|
18
15
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png',
|
|
19
16
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.svg'
|
|
@@ -23,6 +20,49 @@ const info = {
|
|
|
23
20
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.svg'
|
|
24
21
|
}],
|
|
25
22
|
type_asset: 'sdk.coin'
|
|
23
|
+
}, {
|
|
24
|
+
description: 'IBC token from Cosmos Provider network to Warden Protocol Testnet',
|
|
25
|
+
denom_units: [{
|
|
26
|
+
denom: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
|
|
27
|
+
exponent: 0,
|
|
28
|
+
aliases: ['uatom']
|
|
29
|
+
}, {
|
|
30
|
+
denom: 'atom',
|
|
31
|
+
exponent: 6
|
|
32
|
+
}],
|
|
33
|
+
type_asset: 'ics20',
|
|
34
|
+
base: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
|
|
35
|
+
name: 'IBC atom',
|
|
36
|
+
display: 'atom',
|
|
37
|
+
symbol: 'ATOM',
|
|
38
|
+
traces: [{
|
|
39
|
+
type: 'ibc',
|
|
40
|
+
counterparty: {
|
|
41
|
+
chain_name: 'cosmoshubtestnet',
|
|
42
|
+
base_denom: 'uatom',
|
|
43
|
+
channel_id: 'channel-373'
|
|
44
|
+
},
|
|
45
|
+
chain: {
|
|
46
|
+
channel_id: 'channel-0',
|
|
47
|
+
path: 'transfer/channel-0/uatom'
|
|
48
|
+
}
|
|
49
|
+
}],
|
|
50
|
+
images: [{
|
|
51
|
+
image_sync: {
|
|
52
|
+
chain_name: 'cosmoshubtestnet',
|
|
53
|
+
base_denom: 'uatom'
|
|
54
|
+
},
|
|
55
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
56
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg',
|
|
57
|
+
theme: {
|
|
58
|
+
primary_color_hex: '#272d45'
|
|
59
|
+
}
|
|
60
|
+
}],
|
|
61
|
+
logo_URIs: {
|
|
62
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
63
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
64
|
+
},
|
|
65
|
+
coingecko_id: 'cosmos'
|
|
26
66
|
}]
|
|
27
67
|
};
|
|
28
68
|
export default info;
|
|
@@ -3,58 +3,58 @@ const info = {
|
|
|
3
3
|
chain_name: 'wardenprotocoltestnet',
|
|
4
4
|
status: 'live',
|
|
5
5
|
network_type: 'testnet',
|
|
6
|
-
pretty_name: 'Warden Protocol
|
|
6
|
+
pretty_name: 'Warden Protocol Docas',
|
|
7
7
|
chain_type: 'cosmos',
|
|
8
|
-
chain_id: '
|
|
8
|
+
chain_id: 'docas_10100-1',
|
|
9
9
|
bech32_prefix: 'warden',
|
|
10
10
|
daemon_name: 'wardend',
|
|
11
11
|
node_home: '$HOME/.warden',
|
|
12
|
-
key_algos: ['secp256k1'],
|
|
12
|
+
key_algos: ['ethsecp256k1', 'secp256k1'],
|
|
13
13
|
slip44: 118,
|
|
14
14
|
fees: {
|
|
15
15
|
fee_tokens: [{
|
|
16
|
-
denom: '
|
|
17
|
-
fixed_min_gas_price: 0.
|
|
16
|
+
denom: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
|
|
17
|
+
fixed_min_gas_price: 0.001,
|
|
18
18
|
low_gas_price: 0.01,
|
|
19
19
|
average_gas_price: 0.025,
|
|
20
|
-
high_gas_price:
|
|
20
|
+
high_gas_price: 1
|
|
21
21
|
}]
|
|
22
22
|
},
|
|
23
23
|
staking: {
|
|
24
24
|
staking_tokens: [{
|
|
25
|
-
denom: '
|
|
25
|
+
denom: 'wSTAKE'
|
|
26
26
|
}]
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
git_repo: 'https://github.com/warden-protocol/wardenprotocol',
|
|
30
|
-
recommended_version: 'v0.
|
|
31
|
-
compatible_versions: ['v0.
|
|
30
|
+
recommended_version: 'v0.6.2',
|
|
31
|
+
compatible_versions: ['v0.6.2'],
|
|
32
32
|
consensus: {
|
|
33
33
|
type: 'cometbft',
|
|
34
34
|
version: '0.38'
|
|
35
35
|
},
|
|
36
36
|
genesis: {
|
|
37
|
-
genesis_url: 'https://raw.githubusercontent.com/warden-protocol/networks/main/testnets/
|
|
37
|
+
genesis_url: 'https://raw.githubusercontent.com/warden-protocol/networks/main/testnets/docas/genesis.json'
|
|
38
38
|
},
|
|
39
39
|
sdk: {
|
|
40
40
|
type: 'cosmos',
|
|
41
41
|
version: '0.50'
|
|
42
42
|
},
|
|
43
43
|
cosmwasm: {
|
|
44
|
-
enabled:
|
|
44
|
+
enabled: true
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
apis: {
|
|
48
48
|
rpc: [{
|
|
49
|
-
address: 'https://rpc.
|
|
49
|
+
address: 'https://rpc.docas.wardenprotocol.org/',
|
|
50
50
|
provider: 'Warden Protocol'
|
|
51
51
|
}],
|
|
52
52
|
rest: [{
|
|
53
|
-
address: 'https://api.
|
|
53
|
+
address: 'https://api.docas.wardenprotocol.org/',
|
|
54
54
|
provider: 'Warden Protocol'
|
|
55
55
|
}],
|
|
56
56
|
grpc: [{
|
|
57
|
-
address: 'https://grpc.
|
|
57
|
+
address: 'https://grpc.docas.wardenprotocol.org/',
|
|
58
58
|
provider: 'Warden Protocol'
|
|
59
59
|
}]
|
|
60
60
|
},
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../../ibc_data.schema.json',
|
|
3
|
+
chain_1: {
|
|
4
|
+
chain_name: 'cosmoshubtestnet',
|
|
5
|
+
client_id: '07-tendermint-289',
|
|
6
|
+
connection_id: 'connection-207'
|
|
7
|
+
},
|
|
8
|
+
chain_2: {
|
|
9
|
+
chain_name: 'wardenprotocoltestnet',
|
|
10
|
+
client_id: '07-tendermint-0',
|
|
11
|
+
connection_id: 'connection-0'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain_1: {
|
|
15
|
+
channel_id: 'channel-373',
|
|
16
|
+
port_id: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain_2: {
|
|
19
|
+
channel_id: 'channel-0',
|
|
20
|
+
port_id: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live'
|
|
26
|
+
}
|
|
27
|
+
}]
|
|
28
|
+
}];
|
|
29
|
+
export default info;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.207",
|
|
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.132",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.132"
|
|
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": "9dc852e6ee913b93916b51974f6174813462157c"
|
|
47
47
|
}
|
|
@@ -284,6 +284,34 @@ const info = [
|
|
|
284
284
|
preferred: true
|
|
285
285
|
}
|
|
286
286
|
}]
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
$schema: '../../ibc_data.schema.json',
|
|
290
|
+
chain_1: {
|
|
291
|
+
chain_name: 'cosmoshubtestnet',
|
|
292
|
+
client_id: '07-tendermint-289',
|
|
293
|
+
connection_id: 'connection-207'
|
|
294
|
+
},
|
|
295
|
+
chain_2: {
|
|
296
|
+
chain_name: 'wardenprotocoltestnet',
|
|
297
|
+
client_id: '07-tendermint-0',
|
|
298
|
+
connection_id: 'connection-0'
|
|
299
|
+
},
|
|
300
|
+
channels: [{
|
|
301
|
+
chain_1: {
|
|
302
|
+
channel_id: 'channel-373',
|
|
303
|
+
port_id: 'transfer'
|
|
304
|
+
},
|
|
305
|
+
chain_2: {
|
|
306
|
+
channel_id: 'channel-0',
|
|
307
|
+
port_id: 'transfer'
|
|
308
|
+
},
|
|
309
|
+
ordering: 'unordered',
|
|
310
|
+
version: 'ics20-1',
|
|
311
|
+
tags: {
|
|
312
|
+
status: 'live'
|
|
313
|
+
}
|
|
314
|
+
}]
|
|
287
315
|
}
|
|
288
316
|
];
|
|
289
317
|
exports.default = info;
|
package/testnet/ibc.js
CHANGED
|
@@ -66,6 +66,7 @@ const _synternettestnet = __importStar(require("./synternettestnet"));
|
|
|
66
66
|
const _terra2testnet = __importStar(require("./terra2testnet"));
|
|
67
67
|
const _titannettestnet = __importStar(require("./titannettestnet"));
|
|
68
68
|
const _titantestnet = __importStar(require("./titantestnet"));
|
|
69
|
+
const _wardenprotocoltestnet = __importStar(require("./wardenprotocoltestnet"));
|
|
69
70
|
const _xiontestnet2 = __importStar(require("./xiontestnet2"));
|
|
70
71
|
const _xrplevmtestnet = __importStar(require("./xrplevmtestnet"));
|
|
71
72
|
const ibc = [
|
|
@@ -112,6 +113,7 @@ const ibc = [
|
|
|
112
113
|
..._terra2testnet.ibc,
|
|
113
114
|
..._titannettestnet.ibc,
|
|
114
115
|
..._titantestnet.ibc,
|
|
116
|
+
..._wardenprotocoltestnet.ibc,
|
|
115
117
|
..._xiontestnet2.ibc,
|
|
116
118
|
..._xrplevmtestnet.ibc
|
|
117
119
|
];
|
|
@@ -4,18 +4,15 @@ const info = {
|
|
|
4
4
|
$schema: '../../assetlist.schema.json',
|
|
5
5
|
chain_name: 'wardenprotocoltestnet',
|
|
6
6
|
assets: [{
|
|
7
|
-
description: '
|
|
7
|
+
description: 'Temporary staking token for Warden Protocol',
|
|
8
8
|
denom_units: [{
|
|
9
|
-
denom: '
|
|
9
|
+
denom: 'wSTAKE',
|
|
10
10
|
exponent: 0
|
|
11
|
-
}, {
|
|
12
|
-
denom: 'ward',
|
|
13
|
-
exponent: 6
|
|
14
11
|
}],
|
|
15
|
-
base: '
|
|
16
|
-
name: '
|
|
17
|
-
display: '
|
|
18
|
-
symbol: '
|
|
12
|
+
base: 'wSTAKE',
|
|
13
|
+
name: 'wSTAKE',
|
|
14
|
+
display: 'wSTAKE',
|
|
15
|
+
symbol: 'wSTAKE',
|
|
19
16
|
logo_URIs: {
|
|
20
17
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png',
|
|
21
18
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.svg'
|
|
@@ -25,6 +22,49 @@ const info = {
|
|
|
25
22
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.svg'
|
|
26
23
|
}],
|
|
27
24
|
type_asset: 'sdk.coin'
|
|
25
|
+
}, {
|
|
26
|
+
description: 'IBC token from Cosmos Provider network to Warden Protocol Testnet',
|
|
27
|
+
denom_units: [{
|
|
28
|
+
denom: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
|
|
29
|
+
exponent: 0,
|
|
30
|
+
aliases: ['uatom']
|
|
31
|
+
}, {
|
|
32
|
+
denom: 'atom',
|
|
33
|
+
exponent: 6
|
|
34
|
+
}],
|
|
35
|
+
type_asset: 'ics20',
|
|
36
|
+
base: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
|
|
37
|
+
name: 'IBC atom',
|
|
38
|
+
display: 'atom',
|
|
39
|
+
symbol: 'ATOM',
|
|
40
|
+
traces: [{
|
|
41
|
+
type: 'ibc',
|
|
42
|
+
counterparty: {
|
|
43
|
+
chain_name: 'cosmoshubtestnet',
|
|
44
|
+
base_denom: 'uatom',
|
|
45
|
+
channel_id: 'channel-373'
|
|
46
|
+
},
|
|
47
|
+
chain: {
|
|
48
|
+
channel_id: 'channel-0',
|
|
49
|
+
path: 'transfer/channel-0/uatom'
|
|
50
|
+
}
|
|
51
|
+
}],
|
|
52
|
+
images: [{
|
|
53
|
+
image_sync: {
|
|
54
|
+
chain_name: 'cosmoshubtestnet',
|
|
55
|
+
base_denom: 'uatom'
|
|
56
|
+
},
|
|
57
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
58
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg',
|
|
59
|
+
theme: {
|
|
60
|
+
primary_color_hex: '#272d45'
|
|
61
|
+
}
|
|
62
|
+
}],
|
|
63
|
+
logo_URIs: {
|
|
64
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
65
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
66
|
+
},
|
|
67
|
+
coingecko_id: 'cosmos'
|
|
28
68
|
}]
|
|
29
69
|
};
|
|
30
70
|
exports.default = info;
|
|
@@ -5,58 +5,58 @@ const info = {
|
|
|
5
5
|
chain_name: 'wardenprotocoltestnet',
|
|
6
6
|
status: 'live',
|
|
7
7
|
network_type: 'testnet',
|
|
8
|
-
pretty_name: 'Warden Protocol
|
|
8
|
+
pretty_name: 'Warden Protocol Docas',
|
|
9
9
|
chain_type: 'cosmos',
|
|
10
|
-
chain_id: '
|
|
10
|
+
chain_id: 'docas_10100-1',
|
|
11
11
|
bech32_prefix: 'warden',
|
|
12
12
|
daemon_name: 'wardend',
|
|
13
13
|
node_home: '$HOME/.warden',
|
|
14
|
-
key_algos: ['secp256k1'],
|
|
14
|
+
key_algos: ['ethsecp256k1', 'secp256k1'],
|
|
15
15
|
slip44: 118,
|
|
16
16
|
fees: {
|
|
17
17
|
fee_tokens: [{
|
|
18
|
-
denom: '
|
|
19
|
-
fixed_min_gas_price: 0.
|
|
18
|
+
denom: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
|
|
19
|
+
fixed_min_gas_price: 0.001,
|
|
20
20
|
low_gas_price: 0.01,
|
|
21
21
|
average_gas_price: 0.025,
|
|
22
|
-
high_gas_price:
|
|
22
|
+
high_gas_price: 1
|
|
23
23
|
}]
|
|
24
24
|
},
|
|
25
25
|
staking: {
|
|
26
26
|
staking_tokens: [{
|
|
27
|
-
denom: '
|
|
27
|
+
denom: 'wSTAKE'
|
|
28
28
|
}]
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
31
|
git_repo: 'https://github.com/warden-protocol/wardenprotocol',
|
|
32
|
-
recommended_version: 'v0.
|
|
33
|
-
compatible_versions: ['v0.
|
|
32
|
+
recommended_version: 'v0.6.2',
|
|
33
|
+
compatible_versions: ['v0.6.2'],
|
|
34
34
|
consensus: {
|
|
35
35
|
type: 'cometbft',
|
|
36
36
|
version: '0.38'
|
|
37
37
|
},
|
|
38
38
|
genesis: {
|
|
39
|
-
genesis_url: 'https://raw.githubusercontent.com/warden-protocol/networks/main/testnets/
|
|
39
|
+
genesis_url: 'https://raw.githubusercontent.com/warden-protocol/networks/main/testnets/docas/genesis.json'
|
|
40
40
|
},
|
|
41
41
|
sdk: {
|
|
42
42
|
type: 'cosmos',
|
|
43
43
|
version: '0.50'
|
|
44
44
|
},
|
|
45
45
|
cosmwasm: {
|
|
46
|
-
enabled:
|
|
46
|
+
enabled: true
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
apis: {
|
|
50
50
|
rpc: [{
|
|
51
|
-
address: 'https://rpc.
|
|
51
|
+
address: 'https://rpc.docas.wardenprotocol.org/',
|
|
52
52
|
provider: 'Warden Protocol'
|
|
53
53
|
}],
|
|
54
54
|
rest: [{
|
|
55
|
-
address: 'https://api.
|
|
55
|
+
address: 'https://api.docas.wardenprotocol.org/',
|
|
56
56
|
provider: 'Warden Protocol'
|
|
57
57
|
}],
|
|
58
58
|
grpc: [{
|
|
59
|
-
address: 'https://grpc.
|
|
59
|
+
address: 'https://grpc.docas.wardenprotocol.org/',
|
|
60
60
|
provider: 'Warden Protocol'
|
|
61
61
|
}]
|
|
62
62
|
},
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../../ibc_data.schema.json',
|
|
5
|
+
chain_1: {
|
|
6
|
+
chain_name: 'cosmoshubtestnet',
|
|
7
|
+
client_id: '07-tendermint-289',
|
|
8
|
+
connection_id: 'connection-207'
|
|
9
|
+
},
|
|
10
|
+
chain_2: {
|
|
11
|
+
chain_name: 'wardenprotocoltestnet',
|
|
12
|
+
client_id: '07-tendermint-0',
|
|
13
|
+
connection_id: 'connection-0'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-373',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-0',
|
|
22
|
+
port_id: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live'
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
}];
|
|
31
|
+
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;
|