chain-registry 2.0.244 → 2.0.245
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/asset-lists.js +2 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/noble/ibc-data.js +31 -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/zerone/asset-list.js +45 -0
- package/esm/mainnet/zerone/chain.js +89 -0
- package/esm/mainnet/zerone/index.js +4 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/noble/ibc-data.js +31 -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/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
|
@@ -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
|
];
|
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,
|
|
@@ -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: {
|
|
@@ -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;
|
|
@@ -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;
|
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
|
];
|
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,
|
|
@@ -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: {
|
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;
|
|
@@ -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.245",
|
|
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.245"
|
|
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": "b021e30051cb14b1d94a3cf221ee5cd9ae1b59a9"
|
|
43
43
|
}
|