chain-registry 2.0.244 → 2.0.246
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/archway/asset-list.js +1 -2
- package/esm/mainnet/asset-lists.js +2 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/genesisl1/asset-list.js +7 -1
- package/esm/mainnet/genesisl1/chain.js +34 -11
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/neutron/asset-list.js +1 -2
- package/esm/mainnet/noble/ibc-data.js +31 -0
- package/esm/mainnet/osmosis/asset-list.js +1 -0
- package/esm/mainnet/ritbit/chain.js +31 -6
- package/esm/mainnet/ritbit/ibc-data.js +32 -0
- package/esm/mainnet/ritbit/index.js +2 -0
- package/esm/mainnet/xpla/asset-list.js +21 -0
- package/esm/mainnet/zerone/asset-list.js +45 -0
- package/esm/mainnet/zerone/chain.js +89 -0
- package/esm/mainnet/zerone/index.js +4 -0
- package/mainnet/archway/asset-list.js +1 -2
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/genesisl1/asset-list.js +7 -1
- package/mainnet/genesisl1/chain.js +34 -11
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/neutron/asset-list.js +1 -2
- package/mainnet/noble/ibc-data.js +31 -0
- package/mainnet/osmosis/asset-list.js +1 -0
- package/mainnet/ritbit/chain.js +31 -6
- package/mainnet/ritbit/ibc-data.d.ts +3 -0
- package/mainnet/ritbit/ibc-data.js +34 -0
- package/mainnet/ritbit/index.d.ts +1 -0
- package/mainnet/ritbit/index.js +3 -1
- package/mainnet/xpla/asset-list.js +21 -0
- package/mainnet/zerone/asset-list.d.ts +3 -0
- package/mainnet/zerone/asset-list.js +47 -0
- package/mainnet/zerone/chain.d.ts +3 -0
- package/mainnet/zerone/chain.js +91 -0
- package/mainnet/zerone/index.d.ts +2 -0
- package/mainnet/zerone/index.js +10 -0
- package/package.json +3 -3
|
@@ -182,8 +182,7 @@ const info = {
|
|
|
182
182
|
images: [{
|
|
183
183
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/axv.png',
|
|
184
184
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/axv.svg'
|
|
185
|
-
}]
|
|
186
|
-
coingeckoId: 'astrovault'
|
|
185
|
+
}]
|
|
187
186
|
},
|
|
188
187
|
{
|
|
189
188
|
description: 'Wrapped ARCH',
|
|
@@ -222,6 +222,7 @@ import * as _xpla from './xpla';
|
|
|
222
222
|
import * as _xrplevm from './xrplevm';
|
|
223
223
|
import * as _xyra from './xyra';
|
|
224
224
|
import * as _zenrock from './zenrock';
|
|
225
|
+
import * as _zerone from './zerone';
|
|
225
226
|
import * as _zetachain from './zetachain';
|
|
226
227
|
import * as _zigchain from './zigchain';
|
|
227
228
|
const assetList = [
|
|
@@ -449,6 +450,7 @@ const assetList = [
|
|
|
449
450
|
_xrplevm.assetList,
|
|
450
451
|
_xyra.assetList,
|
|
451
452
|
_zenrock.assetList,
|
|
453
|
+
_zerone.assetList,
|
|
452
454
|
_zetachain.assetList,
|
|
453
455
|
_zigchain.assetList
|
|
454
456
|
];
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -222,6 +222,7 @@ import * as _xpla from './xpla';
|
|
|
222
222
|
import * as _xrplevm from './xrplevm';
|
|
223
223
|
import * as _xyra from './xyra';
|
|
224
224
|
import * as _zenrock from './zenrock';
|
|
225
|
+
import * as _zerone from './zerone';
|
|
225
226
|
import * as _zetachain from './zetachain';
|
|
226
227
|
import * as _zigchain from './zigchain';
|
|
227
228
|
const chains = [
|
|
@@ -449,6 +450,7 @@ const chains = [
|
|
|
449
450
|
_xrplevm.chain,
|
|
450
451
|
_xyra.chain,
|
|
451
452
|
_zenrock.chain,
|
|
453
|
+
_zerone.chain,
|
|
452
454
|
_zetachain.chain,
|
|
453
455
|
_zigchain.chain
|
|
454
456
|
];
|
|
@@ -10,6 +10,7 @@ const info = {
|
|
|
10
10
|
denom: 'l1',
|
|
11
11
|
exponent: 18
|
|
12
12
|
}],
|
|
13
|
+
typeAsset: 'sdk.coin',
|
|
13
14
|
base: 'el1',
|
|
14
15
|
name: 'GenesisL1',
|
|
15
16
|
display: 'l1',
|
|
@@ -22,7 +23,12 @@ const info = {
|
|
|
22
23
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png',
|
|
23
24
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg'
|
|
24
25
|
}],
|
|
25
|
-
|
|
26
|
+
coingeckoId: 'genesisl1',
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://genesisl1.com',
|
|
29
|
+
x: 'https://x.com/genesis_L1',
|
|
30
|
+
telegram: 'https://t.me/Genesis_L1'
|
|
31
|
+
}
|
|
26
32
|
}]
|
|
27
33
|
};
|
|
28
34
|
export default info;
|
|
@@ -26,17 +26,22 @@ const info = {
|
|
|
26
26
|
},
|
|
27
27
|
codebase: {
|
|
28
28
|
gitRepo: 'https://github.com/GenesisL1/genesis-crypto',
|
|
29
|
-
recommendedVersion: 'v1.
|
|
30
|
-
compatibleVersions: ['v1.
|
|
29
|
+
recommendedVersion: 'v1.6.2',
|
|
30
|
+
compatibleVersions: ['v1.6.2'],
|
|
31
|
+
binaries: {
|
|
32
|
+
"linux/amd64": 'https://github.com/GenesisL1/genesis-crypto/releases/download/v1.6.2/genesis_1.6.2_Linux_x86_64.tar.gz',
|
|
33
|
+
"linux/arm64": 'https://github.com/GenesisL1/genesis-crypto/releases/download/v1.6.2/genesis_1.6.2_Linux_arm64.tar.gz',
|
|
34
|
+
"windows/amd64": 'https://github.com/GenesisL1/genesis-crypto/releases/download/v1.6.2/genesis_1.6.2_Windows_x86_64.tar.gz'
|
|
35
|
+
},
|
|
31
36
|
genesis: {
|
|
32
37
|
name: 'plan_ethermint',
|
|
33
38
|
genesisUrl: 'https://raw.githubusercontent.com/GenesisL1/genesis-parameters/main/genesis_29-2/genesis.json'
|
|
34
39
|
},
|
|
35
40
|
sdk: {
|
|
36
41
|
type: 'cosmos',
|
|
37
|
-
version: '0.
|
|
42
|
+
version: '0.50.6'
|
|
38
43
|
},
|
|
39
|
-
tag: 'v1.
|
|
44
|
+
tag: 'v1.6.2'
|
|
40
45
|
},
|
|
41
46
|
logoURIs: {
|
|
42
47
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png',
|
|
@@ -47,9 +52,6 @@ const info = {
|
|
|
47
52
|
rpc: [{
|
|
48
53
|
address: 'https://26657.genesisl1.org',
|
|
49
54
|
provider: 'GenesisL1'
|
|
50
|
-
}, {
|
|
51
|
-
address: 'https://genesisl1-rpc.zenode.app',
|
|
52
|
-
provider: 'anodeofzen'
|
|
53
55
|
}],
|
|
54
56
|
rest: [{
|
|
55
57
|
address: 'https://api.genesisl1.org',
|
|
@@ -64,21 +66,35 @@ const info = {
|
|
|
64
66
|
}]
|
|
65
67
|
},
|
|
66
68
|
explorers: [
|
|
69
|
+
{
|
|
70
|
+
kind: 'GenesisL1',
|
|
71
|
+
url: 'https://explorer.genesisl1.org',
|
|
72
|
+
txPage: 'https://explorer.genesisl1.org/tx/${txHash}',
|
|
73
|
+
accountPage: 'https://explorer.genesisl1.org/address/${accountAddress}'
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
kind: 'GenesisL1',
|
|
77
|
+
url: 'https://l1coin.com/explorer.html',
|
|
78
|
+
txPage: 'https://l1coin.com/explorer.html#/tx/${txHash}',
|
|
79
|
+
accountPage: 'https://l1coin.com/explorer.html#/address/${accountAddress}'
|
|
80
|
+
},
|
|
67
81
|
{
|
|
68
82
|
kind: 'ping.pub',
|
|
69
83
|
url: 'https://ping.pub/genesisL1',
|
|
70
|
-
txPage: 'https://ping.pub/genesisL1/tx/${txHash}'
|
|
84
|
+
txPage: 'https://ping.pub/genesisL1/tx/${txHash}',
|
|
85
|
+
accountPage: 'https://ping.pub/genesisL1/account/${accountAddress}'
|
|
71
86
|
},
|
|
72
87
|
{
|
|
73
88
|
kind: 'ping.pub',
|
|
74
89
|
url: 'https://exp.utsa.tech/genesis',
|
|
75
|
-
txPage: 'https://exp.utsa.tech/genesis/tx/${txHash}'
|
|
90
|
+
txPage: 'https://exp.utsa.tech/genesis/tx/${txHash}',
|
|
91
|
+
accountPage: 'https://exp.utsa.tech/genesis/account/${accountAddress}'
|
|
76
92
|
},
|
|
77
93
|
{
|
|
78
|
-
kind: '
|
|
94
|
+
kind: 'ping.pub',
|
|
79
95
|
url: 'https://explorer.stavr.tech/Genesisl1',
|
|
80
96
|
txPage: 'https://explorer.stavr.tech/Genesisl1/tx/${txHash}',
|
|
81
|
-
accountPage: 'https://explorer.stavr.tech/Genesisl1/
|
|
97
|
+
accountPage: 'https://explorer.stavr.tech/Genesisl1/account/${accountAddress}'
|
|
82
98
|
},
|
|
83
99
|
{
|
|
84
100
|
kind: 'atomscan',
|
|
@@ -90,6 +106,13 @@ const info = {
|
|
|
90
106
|
images: [{
|
|
91
107
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png',
|
|
92
108
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg'
|
|
109
|
+
}],
|
|
110
|
+
snapshots: [{
|
|
111
|
+
url: 'https://lcserve.zip',
|
|
112
|
+
type: 'pruned',
|
|
113
|
+
compression: 'lz4',
|
|
114
|
+
checksumAvailable: true,
|
|
115
|
+
provider: 'LCserve'
|
|
93
116
|
}]
|
|
94
117
|
};
|
|
95
118
|
export default info;
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -131,6 +131,7 @@ import * as _qwoyn from './qwoyn';
|
|
|
131
131
|
import * as _realio from './realio';
|
|
132
132
|
import * as _rebus from './rebus';
|
|
133
133
|
import * as _regen from './regen';
|
|
134
|
+
import * as _ritbit from './ritbit';
|
|
134
135
|
import * as _rizon from './rizon';
|
|
135
136
|
import * as _safrochain from './safrochain';
|
|
136
137
|
import * as _saga from './saga';
|
|
@@ -303,6 +304,7 @@ const ibcData = [
|
|
|
303
304
|
..._realio.ibcData,
|
|
304
305
|
..._rebus.ibcData,
|
|
305
306
|
..._regen.ibcData,
|
|
307
|
+
..._ritbit.ibcData,
|
|
306
308
|
..._rizon.ibcData,
|
|
307
309
|
..._safrochain.ibcData,
|
|
308
310
|
..._saga.ibcData,
|
|
@@ -1183,8 +1183,7 @@ const info = {
|
|
|
1183
1183
|
socials: {
|
|
1184
1184
|
website: 'https://astrovault.io/',
|
|
1185
1185
|
x: 'https://x.com/axvdex'
|
|
1186
|
-
}
|
|
1187
|
-
coingeckoId: 'astrovault'
|
|
1186
|
+
}
|
|
1188
1187
|
},
|
|
1189
1188
|
{
|
|
1190
1189
|
description: 'IBC Axelar wbtc-satoshi through axelar-dojo-1 transfer/channel-2',
|
|
@@ -1324,6 +1324,37 @@ const info = [
|
|
|
1324
1324
|
}
|
|
1325
1325
|
}]
|
|
1326
1326
|
},
|
|
1327
|
+
{
|
|
1328
|
+
$schema: '../ibc_data.schema.json',
|
|
1329
|
+
chain1: {
|
|
1330
|
+
chainName: 'noble',
|
|
1331
|
+
chainId: 'noble-1',
|
|
1332
|
+
clientId: '07-tendermint-228',
|
|
1333
|
+
connectionId: 'connection-212'
|
|
1334
|
+
},
|
|
1335
|
+
chain2: {
|
|
1336
|
+
chainName: 'ritbit',
|
|
1337
|
+
chainId: 'ritbit-mainnet',
|
|
1338
|
+
clientId: '07-tendermint-0',
|
|
1339
|
+
connectionId: 'connection-0'
|
|
1340
|
+
},
|
|
1341
|
+
channels: [{
|
|
1342
|
+
chain1: {
|
|
1343
|
+
channelId: 'channel-607',
|
|
1344
|
+
portId: 'transfer'
|
|
1345
|
+
},
|
|
1346
|
+
chain2: {
|
|
1347
|
+
channelId: 'channel-0',
|
|
1348
|
+
portId: 'transfer'
|
|
1349
|
+
},
|
|
1350
|
+
ordering: 'unordered',
|
|
1351
|
+
version: 'ics20-1',
|
|
1352
|
+
tags: {
|
|
1353
|
+
preferred: true,
|
|
1354
|
+
status: 'ACTIVE'
|
|
1355
|
+
}
|
|
1356
|
+
}]
|
|
1357
|
+
},
|
|
1327
1358
|
{
|
|
1328
1359
|
$schema: '../ibc_data.schema.json',
|
|
1329
1360
|
chain1: {
|
|
@@ -3470,6 +3470,7 @@ const info = {
|
|
|
3470
3470
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png',
|
|
3471
3471
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg'
|
|
3472
3472
|
}],
|
|
3473
|
+
coingeckoId: 'genesisl1',
|
|
3473
3474
|
keywords: ['osmosis_unstable']
|
|
3474
3475
|
},
|
|
3475
3476
|
{
|
|
@@ -4,18 +4,21 @@ const info = {
|
|
|
4
4
|
status: 'live',
|
|
5
5
|
website: 'https://rubin.trade/',
|
|
6
6
|
networkType: 'mainnet',
|
|
7
|
-
prettyName: '
|
|
7
|
+
prettyName: 'Rubin',
|
|
8
8
|
chainType: 'cosmos',
|
|
9
9
|
chainId: 'ritbit-mainnet',
|
|
10
10
|
bech32Prefix: 'rit',
|
|
11
|
+
daemonName: 'ritbitd',
|
|
12
|
+
nodeHome: '$HOME/.ritbit',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
11
14
|
slip44: 118,
|
|
12
15
|
fees: {
|
|
13
16
|
feeTokens: [{
|
|
14
17
|
denom: 'urit',
|
|
15
|
-
fixedMinGasPrice:
|
|
16
|
-
lowGasPrice:
|
|
17
|
-
averageGasPrice:
|
|
18
|
-
highGasPrice:
|
|
18
|
+
fixedMinGasPrice: 25000000000,
|
|
19
|
+
lowGasPrice: 25000000000,
|
|
20
|
+
averageGasPrice: 25000000000,
|
|
21
|
+
highGasPrice: 40000000000
|
|
19
22
|
}, {
|
|
20
23
|
denom: 'uusdc',
|
|
21
24
|
fixedMinGasPrice: 0.025,
|
|
@@ -29,10 +32,32 @@ const info = {
|
|
|
29
32
|
denom: 'urit'
|
|
30
33
|
}]
|
|
31
34
|
},
|
|
35
|
+
codebase: {
|
|
36
|
+
recommendedVersion: 'v27.6',
|
|
37
|
+
compatibleVersions: ['v27.6'],
|
|
38
|
+
consensus: {
|
|
39
|
+
type: 'cometbft',
|
|
40
|
+
version: 'v0.39.3'
|
|
41
|
+
},
|
|
42
|
+
sdk: {
|
|
43
|
+
type: 'cosmos',
|
|
44
|
+
version: 'v0.54.3'
|
|
45
|
+
},
|
|
46
|
+
ibc: {
|
|
47
|
+
type: 'go',
|
|
48
|
+
version: 'v11.2.0'
|
|
49
|
+
},
|
|
50
|
+
genesis: {
|
|
51
|
+
genesisUrl: 'https://cdn.rubin.trade/scripts/genesis.json'
|
|
52
|
+
},
|
|
53
|
+
binaries: {
|
|
54
|
+
"linux/amd64": 'https://storage.yandexcloud.net/ritbit-upgrade/v27.6/ritbitd-v27.6-linux-amd64.tar.gz?checksum=sha256:9f6134e883fc52e44033b2ba52a90edf705c99799a7b4e885a8dce15938a6502'
|
|
55
|
+
}
|
|
56
|
+
},
|
|
32
57
|
logoURIs: {
|
|
33
58
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
|
|
34
59
|
},
|
|
35
|
-
description: '
|
|
60
|
+
description: 'Rubin is a self-custody decentralized exchange for crypto perpetual futures and spot trading.',
|
|
36
61
|
apis: {
|
|
37
62
|
rpc: [{
|
|
38
63
|
address: 'https://rpc.mainnet.rubin.trade',
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'noble',
|
|
5
|
+
chainId: 'noble-1',
|
|
6
|
+
clientId: '07-tendermint-228',
|
|
7
|
+
connectionId: 'connection-212'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'ritbit',
|
|
11
|
+
chainId: 'ritbit-mainnet',
|
|
12
|
+
clientId: '07-tendermint-0',
|
|
13
|
+
connectionId: 'connection-0'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-607',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-0',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true,
|
|
28
|
+
status: 'ACTIVE'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
export default info;
|
|
@@ -24,6 +24,27 @@ const info = {
|
|
|
24
24
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg'
|
|
25
25
|
}],
|
|
26
26
|
typeAsset: 'sdk.coin'
|
|
27
|
+
}, {
|
|
28
|
+
description: 'IUP is a game-focused token that transforms users’ time, effort, and experience into rewards and real value.',
|
|
29
|
+
denomUnits: [{
|
|
30
|
+
denom: 'cw20:xpla10804823gxas3d9g8knrutvzkkz92m2ctvsafnan8zw6cqa6sd47qfdg9k8',
|
|
31
|
+
exponent: 0
|
|
32
|
+
}, {
|
|
33
|
+
denom: 'iup',
|
|
34
|
+
exponent: 6
|
|
35
|
+
}],
|
|
36
|
+
typeAsset: 'cw20',
|
|
37
|
+
address: 'xpla10804823gxas3d9g8knrutvzkkz92m2ctvsafnan8zw6cqa6sd47qfdg9k8',
|
|
38
|
+
base: 'cw20:xpla10804823gxas3d9g8knrutvzkkz92m2ctvsafnan8zw6cqa6sd47qfdg9k8',
|
|
39
|
+
name: 'iUP',
|
|
40
|
+
display: 'iup',
|
|
41
|
+
symbol: 'iUP',
|
|
42
|
+
images: [{
|
|
43
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/iup.png'
|
|
44
|
+
}],
|
|
45
|
+
logoURIs: {
|
|
46
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/iup.png'
|
|
47
|
+
}
|
|
27
48
|
}]
|
|
28
49
|
};
|
|
29
50
|
export default info;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'zerone',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native staking and governance token of Zerone',
|
|
6
|
+
denomUnits: [
|
|
7
|
+
{
|
|
8
|
+
denom: 'uzrn',
|
|
9
|
+
exponent: 0,
|
|
10
|
+
aliases: ['microzrn']
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
denom: 'mzrn',
|
|
14
|
+
exponent: 3,
|
|
15
|
+
aliases: ['millizrn']
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
denom: 'zrn',
|
|
19
|
+
exponent: 6
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
typeAsset: 'sdk.coin',
|
|
23
|
+
base: 'uzrn',
|
|
24
|
+
name: 'Zerone',
|
|
25
|
+
display: 'zrn',
|
|
26
|
+
symbol: 'ZRN',
|
|
27
|
+
images: [{
|
|
28
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zerone/images/zrn.svg',
|
|
29
|
+
theme: {
|
|
30
|
+
circle: false
|
|
31
|
+
}
|
|
32
|
+
}],
|
|
33
|
+
keywords: [
|
|
34
|
+
'ai',
|
|
35
|
+
'agents',
|
|
36
|
+
'knowledge',
|
|
37
|
+
'provenance'
|
|
38
|
+
],
|
|
39
|
+
socials: {
|
|
40
|
+
website: 'https://zerone.ai/',
|
|
41
|
+
github: 'https://github.com/cambridgetcg/zerone-core'
|
|
42
|
+
}
|
|
43
|
+
}]
|
|
44
|
+
};
|
|
45
|
+
export default info;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'zerone',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
website: 'https://zerone.ai/',
|
|
7
|
+
prettyName: 'Zerone',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'zerone-1',
|
|
10
|
+
bech32Prefix: 'zrn',
|
|
11
|
+
bech32Config: {
|
|
12
|
+
bech32PrefixAccAddr: 'zrn',
|
|
13
|
+
bech32PrefixAccPub: 'zrnpub',
|
|
14
|
+
bech32PrefixValAddr: 'zrnvaloper',
|
|
15
|
+
bech32PrefixValPub: 'zrnvaloperpub',
|
|
16
|
+
bech32PrefixConsAddr: 'zrnvalcons',
|
|
17
|
+
bech32PrefixConsPub: 'zrnvalconspub'
|
|
18
|
+
},
|
|
19
|
+
daemonName: 'zeroned',
|
|
20
|
+
nodeHome: '$HOME/.zeroned',
|
|
21
|
+
keyAlgos: ['secp256k1'],
|
|
22
|
+
slip44: 118,
|
|
23
|
+
fees: {
|
|
24
|
+
feeTokens: [{
|
|
25
|
+
denom: 'uzrn',
|
|
26
|
+
fixedMinGasPrice: 0.025,
|
|
27
|
+
lowGasPrice: 0.025,
|
|
28
|
+
averageGasPrice: 1,
|
|
29
|
+
highGasPrice: 1.2,
|
|
30
|
+
gasCosts: {
|
|
31
|
+
cosmosSend: 200000
|
|
32
|
+
}
|
|
33
|
+
}]
|
|
34
|
+
},
|
|
35
|
+
staking: {
|
|
36
|
+
stakingTokens: [{
|
|
37
|
+
denom: 'uzrn'
|
|
38
|
+
}],
|
|
39
|
+
lockDuration: {
|
|
40
|
+
time: '1814400s'
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
codebase: {
|
|
44
|
+
gitRepo: 'https://github.com/cambridgetcg/zerone-core',
|
|
45
|
+
language: {
|
|
46
|
+
type: 'go',
|
|
47
|
+
version: '1.24.0'
|
|
48
|
+
},
|
|
49
|
+
sdk: {
|
|
50
|
+
type: 'cosmos',
|
|
51
|
+
version: 'v0.50.15',
|
|
52
|
+
repo: 'https://github.com/cosmos/cosmos-sdk'
|
|
53
|
+
},
|
|
54
|
+
consensus: {
|
|
55
|
+
type: 'cometbft',
|
|
56
|
+
version: 'v0.38.20',
|
|
57
|
+
repo: 'https://github.com/cometbft/cometbft'
|
|
58
|
+
},
|
|
59
|
+
genesis: {
|
|
60
|
+
name: 'zerone-1',
|
|
61
|
+
genesisUrl: 'https://raw.githubusercontent.com/cambridgetcg/zerone-core/main/deploy/mainnet/artifacts/genesis.json'
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
images: [{
|
|
65
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zerone/images/zrn.svg',
|
|
66
|
+
theme: {
|
|
67
|
+
circle: false
|
|
68
|
+
}
|
|
69
|
+
}],
|
|
70
|
+
description: 'Zerone is a Cosmos SDK blockchain that records challenged agent work, knowledge, and provenance. ZRN is its native staking, governance, and fee token.',
|
|
71
|
+
apis: {
|
|
72
|
+
rpc: [{
|
|
73
|
+
address: 'http://169.155.55.44:26657',
|
|
74
|
+
provider: 'Zerone'
|
|
75
|
+
}]
|
|
76
|
+
},
|
|
77
|
+
explorers: [{
|
|
78
|
+
kind: 'Zerone Dashboard',
|
|
79
|
+
url: 'https://zerone.ai/'
|
|
80
|
+
}],
|
|
81
|
+
keywords: [
|
|
82
|
+
'ai',
|
|
83
|
+
'agents',
|
|
84
|
+
'knowledge',
|
|
85
|
+
'provenance',
|
|
86
|
+
'proof-of-truth'
|
|
87
|
+
]
|
|
88
|
+
};
|
|
89
|
+
export default info;
|
|
@@ -184,8 +184,7 @@ const info = {
|
|
|
184
184
|
images: [{
|
|
185
185
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/axv.png',
|
|
186
186
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/axv.svg'
|
|
187
|
-
}]
|
|
188
|
-
coingeckoId: 'astrovault'
|
|
187
|
+
}]
|
|
189
188
|
},
|
|
190
189
|
{
|
|
191
190
|
description: 'Wrapped ARCH',
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -247,6 +247,7 @@ const _xpla = __importStar(require("./xpla"));
|
|
|
247
247
|
const _xrplevm = __importStar(require("./xrplevm"));
|
|
248
248
|
const _xyra = __importStar(require("./xyra"));
|
|
249
249
|
const _zenrock = __importStar(require("./zenrock"));
|
|
250
|
+
const _zerone = __importStar(require("./zerone"));
|
|
250
251
|
const _zetachain = __importStar(require("./zetachain"));
|
|
251
252
|
const _zigchain = __importStar(require("./zigchain"));
|
|
252
253
|
const assetList = [
|
|
@@ -474,6 +475,7 @@ const assetList = [
|
|
|
474
475
|
_xrplevm.assetList,
|
|
475
476
|
_xyra.assetList,
|
|
476
477
|
_zenrock.assetList,
|
|
478
|
+
_zerone.assetList,
|
|
477
479
|
_zetachain.assetList,
|
|
478
480
|
_zigchain.assetList
|
|
479
481
|
];
|
package/mainnet/chains.js
CHANGED
|
@@ -247,6 +247,7 @@ const _xpla = __importStar(require("./xpla"));
|
|
|
247
247
|
const _xrplevm = __importStar(require("./xrplevm"));
|
|
248
248
|
const _xyra = __importStar(require("./xyra"));
|
|
249
249
|
const _zenrock = __importStar(require("./zenrock"));
|
|
250
|
+
const _zerone = __importStar(require("./zerone"));
|
|
250
251
|
const _zetachain = __importStar(require("./zetachain"));
|
|
251
252
|
const _zigchain = __importStar(require("./zigchain"));
|
|
252
253
|
const chains = [
|
|
@@ -474,6 +475,7 @@ const chains = [
|
|
|
474
475
|
_xrplevm.chain,
|
|
475
476
|
_xyra.chain,
|
|
476
477
|
_zenrock.chain,
|
|
478
|
+
_zerone.chain,
|
|
477
479
|
_zetachain.chain,
|
|
478
480
|
_zigchain.chain
|
|
479
481
|
];
|
|
@@ -12,6 +12,7 @@ const info = {
|
|
|
12
12
|
denom: 'l1',
|
|
13
13
|
exponent: 18
|
|
14
14
|
}],
|
|
15
|
+
typeAsset: 'sdk.coin',
|
|
15
16
|
base: 'el1',
|
|
16
17
|
name: 'GenesisL1',
|
|
17
18
|
display: 'l1',
|
|
@@ -24,7 +25,12 @@ const info = {
|
|
|
24
25
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png',
|
|
25
26
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg'
|
|
26
27
|
}],
|
|
27
|
-
|
|
28
|
+
coingeckoId: 'genesisl1',
|
|
29
|
+
socials: {
|
|
30
|
+
website: 'https://genesisl1.com',
|
|
31
|
+
x: 'https://x.com/genesis_L1',
|
|
32
|
+
telegram: 'https://t.me/Genesis_L1'
|
|
33
|
+
}
|
|
28
34
|
}]
|
|
29
35
|
};
|
|
30
36
|
exports.default = info;
|
|
@@ -28,17 +28,22 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
gitRepo: 'https://github.com/GenesisL1/genesis-crypto',
|
|
31
|
-
recommendedVersion: 'v1.
|
|
32
|
-
compatibleVersions: ['v1.
|
|
31
|
+
recommendedVersion: 'v1.6.2',
|
|
32
|
+
compatibleVersions: ['v1.6.2'],
|
|
33
|
+
binaries: {
|
|
34
|
+
"linux/amd64": 'https://github.com/GenesisL1/genesis-crypto/releases/download/v1.6.2/genesis_1.6.2_Linux_x86_64.tar.gz',
|
|
35
|
+
"linux/arm64": 'https://github.com/GenesisL1/genesis-crypto/releases/download/v1.6.2/genesis_1.6.2_Linux_arm64.tar.gz',
|
|
36
|
+
"windows/amd64": 'https://github.com/GenesisL1/genesis-crypto/releases/download/v1.6.2/genesis_1.6.2_Windows_x86_64.tar.gz'
|
|
37
|
+
},
|
|
33
38
|
genesis: {
|
|
34
39
|
name: 'plan_ethermint',
|
|
35
40
|
genesisUrl: 'https://raw.githubusercontent.com/GenesisL1/genesis-parameters/main/genesis_29-2/genesis.json'
|
|
36
41
|
},
|
|
37
42
|
sdk: {
|
|
38
43
|
type: 'cosmos',
|
|
39
|
-
version: '0.
|
|
44
|
+
version: '0.50.6'
|
|
40
45
|
},
|
|
41
|
-
tag: 'v1.
|
|
46
|
+
tag: 'v1.6.2'
|
|
42
47
|
},
|
|
43
48
|
logoURIs: {
|
|
44
49
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png',
|
|
@@ -49,9 +54,6 @@ const info = {
|
|
|
49
54
|
rpc: [{
|
|
50
55
|
address: 'https://26657.genesisl1.org',
|
|
51
56
|
provider: 'GenesisL1'
|
|
52
|
-
}, {
|
|
53
|
-
address: 'https://genesisl1-rpc.zenode.app',
|
|
54
|
-
provider: 'anodeofzen'
|
|
55
57
|
}],
|
|
56
58
|
rest: [{
|
|
57
59
|
address: 'https://api.genesisl1.org',
|
|
@@ -66,21 +68,35 @@ const info = {
|
|
|
66
68
|
}]
|
|
67
69
|
},
|
|
68
70
|
explorers: [
|
|
71
|
+
{
|
|
72
|
+
kind: 'GenesisL1',
|
|
73
|
+
url: 'https://explorer.genesisl1.org',
|
|
74
|
+
txPage: 'https://explorer.genesisl1.org/tx/${txHash}',
|
|
75
|
+
accountPage: 'https://explorer.genesisl1.org/address/${accountAddress}'
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
kind: 'GenesisL1',
|
|
79
|
+
url: 'https://l1coin.com/explorer.html',
|
|
80
|
+
txPage: 'https://l1coin.com/explorer.html#/tx/${txHash}',
|
|
81
|
+
accountPage: 'https://l1coin.com/explorer.html#/address/${accountAddress}'
|
|
82
|
+
},
|
|
69
83
|
{
|
|
70
84
|
kind: 'ping.pub',
|
|
71
85
|
url: 'https://ping.pub/genesisL1',
|
|
72
|
-
txPage: 'https://ping.pub/genesisL1/tx/${txHash}'
|
|
86
|
+
txPage: 'https://ping.pub/genesisL1/tx/${txHash}',
|
|
87
|
+
accountPage: 'https://ping.pub/genesisL1/account/${accountAddress}'
|
|
73
88
|
},
|
|
74
89
|
{
|
|
75
90
|
kind: 'ping.pub',
|
|
76
91
|
url: 'https://exp.utsa.tech/genesis',
|
|
77
|
-
txPage: 'https://exp.utsa.tech/genesis/tx/${txHash}'
|
|
92
|
+
txPage: 'https://exp.utsa.tech/genesis/tx/${txHash}',
|
|
93
|
+
accountPage: 'https://exp.utsa.tech/genesis/account/${accountAddress}'
|
|
78
94
|
},
|
|
79
95
|
{
|
|
80
|
-
kind: '
|
|
96
|
+
kind: 'ping.pub',
|
|
81
97
|
url: 'https://explorer.stavr.tech/Genesisl1',
|
|
82
98
|
txPage: 'https://explorer.stavr.tech/Genesisl1/tx/${txHash}',
|
|
83
|
-
accountPage: 'https://explorer.stavr.tech/Genesisl1/
|
|
99
|
+
accountPage: 'https://explorer.stavr.tech/Genesisl1/account/${accountAddress}'
|
|
84
100
|
},
|
|
85
101
|
{
|
|
86
102
|
kind: 'atomscan',
|
|
@@ -92,6 +108,13 @@ const info = {
|
|
|
92
108
|
images: [{
|
|
93
109
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png',
|
|
94
110
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg'
|
|
111
|
+
}],
|
|
112
|
+
snapshots: [{
|
|
113
|
+
url: 'https://lcserve.zip',
|
|
114
|
+
type: 'pruned',
|
|
115
|
+
compression: 'lz4',
|
|
116
|
+
checksumAvailable: true,
|
|
117
|
+
provider: 'LCserve'
|
|
95
118
|
}]
|
|
96
119
|
};
|
|
97
120
|
exports.default = info;
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -156,6 +156,7 @@ const _qwoyn = __importStar(require("./qwoyn"));
|
|
|
156
156
|
const _realio = __importStar(require("./realio"));
|
|
157
157
|
const _rebus = __importStar(require("./rebus"));
|
|
158
158
|
const _regen = __importStar(require("./regen"));
|
|
159
|
+
const _ritbit = __importStar(require("./ritbit"));
|
|
159
160
|
const _rizon = __importStar(require("./rizon"));
|
|
160
161
|
const _safrochain = __importStar(require("./safrochain"));
|
|
161
162
|
const _saga = __importStar(require("./saga"));
|
|
@@ -328,6 +329,7 @@ const ibcData = [
|
|
|
328
329
|
..._realio.ibcData,
|
|
329
330
|
..._rebus.ibcData,
|
|
330
331
|
..._regen.ibcData,
|
|
332
|
+
..._ritbit.ibcData,
|
|
331
333
|
..._rizon.ibcData,
|
|
332
334
|
..._safrochain.ibcData,
|
|
333
335
|
..._saga.ibcData,
|
|
@@ -1185,8 +1185,7 @@ const info = {
|
|
|
1185
1185
|
socials: {
|
|
1186
1186
|
website: 'https://astrovault.io/',
|
|
1187
1187
|
x: 'https://x.com/axvdex'
|
|
1188
|
-
}
|
|
1189
|
-
coingeckoId: 'astrovault'
|
|
1188
|
+
}
|
|
1190
1189
|
},
|
|
1191
1190
|
{
|
|
1192
1191
|
description: 'IBC Axelar wbtc-satoshi through axelar-dojo-1 transfer/channel-2',
|
|
@@ -1326,6 +1326,37 @@ const info = [
|
|
|
1326
1326
|
}
|
|
1327
1327
|
}]
|
|
1328
1328
|
},
|
|
1329
|
+
{
|
|
1330
|
+
$schema: '../ibc_data.schema.json',
|
|
1331
|
+
chain1: {
|
|
1332
|
+
chainName: 'noble',
|
|
1333
|
+
chainId: 'noble-1',
|
|
1334
|
+
clientId: '07-tendermint-228',
|
|
1335
|
+
connectionId: 'connection-212'
|
|
1336
|
+
},
|
|
1337
|
+
chain2: {
|
|
1338
|
+
chainName: 'ritbit',
|
|
1339
|
+
chainId: 'ritbit-mainnet',
|
|
1340
|
+
clientId: '07-tendermint-0',
|
|
1341
|
+
connectionId: 'connection-0'
|
|
1342
|
+
},
|
|
1343
|
+
channels: [{
|
|
1344
|
+
chain1: {
|
|
1345
|
+
channelId: 'channel-607',
|
|
1346
|
+
portId: 'transfer'
|
|
1347
|
+
},
|
|
1348
|
+
chain2: {
|
|
1349
|
+
channelId: 'channel-0',
|
|
1350
|
+
portId: 'transfer'
|
|
1351
|
+
},
|
|
1352
|
+
ordering: 'unordered',
|
|
1353
|
+
version: 'ics20-1',
|
|
1354
|
+
tags: {
|
|
1355
|
+
preferred: true,
|
|
1356
|
+
status: 'ACTIVE'
|
|
1357
|
+
}
|
|
1358
|
+
}]
|
|
1359
|
+
},
|
|
1329
1360
|
{
|
|
1330
1361
|
$schema: '../ibc_data.schema.json',
|
|
1331
1362
|
chain1: {
|
|
@@ -3472,6 +3472,7 @@ const info = {
|
|
|
3472
3472
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png',
|
|
3473
3473
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg'
|
|
3474
3474
|
}],
|
|
3475
|
+
coingeckoId: 'genesisl1',
|
|
3475
3476
|
keywords: ['osmosis_unstable']
|
|
3476
3477
|
},
|
|
3477
3478
|
{
|
package/mainnet/ritbit/chain.js
CHANGED
|
@@ -6,18 +6,21 @@ const info = {
|
|
|
6
6
|
status: 'live',
|
|
7
7
|
website: 'https://rubin.trade/',
|
|
8
8
|
networkType: 'mainnet',
|
|
9
|
-
prettyName: '
|
|
9
|
+
prettyName: 'Rubin',
|
|
10
10
|
chainType: 'cosmos',
|
|
11
11
|
chainId: 'ritbit-mainnet',
|
|
12
12
|
bech32Prefix: 'rit',
|
|
13
|
+
daemonName: 'ritbitd',
|
|
14
|
+
nodeHome: '$HOME/.ritbit',
|
|
15
|
+
keyAlgos: ['secp256k1'],
|
|
13
16
|
slip44: 118,
|
|
14
17
|
fees: {
|
|
15
18
|
feeTokens: [{
|
|
16
19
|
denom: 'urit',
|
|
17
|
-
fixedMinGasPrice:
|
|
18
|
-
lowGasPrice:
|
|
19
|
-
averageGasPrice:
|
|
20
|
-
highGasPrice:
|
|
20
|
+
fixedMinGasPrice: 25000000000,
|
|
21
|
+
lowGasPrice: 25000000000,
|
|
22
|
+
averageGasPrice: 25000000000,
|
|
23
|
+
highGasPrice: 40000000000
|
|
21
24
|
}, {
|
|
22
25
|
denom: 'uusdc',
|
|
23
26
|
fixedMinGasPrice: 0.025,
|
|
@@ -31,10 +34,32 @@ const info = {
|
|
|
31
34
|
denom: 'urit'
|
|
32
35
|
}]
|
|
33
36
|
},
|
|
37
|
+
codebase: {
|
|
38
|
+
recommendedVersion: 'v27.6',
|
|
39
|
+
compatibleVersions: ['v27.6'],
|
|
40
|
+
consensus: {
|
|
41
|
+
type: 'cometbft',
|
|
42
|
+
version: 'v0.39.3'
|
|
43
|
+
},
|
|
44
|
+
sdk: {
|
|
45
|
+
type: 'cosmos',
|
|
46
|
+
version: 'v0.54.3'
|
|
47
|
+
},
|
|
48
|
+
ibc: {
|
|
49
|
+
type: 'go',
|
|
50
|
+
version: 'v11.2.0'
|
|
51
|
+
},
|
|
52
|
+
genesis: {
|
|
53
|
+
genesisUrl: 'https://cdn.rubin.trade/scripts/genesis.json'
|
|
54
|
+
},
|
|
55
|
+
binaries: {
|
|
56
|
+
"linux/amd64": 'https://storage.yandexcloud.net/ritbit-upgrade/v27.6/ritbitd-v27.6-linux-amd64.tar.gz?checksum=sha256:9f6134e883fc52e44033b2ba52a90edf705c99799a7b4e885a8dce15938a6502'
|
|
57
|
+
}
|
|
58
|
+
},
|
|
34
59
|
logoURIs: {
|
|
35
60
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
|
|
36
61
|
},
|
|
37
|
-
description: '
|
|
62
|
+
description: 'Rubin is a self-custody decentralized exchange for crypto perpetual futures and spot trading.',
|
|
38
63
|
apis: {
|
|
39
64
|
rpc: [{
|
|
40
65
|
address: 'https://rpc.mainnet.rubin.trade',
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'noble',
|
|
7
|
+
chainId: 'noble-1',
|
|
8
|
+
clientId: '07-tendermint-228',
|
|
9
|
+
connectionId: 'connection-212'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'ritbit',
|
|
13
|
+
chainId: 'ritbit-mainnet',
|
|
14
|
+
clientId: '07-tendermint-0',
|
|
15
|
+
connectionId: 'connection-0'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-607',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-0',
|
|
24
|
+
portId: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
preferred: true,
|
|
30
|
+
status: 'ACTIVE'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
}];
|
|
34
|
+
exports.default = info;
|
package/mainnet/ritbit/index.js
CHANGED
|
@@ -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.assetList = void 0;
|
|
6
|
+
exports.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
7
|
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
9
10
|
exports.assetList = asset_list_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
|
@@ -26,6 +26,27 @@ const info = {
|
|
|
26
26
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg'
|
|
27
27
|
}],
|
|
28
28
|
typeAsset: 'sdk.coin'
|
|
29
|
+
}, {
|
|
30
|
+
description: 'IUP is a game-focused token that transforms users’ time, effort, and experience into rewards and real value.',
|
|
31
|
+
denomUnits: [{
|
|
32
|
+
denom: 'cw20:xpla10804823gxas3d9g8knrutvzkkz92m2ctvsafnan8zw6cqa6sd47qfdg9k8',
|
|
33
|
+
exponent: 0
|
|
34
|
+
}, {
|
|
35
|
+
denom: 'iup',
|
|
36
|
+
exponent: 6
|
|
37
|
+
}],
|
|
38
|
+
typeAsset: 'cw20',
|
|
39
|
+
address: 'xpla10804823gxas3d9g8knrutvzkkz92m2ctvsafnan8zw6cqa6sd47qfdg9k8',
|
|
40
|
+
base: 'cw20:xpla10804823gxas3d9g8knrutvzkkz92m2ctvsafnan8zw6cqa6sd47qfdg9k8',
|
|
41
|
+
name: 'iUP',
|
|
42
|
+
display: 'iup',
|
|
43
|
+
symbol: 'iUP',
|
|
44
|
+
images: [{
|
|
45
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/iup.png'
|
|
46
|
+
}],
|
|
47
|
+
logoURIs: {
|
|
48
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/iup.png'
|
|
49
|
+
}
|
|
29
50
|
}]
|
|
30
51
|
};
|
|
31
52
|
exports.default = info;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'zerone',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native staking and governance token of Zerone',
|
|
8
|
+
denomUnits: [
|
|
9
|
+
{
|
|
10
|
+
denom: 'uzrn',
|
|
11
|
+
exponent: 0,
|
|
12
|
+
aliases: ['microzrn']
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
denom: 'mzrn',
|
|
16
|
+
exponent: 3,
|
|
17
|
+
aliases: ['millizrn']
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
denom: 'zrn',
|
|
21
|
+
exponent: 6
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
typeAsset: 'sdk.coin',
|
|
25
|
+
base: 'uzrn',
|
|
26
|
+
name: 'Zerone',
|
|
27
|
+
display: 'zrn',
|
|
28
|
+
symbol: 'ZRN',
|
|
29
|
+
images: [{
|
|
30
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zerone/images/zrn.svg',
|
|
31
|
+
theme: {
|
|
32
|
+
circle: false
|
|
33
|
+
}
|
|
34
|
+
}],
|
|
35
|
+
keywords: [
|
|
36
|
+
'ai',
|
|
37
|
+
'agents',
|
|
38
|
+
'knowledge',
|
|
39
|
+
'provenance'
|
|
40
|
+
],
|
|
41
|
+
socials: {
|
|
42
|
+
website: 'https://zerone.ai/',
|
|
43
|
+
github: 'https://github.com/cambridgetcg/zerone-core'
|
|
44
|
+
}
|
|
45
|
+
}]
|
|
46
|
+
};
|
|
47
|
+
exports.default = info;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'zerone',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
website: 'https://zerone.ai/',
|
|
9
|
+
prettyName: 'Zerone',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'zerone-1',
|
|
12
|
+
bech32Prefix: 'zrn',
|
|
13
|
+
bech32Config: {
|
|
14
|
+
bech32PrefixAccAddr: 'zrn',
|
|
15
|
+
bech32PrefixAccPub: 'zrnpub',
|
|
16
|
+
bech32PrefixValAddr: 'zrnvaloper',
|
|
17
|
+
bech32PrefixValPub: 'zrnvaloperpub',
|
|
18
|
+
bech32PrefixConsAddr: 'zrnvalcons',
|
|
19
|
+
bech32PrefixConsPub: 'zrnvalconspub'
|
|
20
|
+
},
|
|
21
|
+
daemonName: 'zeroned',
|
|
22
|
+
nodeHome: '$HOME/.zeroned',
|
|
23
|
+
keyAlgos: ['secp256k1'],
|
|
24
|
+
slip44: 118,
|
|
25
|
+
fees: {
|
|
26
|
+
feeTokens: [{
|
|
27
|
+
denom: 'uzrn',
|
|
28
|
+
fixedMinGasPrice: 0.025,
|
|
29
|
+
lowGasPrice: 0.025,
|
|
30
|
+
averageGasPrice: 1,
|
|
31
|
+
highGasPrice: 1.2,
|
|
32
|
+
gasCosts: {
|
|
33
|
+
cosmosSend: 200000
|
|
34
|
+
}
|
|
35
|
+
}]
|
|
36
|
+
},
|
|
37
|
+
staking: {
|
|
38
|
+
stakingTokens: [{
|
|
39
|
+
denom: 'uzrn'
|
|
40
|
+
}],
|
|
41
|
+
lockDuration: {
|
|
42
|
+
time: '1814400s'
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
codebase: {
|
|
46
|
+
gitRepo: 'https://github.com/cambridgetcg/zerone-core',
|
|
47
|
+
language: {
|
|
48
|
+
type: 'go',
|
|
49
|
+
version: '1.24.0'
|
|
50
|
+
},
|
|
51
|
+
sdk: {
|
|
52
|
+
type: 'cosmos',
|
|
53
|
+
version: 'v0.50.15',
|
|
54
|
+
repo: 'https://github.com/cosmos/cosmos-sdk'
|
|
55
|
+
},
|
|
56
|
+
consensus: {
|
|
57
|
+
type: 'cometbft',
|
|
58
|
+
version: 'v0.38.20',
|
|
59
|
+
repo: 'https://github.com/cometbft/cometbft'
|
|
60
|
+
},
|
|
61
|
+
genesis: {
|
|
62
|
+
name: 'zerone-1',
|
|
63
|
+
genesisUrl: 'https://raw.githubusercontent.com/cambridgetcg/zerone-core/main/deploy/mainnet/artifacts/genesis.json'
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
images: [{
|
|
67
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zerone/images/zrn.svg',
|
|
68
|
+
theme: {
|
|
69
|
+
circle: false
|
|
70
|
+
}
|
|
71
|
+
}],
|
|
72
|
+
description: 'Zerone is a Cosmos SDK blockchain that records challenged agent work, knowledge, and provenance. ZRN is its native staking, governance, and fee token.',
|
|
73
|
+
apis: {
|
|
74
|
+
rpc: [{
|
|
75
|
+
address: 'http://169.155.55.44:26657',
|
|
76
|
+
provider: 'Zerone'
|
|
77
|
+
}]
|
|
78
|
+
},
|
|
79
|
+
explorers: [{
|
|
80
|
+
kind: 'Zerone Dashboard',
|
|
81
|
+
url: 'https://zerone.ai/'
|
|
82
|
+
}],
|
|
83
|
+
keywords: [
|
|
84
|
+
'ai',
|
|
85
|
+
'agents',
|
|
86
|
+
'knowledge',
|
|
87
|
+
'provenance',
|
|
88
|
+
'proof-of-truth'
|
|
89
|
+
]
|
|
90
|
+
};
|
|
91
|
+
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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.246",
|
|
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.246"
|
|
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": "1c73e3e65bba612e779e88ef71a54b5113c85701"
|
|
43
43
|
}
|