chain-registry 2.0.202 → 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/celestia/ibc-data.js +31 -0
- package/esm/mainnet/cosmoshub/ibc-data.js +31 -0
- package/esm/mainnet/elys/chain.js +0 -8
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/injective/ibc-data.js +31 -0
- package/esm/mainnet/thejaynetwork/asset-list.js +9 -6
- package/esm/mainnet/thejaynetwork/chain.js +56 -38
- package/esm/mainnet/thejaynetwork/ibc-data.js +96 -0
- package/esm/mainnet/thejaynetwork/index.js +2 -0
- package/esm/mainnet/zigchain/asset-list.js +49 -0
- 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/celestia/ibc-data.js +31 -0
- package/mainnet/cosmoshub/ibc-data.js +31 -0
- package/mainnet/elys/chain.js +0 -8
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/injective/ibc-data.js +31 -0
- package/mainnet/thejaynetwork/asset-list.js +9 -6
- package/mainnet/thejaynetwork/chain.js +56 -38
- package/mainnet/thejaynetwork/ibc-data.d.ts +3 -0
- package/mainnet/thejaynetwork/ibc-data.js +98 -0
- package/mainnet/thejaynetwork/index.d.ts +1 -0
- package/mainnet/thejaynetwork/index.js +3 -1
- package/mainnet/zigchain/asset-list.js +49 -0
- 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
|
@@ -522,6 +522,37 @@ const info = [
|
|
|
522
522
|
}
|
|
523
523
|
}]
|
|
524
524
|
},
|
|
525
|
+
{
|
|
526
|
+
$schema: '../ibc_data.schema.json',
|
|
527
|
+
chain1: {
|
|
528
|
+
chainName: 'celestia',
|
|
529
|
+
chainId: 'celestia',
|
|
530
|
+
clientId: '07-tendermint-149',
|
|
531
|
+
connectionId: 'connection-102'
|
|
532
|
+
},
|
|
533
|
+
chain2: {
|
|
534
|
+
chainName: 'thejaynetwork',
|
|
535
|
+
chainId: 'thejaynetwork',
|
|
536
|
+
clientId: '07-tendermint-9',
|
|
537
|
+
connectionId: 'connection-1'
|
|
538
|
+
},
|
|
539
|
+
channels: [{
|
|
540
|
+
chain1: {
|
|
541
|
+
channelId: 'channel-277',
|
|
542
|
+
portId: 'transfer'
|
|
543
|
+
},
|
|
544
|
+
chain2: {
|
|
545
|
+
channelId: 'channel-2',
|
|
546
|
+
portId: 'transfer'
|
|
547
|
+
},
|
|
548
|
+
ordering: 'unordered',
|
|
549
|
+
version: 'ics20-1',
|
|
550
|
+
tags: {
|
|
551
|
+
preferred: true,
|
|
552
|
+
status: 'ACTIVE'
|
|
553
|
+
}
|
|
554
|
+
}]
|
|
555
|
+
},
|
|
525
556
|
{
|
|
526
557
|
$schema: '../ibc_data.schema.json',
|
|
527
558
|
chain1: {
|
|
@@ -2375,6 +2375,37 @@ const info = [
|
|
|
2375
2375
|
}
|
|
2376
2376
|
}]
|
|
2377
2377
|
},
|
|
2378
|
+
{
|
|
2379
|
+
$schema: '../ibc_data.schema.json',
|
|
2380
|
+
chain1: {
|
|
2381
|
+
chainName: 'cosmoshub',
|
|
2382
|
+
chainId: 'cosmoshub-4',
|
|
2383
|
+
clientId: '07-tendermint-1476',
|
|
2384
|
+
connectionId: 'connection-1265'
|
|
2385
|
+
},
|
|
2386
|
+
chain2: {
|
|
2387
|
+
chainName: 'thejaynetwork',
|
|
2388
|
+
chainId: 'thejaynetwork',
|
|
2389
|
+
clientId: '07-tendermint-8',
|
|
2390
|
+
connectionId: 'connection-0'
|
|
2391
|
+
},
|
|
2392
|
+
channels: [{
|
|
2393
|
+
chain1: {
|
|
2394
|
+
channelId: 'channel-1871',
|
|
2395
|
+
portId: 'transfer'
|
|
2396
|
+
},
|
|
2397
|
+
chain2: {
|
|
2398
|
+
channelId: 'channel-1',
|
|
2399
|
+
portId: 'transfer'
|
|
2400
|
+
},
|
|
2401
|
+
ordering: 'unordered',
|
|
2402
|
+
version: 'ics20-1',
|
|
2403
|
+
tags: {
|
|
2404
|
+
preferred: true,
|
|
2405
|
+
status: 'ACTIVE'
|
|
2406
|
+
}
|
|
2407
|
+
}]
|
|
2408
|
+
},
|
|
2378
2409
|
{
|
|
2379
2410
|
$schema: '../ibc_data.schema.json',
|
|
2380
2411
|
chain1: {
|
|
@@ -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'
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -169,6 +169,7 @@ import * as _teritori from './teritori';
|
|
|
169
169
|
import * as _terra from './terra';
|
|
170
170
|
import * as _terra2 from './terra2';
|
|
171
171
|
import * as _tgrade from './tgrade';
|
|
172
|
+
import * as _thejaynetwork from './thejaynetwork';
|
|
172
173
|
import * as _titan from './titan';
|
|
173
174
|
import * as _umee from './umee';
|
|
174
175
|
import * as _unification from './unification';
|
|
@@ -350,6 +351,7 @@ const ibcData = [
|
|
|
350
351
|
..._terra.ibcData,
|
|
351
352
|
..._terra2.ibcData,
|
|
352
353
|
..._tgrade.ibcData,
|
|
354
|
+
..._thejaynetwork.ibcData,
|
|
353
355
|
..._titan.ibcData,
|
|
354
356
|
..._umee.ibcData,
|
|
355
357
|
..._unification.ibcData,
|
|
@@ -963,6 +963,37 @@ const info = [
|
|
|
963
963
|
}
|
|
964
964
|
}]
|
|
965
965
|
},
|
|
966
|
+
{
|
|
967
|
+
$schema: '../ibc_data.schema.json',
|
|
968
|
+
chain1: {
|
|
969
|
+
chainName: 'injective',
|
|
970
|
+
chainId: 'injective-1',
|
|
971
|
+
clientId: '07-tendermint-322',
|
|
972
|
+
connectionId: 'connection-328'
|
|
973
|
+
},
|
|
974
|
+
chain2: {
|
|
975
|
+
chainName: 'thejaynetwork',
|
|
976
|
+
chainId: 'thejaynetwork',
|
|
977
|
+
clientId: '07-tendermint-10',
|
|
978
|
+
connectionId: 'connection-2'
|
|
979
|
+
},
|
|
980
|
+
channels: [{
|
|
981
|
+
chain1: {
|
|
982
|
+
channelId: 'channel-450',
|
|
983
|
+
portId: 'transfer'
|
|
984
|
+
},
|
|
985
|
+
chain2: {
|
|
986
|
+
channelId: 'channel-3',
|
|
987
|
+
portId: 'transfer'
|
|
988
|
+
},
|
|
989
|
+
ordering: 'unordered',
|
|
990
|
+
version: 'ics20-1',
|
|
991
|
+
tags: {
|
|
992
|
+
preferred: true,
|
|
993
|
+
status: 'ACTIVE'
|
|
994
|
+
}
|
|
995
|
+
}]
|
|
996
|
+
},
|
|
966
997
|
{
|
|
967
998
|
$schema: '../ibc_data.schema.json',
|
|
968
999
|
chain1: {
|
|
@@ -2,7 +2,7 @@ const info = {
|
|
|
2
2
|
$schema: '../assetlist.schema.json',
|
|
3
3
|
chainName: 'thejaynetwork',
|
|
4
4
|
assets: [{
|
|
5
|
-
description: '
|
|
5
|
+
description: 'JAY is the native staking and governance token of The Jay Network.',
|
|
6
6
|
denomUnits: [{
|
|
7
7
|
denom: 'ujay',
|
|
8
8
|
exponent: 0
|
|
@@ -10,17 +10,20 @@ const info = {
|
|
|
10
10
|
denom: 'jay',
|
|
11
11
|
exponent: 6
|
|
12
12
|
}],
|
|
13
|
-
typeAsset: 'sdk.coin',
|
|
14
13
|
base: 'ujay',
|
|
15
|
-
name: 'Jay
|
|
14
|
+
name: 'Jay',
|
|
16
15
|
display: 'jay',
|
|
17
16
|
symbol: 'JAY',
|
|
18
17
|
logoURIs: {
|
|
19
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/jay.png'
|
|
20
19
|
},
|
|
21
20
|
images: [{
|
|
22
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/
|
|
23
|
-
}]
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/jay.png'
|
|
22
|
+
}],
|
|
23
|
+
socials: {
|
|
24
|
+
website: 'https://thejaynetwork.com'
|
|
25
|
+
},
|
|
26
|
+
typeAsset: 'sdk.coin'
|
|
24
27
|
}]
|
|
25
28
|
};
|
|
26
29
|
export default info;
|
|
@@ -3,10 +3,10 @@ const info = {
|
|
|
3
3
|
chainName: 'thejaynetwork',
|
|
4
4
|
chainType: 'cosmos',
|
|
5
5
|
chainId: 'thejaynetwork',
|
|
6
|
+
website: 'https://thejaynetwork.com',
|
|
6
7
|
prettyName: 'The Jay Network',
|
|
7
8
|
status: 'live',
|
|
8
9
|
networkType: 'mainnet',
|
|
9
|
-
website: 'https://jaynwk.gt.tc',
|
|
10
10
|
bech32Prefix: 'yjay',
|
|
11
11
|
daemonName: 'jaynd',
|
|
12
12
|
nodeHome: '$HOME/.jayn',
|
|
@@ -15,10 +15,10 @@ const info = {
|
|
|
15
15
|
fees: {
|
|
16
16
|
feeTokens: [{
|
|
17
17
|
denom: 'ujay',
|
|
18
|
-
fixedMinGasPrice: 0.
|
|
19
|
-
lowGasPrice: 0.
|
|
18
|
+
fixedMinGasPrice: 0.005,
|
|
19
|
+
lowGasPrice: 0.01,
|
|
20
20
|
averageGasPrice: 0.025,
|
|
21
|
-
highGasPrice: 0.
|
|
21
|
+
highGasPrice: 0.03
|
|
22
22
|
}]
|
|
23
23
|
},
|
|
24
24
|
staking: {
|
|
@@ -28,11 +28,18 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
gitRepo: 'https://github.com/bbtccore/thejaynetwork',
|
|
31
|
-
recommendedVersion: 'v1.
|
|
32
|
-
compatibleVersions: ['v1.
|
|
31
|
+
recommendedVersion: 'v1.1.0',
|
|
32
|
+
compatibleVersions: ['v1.1.0'],
|
|
33
|
+
binaries: {
|
|
34
|
+
"linux/amd64": 'https://github.com/bbtccore/thejaynetwork/releases/download/v1.1.0/jaynd-linux-amd64.tar.gz',
|
|
35
|
+
"linux/arm64": 'https://github.com/bbtccore/thejaynetwork/releases/download/v1.1.0/jaynd-linux-arm64.tar.gz'
|
|
36
|
+
},
|
|
33
37
|
consensus: {
|
|
34
38
|
type: 'cometbft',
|
|
35
|
-
version: 'v0.38.
|
|
39
|
+
version: 'v0.38.21'
|
|
40
|
+
},
|
|
41
|
+
genesis: {
|
|
42
|
+
genesisUrl: 'https://raw.githubusercontent.com/bbtccore/thejaynetwork/master/genesis/genesis.json'
|
|
36
43
|
},
|
|
37
44
|
sdk: {
|
|
38
45
|
type: 'cosmos',
|
|
@@ -40,71 +47,82 @@ const info = {
|
|
|
40
47
|
},
|
|
41
48
|
ibc: {
|
|
42
49
|
type: 'go',
|
|
43
|
-
version: 'v10.
|
|
44
|
-
},
|
|
45
|
-
binaries: {
|
|
46
|
-
"linux/amd64": 'https://github.com/bbtccore/thejaynetwork/releases/download/v1.0.0/jaynd-linux-amd64',
|
|
47
|
-
"linux/arm64": 'https://github.com/bbtccore/thejaynetwork/releases/download/v1.0.0/jaynd-linux-arm64'
|
|
50
|
+
version: 'v10.5.0'
|
|
48
51
|
},
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
+
cosmwasm: {
|
|
53
|
+
version: 'v0.61.10',
|
|
54
|
+
repo: 'https://github.com/CosmWasm/wasmd',
|
|
55
|
+
tag: 'v0.61.10'
|
|
52
56
|
}
|
|
53
57
|
},
|
|
54
58
|
logoURIs: {
|
|
55
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/
|
|
59
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/jay.png'
|
|
56
60
|
},
|
|
57
|
-
description: 'The Jay Network is a Cosmos SDK-based blockchain
|
|
61
|
+
description: 'The Jay Network is a Cosmos SDK-based blockchain with IBC interoperability, CosmWasm smart contracts, and cross-chain connectivity to Cosmos Hub, Celestia, and Injective.',
|
|
58
62
|
apis: {
|
|
59
63
|
rpc: [
|
|
60
64
|
{
|
|
61
|
-
address: 'https://
|
|
62
|
-
provider: 'Jay Network'
|
|
65
|
+
address: 'https://thejaynetwork.com/rpc',
|
|
66
|
+
provider: 'The Jay Network'
|
|
63
67
|
},
|
|
64
68
|
{
|
|
65
|
-
address: 'http://
|
|
66
|
-
provider: 'Jay Network (
|
|
69
|
+
address: 'http://152.53.195.74:26657',
|
|
70
|
+
provider: 'The Jay Network (Sentry)'
|
|
67
71
|
},
|
|
68
72
|
{
|
|
69
73
|
address: 'https://rpc-jay.onenov.xyz',
|
|
70
74
|
provider: 'OneNov'
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
address: 'https://rpc-jaynetwork.vinjan-inc.com',
|
|
78
|
+
provider: 'Vinjan.Inc'
|
|
71
79
|
}
|
|
72
80
|
],
|
|
73
81
|
rest: [
|
|
74
82
|
{
|
|
75
|
-
address: 'https://
|
|
76
|
-
provider: 'Jay Network'
|
|
83
|
+
address: 'https://thejaynetwork.com/rest',
|
|
84
|
+
provider: 'The Jay Network'
|
|
77
85
|
},
|
|
78
86
|
{
|
|
79
|
-
address: 'http://
|
|
80
|
-
provider: 'Jay Network (
|
|
87
|
+
address: 'http://152.53.195.74:1317',
|
|
88
|
+
provider: 'The Jay Network (Sentry)'
|
|
81
89
|
},
|
|
82
90
|
{
|
|
83
91
|
address: 'https://api-jay.onenov.xyz',
|
|
84
92
|
provider: 'OneNov'
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
address: 'https://api-jaynetwork.vinjan-inc.com',
|
|
96
|
+
provider: 'Vinjan.Inc'
|
|
85
97
|
}
|
|
86
98
|
],
|
|
87
99
|
grpc: [{
|
|
88
|
-
address: '
|
|
89
|
-
provider: 'Jay Network'
|
|
90
|
-
}, {
|
|
91
|
-
address: '34.171.203.84:9090',
|
|
92
|
-
provider: 'Jay Network'
|
|
100
|
+
address: '152.53.195.74:9090',
|
|
101
|
+
provider: 'The Jay Network (Sentry)'
|
|
93
102
|
}]
|
|
94
103
|
},
|
|
95
|
-
explorers: [
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
104
|
+
explorers: [
|
|
105
|
+
{
|
|
106
|
+
kind: 'JayScan',
|
|
107
|
+
url: 'https://jayscan.thejaynetwork.com',
|
|
108
|
+
txPage: 'https://jayscan.thejaynetwork.com/tx/${txHash}',
|
|
109
|
+
accountPage: 'https://jayscan.thejaynetwork.com/account/${accountAddress}'
|
|
110
|
+
},
|
|
111
|
+
{
|
|
101
112
|
kind: 'Jay Network Explorer',
|
|
102
113
|
url: 'https://jay-explorer.onenov.xyz',
|
|
103
114
|
txPage: 'https://jay-explorer.onenov.xyz/transactions/${txHash}',
|
|
104
115
|
accountPage: 'https://jay-explorer.onenov.xyz/accounts/${accountAddress}'
|
|
105
|
-
}
|
|
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
|
+
],
|
|
106
124
|
images: [{
|
|
107
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/
|
|
125
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/jay.png'
|
|
108
126
|
}]
|
|
109
127
|
};
|
|
110
128
|
export default info;
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain1: {
|
|
5
|
+
chainName: 'celestia',
|
|
6
|
+
chainId: 'celestia',
|
|
7
|
+
clientId: '07-tendermint-149',
|
|
8
|
+
connectionId: 'connection-102'
|
|
9
|
+
},
|
|
10
|
+
chain2: {
|
|
11
|
+
chainName: 'thejaynetwork',
|
|
12
|
+
chainId: 'thejaynetwork',
|
|
13
|
+
clientId: '07-tendermint-9',
|
|
14
|
+
connectionId: 'connection-1'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain1: {
|
|
18
|
+
channelId: 'channel-277',
|
|
19
|
+
portId: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain2: {
|
|
22
|
+
channelId: 'channel-2',
|
|
23
|
+
portId: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {
|
|
28
|
+
preferred: true,
|
|
29
|
+
status: 'ACTIVE'
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
$schema: '../ibc_data.schema.json',
|
|
35
|
+
chain1: {
|
|
36
|
+
chainName: 'cosmoshub',
|
|
37
|
+
chainId: 'cosmoshub-4',
|
|
38
|
+
clientId: '07-tendermint-1476',
|
|
39
|
+
connectionId: 'connection-1265'
|
|
40
|
+
},
|
|
41
|
+
chain2: {
|
|
42
|
+
chainName: 'thejaynetwork',
|
|
43
|
+
chainId: 'thejaynetwork',
|
|
44
|
+
clientId: '07-tendermint-8',
|
|
45
|
+
connectionId: 'connection-0'
|
|
46
|
+
},
|
|
47
|
+
channels: [{
|
|
48
|
+
chain1: {
|
|
49
|
+
channelId: 'channel-1871',
|
|
50
|
+
portId: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
chain2: {
|
|
53
|
+
channelId: 'channel-1',
|
|
54
|
+
portId: 'transfer'
|
|
55
|
+
},
|
|
56
|
+
ordering: 'unordered',
|
|
57
|
+
version: 'ics20-1',
|
|
58
|
+
tags: {
|
|
59
|
+
preferred: true,
|
|
60
|
+
status: 'ACTIVE'
|
|
61
|
+
}
|
|
62
|
+
}]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
$schema: '../ibc_data.schema.json',
|
|
66
|
+
chain1: {
|
|
67
|
+
chainName: 'injective',
|
|
68
|
+
chainId: 'injective-1',
|
|
69
|
+
clientId: '07-tendermint-322',
|
|
70
|
+
connectionId: 'connection-328'
|
|
71
|
+
},
|
|
72
|
+
chain2: {
|
|
73
|
+
chainName: 'thejaynetwork',
|
|
74
|
+
chainId: 'thejaynetwork',
|
|
75
|
+
clientId: '07-tendermint-10',
|
|
76
|
+
connectionId: 'connection-2'
|
|
77
|
+
},
|
|
78
|
+
channels: [{
|
|
79
|
+
chain1: {
|
|
80
|
+
channelId: 'channel-450',
|
|
81
|
+
portId: 'transfer'
|
|
82
|
+
},
|
|
83
|
+
chain2: {
|
|
84
|
+
channelId: 'channel-3',
|
|
85
|
+
portId: 'transfer'
|
|
86
|
+
},
|
|
87
|
+
ordering: 'unordered',
|
|
88
|
+
version: 'ics20-1',
|
|
89
|
+
tags: {
|
|
90
|
+
preferred: true,
|
|
91
|
+
status: 'ACTIVE'
|
|
92
|
+
}
|
|
93
|
+
}]
|
|
94
|
+
}
|
|
95
|
+
];
|
|
96
|
+
export default info;
|
|
@@ -487,6 +487,55 @@ const info = {
|
|
|
487
487
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eurc.png'
|
|
488
488
|
}]
|
|
489
489
|
},
|
|
490
|
+
{
|
|
491
|
+
description: 'Tether Gold on ZIGChain',
|
|
492
|
+
denomUnits: [{
|
|
493
|
+
denom: 'ibc/294719272CB20610F3C0173B0E14DD65F9D7F515548AB3F8373CC91F36357234',
|
|
494
|
+
exponent: 0
|
|
495
|
+
}, {
|
|
496
|
+
denom: 'xaut',
|
|
497
|
+
exponent: 6
|
|
498
|
+
}],
|
|
499
|
+
typeAsset: 'ics20',
|
|
500
|
+
base: 'ibc/294719272CB20610F3C0173B0E14DD65F9D7F515548AB3F8373CC91F36357234',
|
|
501
|
+
name: 'Tether Gold on ZIGChain',
|
|
502
|
+
display: 'xaut',
|
|
503
|
+
symbol: 'XAUt',
|
|
504
|
+
traces: [{
|
|
505
|
+
type: 'ibc-bridge',
|
|
506
|
+
counterparty: {
|
|
507
|
+
chainName: 'ethereum',
|
|
508
|
+
baseDenom: '0x68749665ff8d2d112fa859aa293f07a622782f38',
|
|
509
|
+
channelId: 'channel-0'
|
|
510
|
+
},
|
|
511
|
+
chain: {
|
|
512
|
+
channelId: '08-wasm-1369',
|
|
513
|
+
path: 'transfer/08-wasm-1369/0x68749665ff8d2d112fa859aa293f07a622782f38'
|
|
514
|
+
},
|
|
515
|
+
provider: 'Eureka'
|
|
516
|
+
}, {
|
|
517
|
+
type: 'ibc',
|
|
518
|
+
counterparty: {
|
|
519
|
+
chainName: 'cosmoshub',
|
|
520
|
+
baseDenom: 'ibc/A96C4DBCB7E36F8D265E92240510DB0F29F39CE4AAF52DBDE686E448BA447886',
|
|
521
|
+
channelId: 'channel-1555'
|
|
522
|
+
},
|
|
523
|
+
chain: {
|
|
524
|
+
channelId: 'channel-4',
|
|
525
|
+
path: 'transfer/channel-4/transfer/08-wasm-1369/0x68749665ff8d2d112fa859aa293f07a622782f38'
|
|
526
|
+
}
|
|
527
|
+
}],
|
|
528
|
+
logoURIs: {
|
|
529
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
|
|
530
|
+
},
|
|
531
|
+
images: [{
|
|
532
|
+
imageSync: {
|
|
533
|
+
chainName: 'ethereum',
|
|
534
|
+
baseDenom: '0x68749665ff8d2d112fa859aa293f07a622782f38'
|
|
535
|
+
},
|
|
536
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
|
|
537
|
+
}]
|
|
538
|
+
},
|
|
490
539
|
{
|
|
491
540
|
description: 'Stride Staked ATOM on ZIGChain',
|
|
492
541
|
denomUnits: [{
|
|
@@ -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;
|
|
@@ -524,6 +524,37 @@ const info = [
|
|
|
524
524
|
}
|
|
525
525
|
}]
|
|
526
526
|
},
|
|
527
|
+
{
|
|
528
|
+
$schema: '../ibc_data.schema.json',
|
|
529
|
+
chain1: {
|
|
530
|
+
chainName: 'celestia',
|
|
531
|
+
chainId: 'celestia',
|
|
532
|
+
clientId: '07-tendermint-149',
|
|
533
|
+
connectionId: 'connection-102'
|
|
534
|
+
},
|
|
535
|
+
chain2: {
|
|
536
|
+
chainName: 'thejaynetwork',
|
|
537
|
+
chainId: 'thejaynetwork',
|
|
538
|
+
clientId: '07-tendermint-9',
|
|
539
|
+
connectionId: 'connection-1'
|
|
540
|
+
},
|
|
541
|
+
channels: [{
|
|
542
|
+
chain1: {
|
|
543
|
+
channelId: 'channel-277',
|
|
544
|
+
portId: 'transfer'
|
|
545
|
+
},
|
|
546
|
+
chain2: {
|
|
547
|
+
channelId: 'channel-2',
|
|
548
|
+
portId: 'transfer'
|
|
549
|
+
},
|
|
550
|
+
ordering: 'unordered',
|
|
551
|
+
version: 'ics20-1',
|
|
552
|
+
tags: {
|
|
553
|
+
preferred: true,
|
|
554
|
+
status: 'ACTIVE'
|
|
555
|
+
}
|
|
556
|
+
}]
|
|
557
|
+
},
|
|
527
558
|
{
|
|
528
559
|
$schema: '../ibc_data.schema.json',
|
|
529
560
|
chain1: {
|