chain-registry 2.0.203 → 2.0.204
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/elys/chain.js +0 -8
- package/esm/mainnet/thejaynetwork/chain.js +20 -3
- package/esm/testnet/asset-lists.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/sunimatestnet/asset-list.js +26 -0
- package/esm/testnet/sunimatestnet/chain.js +51 -0
- package/esm/testnet/sunimatestnet/index.js +4 -0
- package/mainnet/elys/chain.js +0 -8
- package/mainnet/thejaynetwork/chain.js +20 -3
- package/package.json +3 -3
- package/testnet/asset-lists.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/sunimatestnet/asset-list.d.ts +3 -0
- package/testnet/sunimatestnet/asset-list.js +28 -0
- package/testnet/sunimatestnet/chain.d.ts +3 -0
- package/testnet/sunimatestnet/chain.js +53 -0
- package/testnet/sunimatestnet/index.d.ts +2 -0
- package/testnet/sunimatestnet/index.js +10 -0
|
@@ -111,10 +111,6 @@ const info = {
|
|
|
111
111
|
address: 'https://community.nuxian-node.ch:6797/elys/trpc',
|
|
112
112
|
provider: 'PRO Delegators'
|
|
113
113
|
},
|
|
114
|
-
{
|
|
115
|
-
address: 'https://elys-rpc.highstakes.ch',
|
|
116
|
-
provider: 'High Stakes'
|
|
117
|
-
},
|
|
118
114
|
{
|
|
119
115
|
address: 'https://elys-rpc.stake-town.com:443',
|
|
120
116
|
provider: 'StakeTown'
|
|
@@ -197,10 +193,6 @@ const info = {
|
|
|
197
193
|
address: 'https://community.nuxian-node.ch:6797/elys/crpc',
|
|
198
194
|
provider: 'PRO Delegators'
|
|
199
195
|
},
|
|
200
|
-
{
|
|
201
|
-
address: 'https://elys-api.highstakes.ch',
|
|
202
|
-
provider: 'High Stakes'
|
|
203
|
-
},
|
|
204
196
|
{
|
|
205
197
|
address: 'https://elys-api.stake-town.com:443',
|
|
206
198
|
provider: 'StakeTown'
|
|
@@ -72,6 +72,10 @@ const info = {
|
|
|
72
72
|
{
|
|
73
73
|
address: 'https://rpc-jay.onenov.xyz',
|
|
74
74
|
provider: 'OneNov'
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
address: 'https://rpc-jaynetwork.vinjan-inc.com',
|
|
78
|
+
provider: 'Vinjan.Inc'
|
|
75
79
|
}
|
|
76
80
|
],
|
|
77
81
|
rest: [
|
|
@@ -86,6 +90,10 @@ const info = {
|
|
|
86
90
|
{
|
|
87
91
|
address: 'https://api-jay.onenov.xyz',
|
|
88
92
|
provider: 'OneNov'
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
address: 'https://api-jaynetwork.vinjan-inc.com',
|
|
96
|
+
provider: 'Vinjan.Inc'
|
|
89
97
|
}
|
|
90
98
|
],
|
|
91
99
|
grpc: [{
|
|
@@ -93,17 +101,26 @@ const info = {
|
|
|
93
101
|
provider: 'The Jay Network (Sentry)'
|
|
94
102
|
}]
|
|
95
103
|
},
|
|
96
|
-
explorers: [
|
|
104
|
+
explorers: [
|
|
105
|
+
{
|
|
97
106
|
kind: 'JayScan',
|
|
98
107
|
url: 'https://jayscan.thejaynetwork.com',
|
|
99
108
|
txPage: 'https://jayscan.thejaynetwork.com/tx/${txHash}',
|
|
100
109
|
accountPage: 'https://jayscan.thejaynetwork.com/account/${accountAddress}'
|
|
101
|
-
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
102
112
|
kind: 'Jay Network Explorer',
|
|
103
113
|
url: 'https://jay-explorer.onenov.xyz',
|
|
104
114
|
txPage: 'https://jay-explorer.onenov.xyz/transactions/${txHash}',
|
|
105
115
|
accountPage: 'https://jay-explorer.onenov.xyz/accounts/${accountAddress}'
|
|
106
|
-
}
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
kind: 'Vinjan.Inc Explorer',
|
|
119
|
+
url: 'https://explorer.vinjan-inc.com/jaynetwork',
|
|
120
|
+
txPage: 'https://explorer.vinjan-inc.com/jaynetwork/tx/${txHash}',
|
|
121
|
+
accountPage: 'https://explorer.vinjan-inc.com/jaynetwork/account/${accountAddress}'
|
|
122
|
+
}
|
|
123
|
+
],
|
|
107
124
|
images: [{
|
|
108
125
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/jay.png'
|
|
109
126
|
}]
|
|
@@ -117,6 +117,7 @@ import * as _sourcetestnet from './sourcetestnet';
|
|
|
117
117
|
import * as _stargazetestnet from './stargazetestnet';
|
|
118
118
|
import * as _statesettestnet from './statesettestnet';
|
|
119
119
|
import * as _stridetestnet from './stridetestnet';
|
|
120
|
+
import * as _sunimatestnet from './sunimatestnet';
|
|
120
121
|
import * as _sunrisetestnet from './sunrisetestnet';
|
|
121
122
|
import * as _swisstroniktestnet from './swisstroniktestnet';
|
|
122
123
|
import * as _symphonytestnet from './symphonytestnet';
|
|
@@ -262,6 +263,7 @@ const assetList = [
|
|
|
262
263
|
_stargazetestnet.assetList,
|
|
263
264
|
_statesettestnet.assetList,
|
|
264
265
|
_stridetestnet.assetList,
|
|
266
|
+
_sunimatestnet.assetList,
|
|
265
267
|
_sunrisetestnet.assetList,
|
|
266
268
|
_swisstroniktestnet.assetList,
|
|
267
269
|
_symphonytestnet.assetList,
|
package/esm/testnet/chains.js
CHANGED
|
@@ -117,6 +117,7 @@ import * as _sourcetestnet from './sourcetestnet';
|
|
|
117
117
|
import * as _stargazetestnet from './stargazetestnet';
|
|
118
118
|
import * as _statesettestnet from './statesettestnet';
|
|
119
119
|
import * as _stridetestnet from './stridetestnet';
|
|
120
|
+
import * as _sunimatestnet from './sunimatestnet';
|
|
120
121
|
import * as _sunrisetestnet from './sunrisetestnet';
|
|
121
122
|
import * as _swisstroniktestnet from './swisstroniktestnet';
|
|
122
123
|
import * as _symphonytestnet from './symphonytestnet';
|
|
@@ -262,6 +263,7 @@ const chains = [
|
|
|
262
263
|
_stargazetestnet.chain,
|
|
263
264
|
_statesettestnet.chain,
|
|
264
265
|
_stridetestnet.chain,
|
|
266
|
+
_sunimatestnet.chain,
|
|
265
267
|
_sunrisetestnet.chain,
|
|
266
268
|
_swisstroniktestnet.chain,
|
|
267
269
|
_symphonytestnet.chain,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chainName: 'sunimatestnet',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native staking and gas token of the Sunima Testnet.',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'tsuna',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'tSUNA',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
base: 'tsuna',
|
|
14
|
+
name: 'Sunima Testnet',
|
|
15
|
+
display: 'tSUNA',
|
|
16
|
+
symbol: 'tSUNA',
|
|
17
|
+
logoURIs: {
|
|
18
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sunimatestnet/images/sunima.svg'
|
|
19
|
+
},
|
|
20
|
+
images: [{
|
|
21
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sunimatestnet/images/sunima.svg'
|
|
22
|
+
}],
|
|
23
|
+
typeAsset: 'sdk.coin'
|
|
24
|
+
}]
|
|
25
|
+
};
|
|
26
|
+
export default info;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chainName: 'sunimatestnet',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://sunima.uk/',
|
|
6
|
+
networkType: 'testnet',
|
|
7
|
+
prettyName: 'Sunima Testnet',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'sunima-testnet-1',
|
|
10
|
+
bech32Prefix: 'sunima',
|
|
11
|
+
daemonName: 'sunimad',
|
|
12
|
+
nodeHome: '$HOME/.sunima',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'tsuna',
|
|
18
|
+
fixedMinGasPrice: 0,
|
|
19
|
+
lowGasPrice: 0,
|
|
20
|
+
averageGasPrice: 0.025,
|
|
21
|
+
highGasPrice: 0.04
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'tsuna'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
genesis: {
|
|
31
|
+
genesisUrl: 'https://sunima.uk/chain/genesis.json'
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
logoURIs: {
|
|
35
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sunimatestnet/images/sunima.svg'
|
|
36
|
+
},
|
|
37
|
+
apis: {
|
|
38
|
+
rpc: [{
|
|
39
|
+
address: 'https://sunima.uk/chain-rpc/',
|
|
40
|
+
provider: 'Sunima Labs'
|
|
41
|
+
}],
|
|
42
|
+
rest: [{
|
|
43
|
+
address: 'https://sunima.uk/chain-rest/',
|
|
44
|
+
provider: 'Sunima Labs'
|
|
45
|
+
}]
|
|
46
|
+
},
|
|
47
|
+
images: [{
|
|
48
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sunimatestnet/images/sunima.svg'
|
|
49
|
+
}]
|
|
50
|
+
};
|
|
51
|
+
export default info;
|
package/mainnet/elys/chain.js
CHANGED
|
@@ -113,10 +113,6 @@ const info = {
|
|
|
113
113
|
address: 'https://community.nuxian-node.ch:6797/elys/trpc',
|
|
114
114
|
provider: 'PRO Delegators'
|
|
115
115
|
},
|
|
116
|
-
{
|
|
117
|
-
address: 'https://elys-rpc.highstakes.ch',
|
|
118
|
-
provider: 'High Stakes'
|
|
119
|
-
},
|
|
120
116
|
{
|
|
121
117
|
address: 'https://elys-rpc.stake-town.com:443',
|
|
122
118
|
provider: 'StakeTown'
|
|
@@ -199,10 +195,6 @@ const info = {
|
|
|
199
195
|
address: 'https://community.nuxian-node.ch:6797/elys/crpc',
|
|
200
196
|
provider: 'PRO Delegators'
|
|
201
197
|
},
|
|
202
|
-
{
|
|
203
|
-
address: 'https://elys-api.highstakes.ch',
|
|
204
|
-
provider: 'High Stakes'
|
|
205
|
-
},
|
|
206
198
|
{
|
|
207
199
|
address: 'https://elys-api.stake-town.com:443',
|
|
208
200
|
provider: 'StakeTown'
|
|
@@ -74,6 +74,10 @@ const info = {
|
|
|
74
74
|
{
|
|
75
75
|
address: 'https://rpc-jay.onenov.xyz',
|
|
76
76
|
provider: 'OneNov'
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
address: 'https://rpc-jaynetwork.vinjan-inc.com',
|
|
80
|
+
provider: 'Vinjan.Inc'
|
|
77
81
|
}
|
|
78
82
|
],
|
|
79
83
|
rest: [
|
|
@@ -88,6 +92,10 @@ const info = {
|
|
|
88
92
|
{
|
|
89
93
|
address: 'https://api-jay.onenov.xyz',
|
|
90
94
|
provider: 'OneNov'
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
address: 'https://api-jaynetwork.vinjan-inc.com',
|
|
98
|
+
provider: 'Vinjan.Inc'
|
|
91
99
|
}
|
|
92
100
|
],
|
|
93
101
|
grpc: [{
|
|
@@ -95,17 +103,26 @@ const info = {
|
|
|
95
103
|
provider: 'The Jay Network (Sentry)'
|
|
96
104
|
}]
|
|
97
105
|
},
|
|
98
|
-
explorers: [
|
|
106
|
+
explorers: [
|
|
107
|
+
{
|
|
99
108
|
kind: 'JayScan',
|
|
100
109
|
url: 'https://jayscan.thejaynetwork.com',
|
|
101
110
|
txPage: 'https://jayscan.thejaynetwork.com/tx/${txHash}',
|
|
102
111
|
accountPage: 'https://jayscan.thejaynetwork.com/account/${accountAddress}'
|
|
103
|
-
},
|
|
112
|
+
},
|
|
113
|
+
{
|
|
104
114
|
kind: 'Jay Network Explorer',
|
|
105
115
|
url: 'https://jay-explorer.onenov.xyz',
|
|
106
116
|
txPage: 'https://jay-explorer.onenov.xyz/transactions/${txHash}',
|
|
107
117
|
accountPage: 'https://jay-explorer.onenov.xyz/accounts/${accountAddress}'
|
|
108
|
-
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
kind: 'Vinjan.Inc Explorer',
|
|
121
|
+
url: 'https://explorer.vinjan-inc.com/jaynetwork',
|
|
122
|
+
txPage: 'https://explorer.vinjan-inc.com/jaynetwork/tx/${txHash}',
|
|
123
|
+
accountPage: 'https://explorer.vinjan-inc.com/jaynetwork/account/${accountAddress}'
|
|
124
|
+
}
|
|
125
|
+
],
|
|
109
126
|
images: [{
|
|
110
127
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/jay.png'
|
|
111
128
|
}]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.204",
|
|
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.204"
|
|
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": "3be1c973194635e8ee6e4959f7ffe04128337787"
|
|
43
43
|
}
|
package/testnet/asset-lists.js
CHANGED
|
@@ -142,6 +142,7 @@ const _sourcetestnet = __importStar(require("./sourcetestnet"));
|
|
|
142
142
|
const _stargazetestnet = __importStar(require("./stargazetestnet"));
|
|
143
143
|
const _statesettestnet = __importStar(require("./statesettestnet"));
|
|
144
144
|
const _stridetestnet = __importStar(require("./stridetestnet"));
|
|
145
|
+
const _sunimatestnet = __importStar(require("./sunimatestnet"));
|
|
145
146
|
const _sunrisetestnet = __importStar(require("./sunrisetestnet"));
|
|
146
147
|
const _swisstroniktestnet = __importStar(require("./swisstroniktestnet"));
|
|
147
148
|
const _symphonytestnet = __importStar(require("./symphonytestnet"));
|
|
@@ -287,6 +288,7 @@ const assetList = [
|
|
|
287
288
|
_stargazetestnet.assetList,
|
|
288
289
|
_statesettestnet.assetList,
|
|
289
290
|
_stridetestnet.assetList,
|
|
291
|
+
_sunimatestnet.assetList,
|
|
290
292
|
_sunrisetestnet.assetList,
|
|
291
293
|
_swisstroniktestnet.assetList,
|
|
292
294
|
_symphonytestnet.assetList,
|
package/testnet/chains.js
CHANGED
|
@@ -142,6 +142,7 @@ const _sourcetestnet = __importStar(require("./sourcetestnet"));
|
|
|
142
142
|
const _stargazetestnet = __importStar(require("./stargazetestnet"));
|
|
143
143
|
const _statesettestnet = __importStar(require("./statesettestnet"));
|
|
144
144
|
const _stridetestnet = __importStar(require("./stridetestnet"));
|
|
145
|
+
const _sunimatestnet = __importStar(require("./sunimatestnet"));
|
|
145
146
|
const _sunrisetestnet = __importStar(require("./sunrisetestnet"));
|
|
146
147
|
const _swisstroniktestnet = __importStar(require("./swisstroniktestnet"));
|
|
147
148
|
const _symphonytestnet = __importStar(require("./symphonytestnet"));
|
|
@@ -287,6 +288,7 @@ const chains = [
|
|
|
287
288
|
_stargazetestnet.chain,
|
|
288
289
|
_statesettestnet.chain,
|
|
289
290
|
_stridetestnet.chain,
|
|
291
|
+
_sunimatestnet.chain,
|
|
290
292
|
_sunrisetestnet.chain,
|
|
291
293
|
_swisstroniktestnet.chain,
|
|
292
294
|
_symphonytestnet.chain,
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../assetlist.schema.json',
|
|
5
|
+
chainName: 'sunimatestnet',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native staking and gas token of the Sunima Testnet.',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'tsuna',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'tSUNA',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
base: 'tsuna',
|
|
16
|
+
name: 'Sunima Testnet',
|
|
17
|
+
display: 'tSUNA',
|
|
18
|
+
symbol: 'tSUNA',
|
|
19
|
+
logoURIs: {
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sunimatestnet/images/sunima.svg'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sunimatestnet/images/sunima.svg'
|
|
24
|
+
}],
|
|
25
|
+
typeAsset: 'sdk.coin'
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
exports.default = info;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../chain.schema.json',
|
|
5
|
+
chainName: 'sunimatestnet',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'https://sunima.uk/',
|
|
8
|
+
networkType: 'testnet',
|
|
9
|
+
prettyName: 'Sunima Testnet',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'sunima-testnet-1',
|
|
12
|
+
bech32Prefix: 'sunima',
|
|
13
|
+
daemonName: 'sunimad',
|
|
14
|
+
nodeHome: '$HOME/.sunima',
|
|
15
|
+
keyAlgos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'tsuna',
|
|
20
|
+
fixedMinGasPrice: 0,
|
|
21
|
+
lowGasPrice: 0,
|
|
22
|
+
averageGasPrice: 0.025,
|
|
23
|
+
highGasPrice: 0.04
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
stakingTokens: [{
|
|
28
|
+
denom: 'tsuna'
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
genesis: {
|
|
33
|
+
genesisUrl: 'https://sunima.uk/chain/genesis.json'
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
logoURIs: {
|
|
37
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sunimatestnet/images/sunima.svg'
|
|
38
|
+
},
|
|
39
|
+
apis: {
|
|
40
|
+
rpc: [{
|
|
41
|
+
address: 'https://sunima.uk/chain-rpc/',
|
|
42
|
+
provider: 'Sunima Labs'
|
|
43
|
+
}],
|
|
44
|
+
rest: [{
|
|
45
|
+
address: 'https://sunima.uk/chain-rest/',
|
|
46
|
+
provider: 'Sunima Labs'
|
|
47
|
+
}]
|
|
48
|
+
},
|
|
49
|
+
images: [{
|
|
50
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sunimatestnet/images/sunima.svg'
|
|
51
|
+
}]
|
|
52
|
+
};
|
|
53
|
+
exports.default = info;
|
|
@@ -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;
|