chain-registry 2.0.201 → 2.0.203
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/amitis/asset-list.js +32 -0
- package/esm/mainnet/amitis/chain.js +63 -0
- package/esm/mainnet/amitis/ibc-data.js +31 -0
- package/esm/mainnet/amitis/index.js +6 -0
- package/esm/mainnet/asset-lists.js +2 -0
- package/esm/mainnet/celestia/ibc-data.js +31 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/coreum/asset-list.js +0 -1
- package/esm/mainnet/cosmoshub/ibc-data.js +31 -0
- package/esm/mainnet/ibc-data.js +4 -0
- package/esm/mainnet/injective/ibc-data.js +31 -0
- package/esm/mainnet/osmosis/ibc-data.js +30 -0
- package/esm/mainnet/thejaynetwork/asset-list.js +9 -6
- package/esm/mainnet/thejaynetwork/chain.js +61 -41
- 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/mainnet/amitis/asset-list.d.ts +3 -0
- package/mainnet/amitis/asset-list.js +34 -0
- package/mainnet/amitis/chain.d.ts +3 -0
- package/mainnet/amitis/chain.js +65 -0
- package/mainnet/amitis/ibc-data.d.ts +3 -0
- package/mainnet/amitis/ibc-data.js +33 -0
- package/mainnet/amitis/index.d.ts +3 -0
- package/mainnet/amitis/index.js +12 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/celestia/ibc-data.js +31 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/coreum/asset-list.js +0 -1
- package/mainnet/cosmoshub/ibc-data.js +31 -0
- package/mainnet/ibc-data.js +4 -0
- package/mainnet/injective/ibc-data.js +31 -0
- package/mainnet/osmosis/ibc-data.js +30 -0
- package/mainnet/thejaynetwork/asset-list.js +9 -6
- package/mainnet/thejaynetwork/chain.js +61 -41
- 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
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'amitis',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of the Amitis Network. AMTS powers the cooperative Layer 1 blockchain that returns 80% of transaction fees to users.',
|
|
6
|
+
typeAsset: 'sdk.coin',
|
|
7
|
+
denomUnits: [{
|
|
8
|
+
denom: 'uamts',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'amts',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'uamts',
|
|
15
|
+
name: 'Amitis',
|
|
16
|
+
display: 'amts',
|
|
17
|
+
symbol: 'AMTS',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/amitis/images/amts.svg'
|
|
20
|
+
},
|
|
21
|
+
images: [{
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/amitis/images/amts.svg'
|
|
23
|
+
}],
|
|
24
|
+
keywords: [
|
|
25
|
+
'native',
|
|
26
|
+
'staking',
|
|
27
|
+
'fee-rebate',
|
|
28
|
+
'dex'
|
|
29
|
+
]
|
|
30
|
+
}]
|
|
31
|
+
};
|
|
32
|
+
export default info;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'amitis',
|
|
4
|
+
chainType: 'cosmos',
|
|
5
|
+
status: 'live',
|
|
6
|
+
networkType: 'mainnet',
|
|
7
|
+
prettyName: 'Amitis Network',
|
|
8
|
+
chainId: 'amitis-network',
|
|
9
|
+
bech32Prefix: 'amitis',
|
|
10
|
+
daemonName: 'amisd',
|
|
11
|
+
nodeHome: '$HOME/.amitis',
|
|
12
|
+
keyAlgos: ['secp256k1'],
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
feeTokens: [{
|
|
16
|
+
denom: 'uamts',
|
|
17
|
+
fixedMinGasPrice: 0,
|
|
18
|
+
lowGasPrice: 0.01,
|
|
19
|
+
averageGasPrice: 0.025,
|
|
20
|
+
highGasPrice: 0.04
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
stakingTokens: [{
|
|
25
|
+
denom: 'uamts'
|
|
26
|
+
}],
|
|
27
|
+
lockDuration: {
|
|
28
|
+
time: '1814400s'
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
gitRepo: 'https://github.com/amitis-network/amitis-network',
|
|
33
|
+
recommendedVersion: 'v1.0.0',
|
|
34
|
+
compatibleVersions: ['v1.0.0'],
|
|
35
|
+
consensus: {
|
|
36
|
+
type: 'cometbft',
|
|
37
|
+
version: '0.38.11'
|
|
38
|
+
},
|
|
39
|
+
genesis: {
|
|
40
|
+
genesisUrl: 'https://rpc.amitis.network/genesis'
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
description: 'Amitis Network is a cooperative Layer 1 blockchain built on the Cosmos SDK. Our philosophy is friendship through shared prosperity — the network returns 80% of transaction fees directly to users at the protocol level, making it one of the most user-aligned blockchains in the Cosmos ecosystem. Amitis features 21 fixed validator slots, a native DEX, and native liquid staking built directly into the protocol.',
|
|
44
|
+
apis: {
|
|
45
|
+
rpc: [{
|
|
46
|
+
address: 'https://rpc.amitis.network',
|
|
47
|
+
provider: 'Amitis Network'
|
|
48
|
+
}],
|
|
49
|
+
rest: [{
|
|
50
|
+
address: 'https://rest.amitis.network',
|
|
51
|
+
provider: 'Amitis Network'
|
|
52
|
+
}]
|
|
53
|
+
},
|
|
54
|
+
explorers: [],
|
|
55
|
+
keywords: [
|
|
56
|
+
'cosmos',
|
|
57
|
+
'fee-rebate',
|
|
58
|
+
'dex',
|
|
59
|
+
'cooperative',
|
|
60
|
+
'layer1'
|
|
61
|
+
]
|
|
62
|
+
};
|
|
63
|
+
export default info;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'amitis',
|
|
5
|
+
chainId: 'amitis-network',
|
|
6
|
+
clientId: '07-tendermint-0',
|
|
7
|
+
connectionId: 'connection-0'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'osmosis',
|
|
11
|
+
chainId: 'osmosis-1',
|
|
12
|
+
clientId: '07-tendermint-3701',
|
|
13
|
+
connectionId: 'connection-11055'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-1',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-110089',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
}];
|
|
31
|
+
export default info;
|
|
@@ -12,6 +12,7 @@ import * as _aioz from './aioz';
|
|
|
12
12
|
import * as _akash from './akash';
|
|
13
13
|
import * as _allora from './allora';
|
|
14
14
|
import * as _althea from './althea';
|
|
15
|
+
import * as _amitis from './amitis';
|
|
15
16
|
import * as _andromeda from './andromeda';
|
|
16
17
|
import * as _archway from './archway';
|
|
17
18
|
import * as _arkeo from './arkeo';
|
|
@@ -247,6 +248,7 @@ const assetList = [
|
|
|
247
248
|
_akash.assetList,
|
|
248
249
|
_allora.assetList,
|
|
249
250
|
_althea.assetList,
|
|
251
|
+
_amitis.assetList,
|
|
250
252
|
_andromeda.assetList,
|
|
251
253
|
_archway.assetList,
|
|
252
254
|
_arkeo.assetList,
|
|
@@ -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: {
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -12,6 +12,7 @@ import * as _aioz from './aioz';
|
|
|
12
12
|
import * as _akash from './akash';
|
|
13
13
|
import * as _allora from './allora';
|
|
14
14
|
import * as _althea from './althea';
|
|
15
|
+
import * as _amitis from './amitis';
|
|
15
16
|
import * as _andromeda from './andromeda';
|
|
16
17
|
import * as _archway from './archway';
|
|
17
18
|
import * as _arkeo from './arkeo';
|
|
@@ -247,6 +248,7 @@ const chains = [
|
|
|
247
248
|
_akash.chain,
|
|
248
249
|
_allora.chain,
|
|
249
250
|
_althea.chain,
|
|
251
|
+
_amitis.chain,
|
|
250
252
|
_andromeda.chain,
|
|
251
253
|
_archway.chain,
|
|
252
254
|
_arkeo.chain,
|
|
@@ -162,7 +162,6 @@ const info = {
|
|
|
162
162
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/sara.png',
|
|
163
163
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/sara.svg'
|
|
164
164
|
},
|
|
165
|
-
coingeckoId: 'pulsara',
|
|
166
165
|
keywords: [
|
|
167
166
|
'dex',
|
|
168
167
|
'staking',
|
|
@@ -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: {
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -8,6 +8,7 @@ import * as _agoric from './agoric';
|
|
|
8
8
|
import * as _aioz from './aioz';
|
|
9
9
|
import * as _akash from './akash';
|
|
10
10
|
import * as _allora from './allora';
|
|
11
|
+
import * as _amitis from './amitis';
|
|
11
12
|
import * as _andromeda from './andromeda';
|
|
12
13
|
import * as _archway from './archway';
|
|
13
14
|
import * as _arkeo from './arkeo';
|
|
@@ -168,6 +169,7 @@ import * as _teritori from './teritori';
|
|
|
168
169
|
import * as _terra from './terra';
|
|
169
170
|
import * as _terra2 from './terra2';
|
|
170
171
|
import * as _tgrade from './tgrade';
|
|
172
|
+
import * as _thejaynetwork from './thejaynetwork';
|
|
171
173
|
import * as _titan from './titan';
|
|
172
174
|
import * as _umee from './umee';
|
|
173
175
|
import * as _unification from './unification';
|
|
@@ -188,6 +190,7 @@ const ibcData = [
|
|
|
188
190
|
..._aioz.ibcData,
|
|
189
191
|
..._akash.ibcData,
|
|
190
192
|
..._allora.ibcData,
|
|
193
|
+
..._amitis.ibcData,
|
|
191
194
|
..._andromeda.ibcData,
|
|
192
195
|
..._archway.ibcData,
|
|
193
196
|
..._arkeo.ibcData,
|
|
@@ -348,6 +351,7 @@ const ibcData = [
|
|
|
348
351
|
..._terra.ibcData,
|
|
349
352
|
..._terra2.ibcData,
|
|
350
353
|
..._tgrade.ibcData,
|
|
354
|
+
..._thejaynetwork.ibcData,
|
|
351
355
|
..._titan.ibcData,
|
|
352
356
|
..._umee.ibcData,
|
|
353
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: {
|
|
@@ -185,6 +185,36 @@ const info = [
|
|
|
185
185
|
}
|
|
186
186
|
}]
|
|
187
187
|
},
|
|
188
|
+
{
|
|
189
|
+
$schema: '../ibc_data.schema.json',
|
|
190
|
+
chain1: {
|
|
191
|
+
chainName: 'amitis',
|
|
192
|
+
chainId: 'amitis-network',
|
|
193
|
+
clientId: '07-tendermint-0',
|
|
194
|
+
connectionId: 'connection-0'
|
|
195
|
+
},
|
|
196
|
+
chain2: {
|
|
197
|
+
chainName: 'osmosis',
|
|
198
|
+
chainId: 'osmosis-1',
|
|
199
|
+
clientId: '07-tendermint-3701',
|
|
200
|
+
connectionId: 'connection-11055'
|
|
201
|
+
},
|
|
202
|
+
channels: [{
|
|
203
|
+
chain1: {
|
|
204
|
+
channelId: 'channel-1',
|
|
205
|
+
portId: 'transfer'
|
|
206
|
+
},
|
|
207
|
+
chain2: {
|
|
208
|
+
channelId: 'channel-110089',
|
|
209
|
+
portId: 'transfer'
|
|
210
|
+
},
|
|
211
|
+
ordering: 'unordered',
|
|
212
|
+
version: 'ics20-1',
|
|
213
|
+
tags: {
|
|
214
|
+
preferred: true
|
|
215
|
+
}
|
|
216
|
+
}]
|
|
217
|
+
},
|
|
188
218
|
{
|
|
189
219
|
$schema: '../ibc_data.schema.json',
|
|
190
220
|
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,52 +47,65 @@ const info = {
|
|
|
40
47
|
},
|
|
41
48
|
ibc: {
|
|
42
49
|
type: 'go',
|
|
43
|
-
version: 'v10.
|
|
50
|
+
version: 'v10.5.0'
|
|
44
51
|
},
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
genesis: {
|
|
50
|
-
name: 'v1',
|
|
51
|
-
genesisUrl: 'https://raw.githubusercontent.com/bbtccore/thejaynetwork/master/genesis/genesis.json'
|
|
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
|
-
rpc: [
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
63
|
+
rpc: [
|
|
64
|
+
{
|
|
65
|
+
address: 'https://thejaynetwork.com/rpc',
|
|
66
|
+
provider: 'The Jay Network'
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
address: 'http://152.53.195.74:26657',
|
|
70
|
+
provider: 'The Jay Network (Sentry)'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
address: 'https://rpc-jay.onenov.xyz',
|
|
74
|
+
provider: 'OneNov'
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
rest: [
|
|
78
|
+
{
|
|
79
|
+
address: 'https://thejaynetwork.com/rest',
|
|
80
|
+
provider: 'The Jay Network'
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
address: 'http://152.53.195.74:1317',
|
|
84
|
+
provider: 'The Jay Network (Sentry)'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
address: 'https://api-jay.onenov.xyz',
|
|
88
|
+
provider: 'OneNov'
|
|
89
|
+
}
|
|
90
|
+
],
|
|
73
91
|
grpc: [{
|
|
74
|
-
address: '
|
|
75
|
-
provider: 'Jay Network'
|
|
76
|
-
}, {
|
|
77
|
-
address: '34.171.203.84:9090',
|
|
78
|
-
provider: 'Jay Network'
|
|
92
|
+
address: '152.53.195.74:9090',
|
|
93
|
+
provider: 'The Jay Network (Sentry)'
|
|
79
94
|
}]
|
|
80
95
|
},
|
|
81
96
|
explorers: [{
|
|
82
|
-
kind: '
|
|
83
|
-
url: 'https://jayscan.
|
|
84
|
-
txPage: 'https://jayscan.
|
|
85
|
-
accountPage: 'https://jayscan.
|
|
97
|
+
kind: 'JayScan',
|
|
98
|
+
url: 'https://jayscan.thejaynetwork.com',
|
|
99
|
+
txPage: 'https://jayscan.thejaynetwork.com/tx/${txHash}',
|
|
100
|
+
accountPage: 'https://jayscan.thejaynetwork.com/account/${accountAddress}'
|
|
101
|
+
}, {
|
|
102
|
+
kind: 'Jay Network Explorer',
|
|
103
|
+
url: 'https://jay-explorer.onenov.xyz',
|
|
104
|
+
txPage: 'https://jay-explorer.onenov.xyz/transactions/${txHash}',
|
|
105
|
+
accountPage: 'https://jay-explorer.onenov.xyz/accounts/${accountAddress}'
|
|
86
106
|
}],
|
|
87
107
|
images: [{
|
|
88
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/
|
|
108
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/jay.png'
|
|
89
109
|
}]
|
|
90
110
|
};
|
|
91
111
|
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;
|