chain-registry 2.0.174 → 2.0.176
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/atomone/chain.js +14 -10
- package/esm/mainnet/bitcanna/chain.js +0 -24
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/injective/asset-list.js +1 -0
- package/esm/mainnet/manifest/asset-list.js +1 -2
- package/esm/mainnet/neutron/asset-list.js +0 -1
- package/esm/mainnet/osmosis/asset-list.js +2 -4
- package/esm/mainnet/xyra/asset-list.js +29 -0
- package/esm/mainnet/xyra/chain.js +79 -0
- package/esm/mainnet/xyra/index.js +4 -0
- package/esm/testnet/atomonetestnet/chain.js +14 -10
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/atomone/chain.js +14 -10
- package/mainnet/bitcanna/chain.js +0 -24
- package/mainnet/chains.js +2 -0
- package/mainnet/injective/asset-list.js +1 -0
- package/mainnet/manifest/asset-list.js +1 -2
- package/mainnet/neutron/asset-list.js +0 -1
- package/mainnet/osmosis/asset-list.js +2 -4
- package/mainnet/xyra/asset-list.d.ts +3 -0
- package/mainnet/xyra/asset-list.js +31 -0
- package/mainnet/xyra/chain.d.ts +3 -0
- package/mainnet/xyra/chain.js +81 -0
- package/mainnet/xyra/index.d.ts +2 -0
- package/mainnet/xyra/index.js +10 -0
- package/package.json +3 -3
- package/testnet/atomonetestnet/chain.js +14 -10
|
@@ -225,6 +225,7 @@ import * as _xarchain from './xarchain';
|
|
|
225
225
|
import * as _xion from './xion';
|
|
226
226
|
import * as _xpla from './xpla';
|
|
227
227
|
import * as _xrplevm from './xrplevm';
|
|
228
|
+
import * as _xyra from './xyra';
|
|
228
229
|
import * as _zenrock from './zenrock';
|
|
229
230
|
import * as _zetachain from './zetachain';
|
|
230
231
|
import * as _zigchain from './zigchain';
|
|
@@ -456,6 +457,7 @@ const assetList = [
|
|
|
456
457
|
_xion.assetList,
|
|
457
458
|
_xpla.assetList,
|
|
458
459
|
_xrplevm.assetList,
|
|
460
|
+
_xyra.assetList,
|
|
459
461
|
_zenrock.assetList,
|
|
460
462
|
_zetachain.assetList,
|
|
461
463
|
_zigchain.assetList
|
|
@@ -34,28 +34,32 @@ const info = {
|
|
|
34
34
|
},
|
|
35
35
|
codebase: {
|
|
36
36
|
gitRepo: 'https://github.com/atomone-hub/atomone',
|
|
37
|
-
recommendedVersion: 'v3.0
|
|
38
|
-
compatibleVersions: [
|
|
37
|
+
recommendedVersion: 'v3.3.0',
|
|
38
|
+
compatibleVersions: [
|
|
39
|
+
'v3.0.3',
|
|
40
|
+
'v3.2.0',
|
|
41
|
+
'v3.3.0'
|
|
42
|
+
],
|
|
39
43
|
binaries: {
|
|
40
|
-
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
41
|
-
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
42
|
-
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
43
|
-
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
44
|
-
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
45
|
-
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
44
|
+
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-linux-amd64',
|
|
45
|
+
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-linux-arm64',
|
|
46
|
+
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-darwin-amd64',
|
|
47
|
+
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-darwin-arm64',
|
|
48
|
+
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-windows-amd64.exe',
|
|
49
|
+
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-windows-arm64.exe'
|
|
46
50
|
},
|
|
47
51
|
genesis: {
|
|
48
52
|
genesisUrl: 'https://atomone.fra1.digitaloceanspaces.com/atomone-1/genesis.json'
|
|
49
53
|
},
|
|
50
54
|
consensus: {
|
|
51
55
|
type: 'cometbft',
|
|
52
|
-
version: 'v0.37.
|
|
56
|
+
version: 'v0.37.18'
|
|
53
57
|
},
|
|
54
58
|
sdk: {
|
|
55
59
|
type: 'cosmos',
|
|
56
60
|
version: 'v0.47.17'
|
|
57
61
|
},
|
|
58
|
-
tag: 'v3.0
|
|
62
|
+
tag: 'v3.3.0'
|
|
59
63
|
},
|
|
60
64
|
logoURIs: {
|
|
61
65
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png',
|
|
@@ -89,10 +89,6 @@ const info = {
|
|
|
89
89
|
address: 'https://bitcanna.rpc.kjnodes.com/',
|
|
90
90
|
provider: 'kjnodes'
|
|
91
91
|
},
|
|
92
|
-
{
|
|
93
|
-
address: 'https://rpc.bitcanna-1.bitcanna.aviaone.com/',
|
|
94
|
-
provider: 'AVIAONE 🟢'
|
|
95
|
-
},
|
|
96
92
|
{
|
|
97
93
|
address: 'https://rpc.bitcanna-mainnet.hexnodes.one/',
|
|
98
94
|
provider: 'Hexnodes'
|
|
@@ -167,10 +163,6 @@ const info = {
|
|
|
167
163
|
address: 'grpc.bitcanna-mainnet.hexnodes.one:27090',
|
|
168
164
|
provider: 'HexNodes'
|
|
169
165
|
},
|
|
170
|
-
{
|
|
171
|
-
address: 'grpc.bitcanna-1.bitcanna.aviaone.com:9102',
|
|
172
|
-
provider: 'AVIAONE 🟢'
|
|
173
|
-
},
|
|
174
166
|
{
|
|
175
167
|
address: 'bitcanna-mainnet.grpc.l0vd.com:80',
|
|
176
168
|
provider: 'L0vd.com'
|
|
@@ -253,10 +245,6 @@ const info = {
|
|
|
253
245
|
address: 'https://bitcanna.api.kjnodes.com',
|
|
254
246
|
provider: 'kjnodes'
|
|
255
247
|
},
|
|
256
|
-
{
|
|
257
|
-
address: 'https://api.bitcanna-1.bitcanna.aviaone.com',
|
|
258
|
-
provider: 'AVIAONE 🟢'
|
|
259
|
-
},
|
|
260
248
|
{
|
|
261
249
|
address: 'https://lcd.bitcanna-mainnet.hexnodes.one',
|
|
262
250
|
provider: 'Hexnodes'
|
|
@@ -411,24 +399,12 @@ const info = {
|
|
|
411
399
|
txPage: 'https://explorer.kalia.network/bitcanna/tx/${txHash}',
|
|
412
400
|
accountPage: 'https://explorer.kalia.network/bitcanna/account/${accountAddress}'
|
|
413
401
|
},
|
|
414
|
-
{
|
|
415
|
-
kind: 'AviaOne Explorer 🟢',
|
|
416
|
-
url: 'https://mainnet.explorer.aviaone.com/bitcanna',
|
|
417
|
-
txPage: 'https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}',
|
|
418
|
-
accountPage: 'https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}'
|
|
419
|
-
},
|
|
420
402
|
{
|
|
421
403
|
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
422
404
|
url: 'https://explorer.whenmoonwhenlambo.money/bitcanna',
|
|
423
405
|
txPage: 'https://explorer.whenmoonwhenlambo.money/bitcanna/tx/${txHash}',
|
|
424
406
|
accountPage: 'https://explorer.whenmoonwhenlambo.money/bitcanna/account/${accountAddress}'
|
|
425
407
|
},
|
|
426
|
-
{
|
|
427
|
-
kind: 'AviaOne Explorer 🟢',
|
|
428
|
-
url: 'https://mainnet.explorer.aviaone.com/bitcanna',
|
|
429
|
-
txPage: 'https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}',
|
|
430
|
-
accountPage: 'https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}'
|
|
431
|
-
},
|
|
432
408
|
{
|
|
433
409
|
kind: 'Valopers',
|
|
434
410
|
url: 'https://bitcanna.valopers.com/',
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -225,6 +225,7 @@ import * as _xarchain from './xarchain';
|
|
|
225
225
|
import * as _xion from './xion';
|
|
226
226
|
import * as _xpla from './xpla';
|
|
227
227
|
import * as _xrplevm from './xrplevm';
|
|
228
|
+
import * as _xyra from './xyra';
|
|
228
229
|
import * as _zenrock from './zenrock';
|
|
229
230
|
import * as _zetachain from './zetachain';
|
|
230
231
|
import * as _zigchain from './zigchain';
|
|
@@ -456,6 +457,7 @@ const chains = [
|
|
|
456
457
|
_xion.chain,
|
|
457
458
|
_xpla.chain,
|
|
458
459
|
_xrplevm.chain,
|
|
460
|
+
_xyra.chain,
|
|
459
461
|
_zenrock.chain,
|
|
460
462
|
_zetachain.chain,
|
|
461
463
|
_zigchain.chain
|
|
@@ -985,7 +985,6 @@ const info = {
|
|
|
985
985
|
name: 'Mars Protocol',
|
|
986
986
|
display: 'MARS',
|
|
987
987
|
symbol: 'MARS',
|
|
988
|
-
coingeckoId: 'mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3',
|
|
989
988
|
images: [{
|
|
990
989
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png',
|
|
991
990
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg'
|
|
@@ -6104,8 +6104,7 @@ const info = {
|
|
|
6104
6104
|
},
|
|
6105
6105
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.png',
|
|
6106
6106
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.svg'
|
|
6107
|
-
}]
|
|
6108
|
-
coingeckoId: 'mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3'
|
|
6107
|
+
}]
|
|
6109
6108
|
},
|
|
6110
6109
|
{
|
|
6111
6110
|
description: 'Ciento Exchange Token',
|
|
@@ -16410,8 +16409,7 @@ const info = {
|
|
|
16410
16409
|
},
|
|
16411
16410
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png',
|
|
16412
16411
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg'
|
|
16413
|
-
}]
|
|
16414
|
-
coingeckoId: 'mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3'
|
|
16412
|
+
}]
|
|
16415
16413
|
},
|
|
16416
16414
|
{
|
|
16417
16415
|
description: 'The native token of TON',
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'xyra',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of Xyra Chain',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'uXyrium',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['microxyrium']
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'XYRIUM',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'uXyrium',
|
|
15
|
+
display: 'XYRIUM',
|
|
16
|
+
name: 'Xyra',
|
|
17
|
+
symbol: 'XYR',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.svg'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.png',
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.svg'
|
|
25
|
+
}],
|
|
26
|
+
typeAsset: 'sdk.coin'
|
|
27
|
+
}]
|
|
28
|
+
};
|
|
29
|
+
export default info;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'xyra',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://www.xyra-mainnet.org',
|
|
6
|
+
networkType: 'mainnet',
|
|
7
|
+
chainType: 'cosmos',
|
|
8
|
+
prettyName: 'Xyra Chain',
|
|
9
|
+
chainId: 'xyra-2',
|
|
10
|
+
bech32Prefix: 'xyra',
|
|
11
|
+
daemonName: 'xyrad',
|
|
12
|
+
nodeHome: '$HOME/.xyrad',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'uXyrium',
|
|
18
|
+
fixedMinGasPrice: 0.0025,
|
|
19
|
+
lowGasPrice: 0.01,
|
|
20
|
+
averageGasPrice: 0.025,
|
|
21
|
+
highGasPrice: 0.04
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'uXyrium'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
gitRepo: 'https://github.com/rizkimaryanto7-creator/xyra-chain',
|
|
31
|
+
genesis: {
|
|
32
|
+
genesisUrl: 'https://raw.githubusercontent.com/rizkimaryanto7-creator/xyra-chain/master/genesis.json'
|
|
33
|
+
},
|
|
34
|
+
recommendedVersion: 'v1.0.0',
|
|
35
|
+
compatibleVersions: ['v1.0.0'],
|
|
36
|
+
consensus: {
|
|
37
|
+
type: 'cometbft',
|
|
38
|
+
version: '0.38'
|
|
39
|
+
},
|
|
40
|
+
sdk: {
|
|
41
|
+
type: 'cosmos',
|
|
42
|
+
repo: 'https://github.com/cosmos/cosmos-sdk',
|
|
43
|
+
version: 'v0.50.0'
|
|
44
|
+
},
|
|
45
|
+
cosmwasm: {
|
|
46
|
+
enabled: false
|
|
47
|
+
},
|
|
48
|
+
tag: 'v1.0.0'
|
|
49
|
+
},
|
|
50
|
+
images: [{
|
|
51
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.png',
|
|
52
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.svg'
|
|
53
|
+
}],
|
|
54
|
+
apis: {
|
|
55
|
+
rpc: [{
|
|
56
|
+
address: 'https://rpc.xyra-mainnet.org',
|
|
57
|
+
provider: 'Xyra-Labs'
|
|
58
|
+
}],
|
|
59
|
+
rest: [{
|
|
60
|
+
address: 'https://api.xyra-mainnet.org',
|
|
61
|
+
provider: 'Xyra-Labs'
|
|
62
|
+
}],
|
|
63
|
+
grpc: [{
|
|
64
|
+
address: 'grpc.xyra-mainnet.org:443',
|
|
65
|
+
provider: 'Xyra-Labs'
|
|
66
|
+
}]
|
|
67
|
+
},
|
|
68
|
+
logoURIs: {
|
|
69
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.png',
|
|
70
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.svg'
|
|
71
|
+
},
|
|
72
|
+
keywords: ['layer1', 'pos'],
|
|
73
|
+
explorers: [{
|
|
74
|
+
kind: 'ping.pub',
|
|
75
|
+
url: 'https://explorer.xyra-mainnet.org',
|
|
76
|
+
txPage: 'https://explorer.xyra-mainnet.org/xyra/tx/${txHash}'
|
|
77
|
+
}]
|
|
78
|
+
};
|
|
79
|
+
export default info;
|
|
@@ -28,28 +28,32 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
gitRepo: 'https://github.com/atomone-hub/atomone',
|
|
31
|
-
recommendedVersion: 'v3.0
|
|
32
|
-
compatibleVersions: [
|
|
31
|
+
recommendedVersion: 'v3.3.0',
|
|
32
|
+
compatibleVersions: [
|
|
33
|
+
'v3.0.1',
|
|
34
|
+
'v3.2.0',
|
|
35
|
+
'v3.3.0'
|
|
36
|
+
],
|
|
33
37
|
binaries: {
|
|
34
|
-
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
35
|
-
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
36
|
-
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
37
|
-
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
38
|
-
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
39
|
-
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
38
|
+
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-linux-amd64',
|
|
39
|
+
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-linux-arm64',
|
|
40
|
+
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-darwin-amd64',
|
|
41
|
+
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-darwin-arm64',
|
|
42
|
+
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-windows-amd64.exe',
|
|
43
|
+
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-windows-arm64.exe'
|
|
40
44
|
},
|
|
41
45
|
genesis: {
|
|
42
46
|
genesisUrl: 'https://atomone.fra1.digitaloceanspaces.com/atomone-testnet-1/genesis.json'
|
|
43
47
|
},
|
|
44
48
|
consensus: {
|
|
45
49
|
type: 'cometbft',
|
|
46
|
-
version: 'v0.37.
|
|
50
|
+
version: 'v0.37.18'
|
|
47
51
|
},
|
|
48
52
|
sdk: {
|
|
49
53
|
type: 'cosmos',
|
|
50
54
|
version: 'v0.47.17'
|
|
51
55
|
},
|
|
52
|
-
tag: 'v3.0
|
|
56
|
+
tag: 'v3.3.0'
|
|
53
57
|
},
|
|
54
58
|
logoURIs: {
|
|
55
59
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png',
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -250,6 +250,7 @@ const _xarchain = __importStar(require("./xarchain"));
|
|
|
250
250
|
const _xion = __importStar(require("./xion"));
|
|
251
251
|
const _xpla = __importStar(require("./xpla"));
|
|
252
252
|
const _xrplevm = __importStar(require("./xrplevm"));
|
|
253
|
+
const _xyra = __importStar(require("./xyra"));
|
|
253
254
|
const _zenrock = __importStar(require("./zenrock"));
|
|
254
255
|
const _zetachain = __importStar(require("./zetachain"));
|
|
255
256
|
const _zigchain = __importStar(require("./zigchain"));
|
|
@@ -481,6 +482,7 @@ const assetList = [
|
|
|
481
482
|
_xion.assetList,
|
|
482
483
|
_xpla.assetList,
|
|
483
484
|
_xrplevm.assetList,
|
|
485
|
+
_xyra.assetList,
|
|
484
486
|
_zenrock.assetList,
|
|
485
487
|
_zetachain.assetList,
|
|
486
488
|
_zigchain.assetList
|
package/mainnet/atomone/chain.js
CHANGED
|
@@ -36,28 +36,32 @@ const info = {
|
|
|
36
36
|
},
|
|
37
37
|
codebase: {
|
|
38
38
|
gitRepo: 'https://github.com/atomone-hub/atomone',
|
|
39
|
-
recommendedVersion: 'v3.0
|
|
40
|
-
compatibleVersions: [
|
|
39
|
+
recommendedVersion: 'v3.3.0',
|
|
40
|
+
compatibleVersions: [
|
|
41
|
+
'v3.0.3',
|
|
42
|
+
'v3.2.0',
|
|
43
|
+
'v3.3.0'
|
|
44
|
+
],
|
|
41
45
|
binaries: {
|
|
42
|
-
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
43
|
-
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
44
|
-
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
45
|
-
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
46
|
-
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
47
|
-
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
46
|
+
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-linux-amd64',
|
|
47
|
+
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-linux-arm64',
|
|
48
|
+
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-darwin-amd64',
|
|
49
|
+
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-darwin-arm64',
|
|
50
|
+
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-windows-amd64.exe',
|
|
51
|
+
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-windows-arm64.exe'
|
|
48
52
|
},
|
|
49
53
|
genesis: {
|
|
50
54
|
genesisUrl: 'https://atomone.fra1.digitaloceanspaces.com/atomone-1/genesis.json'
|
|
51
55
|
},
|
|
52
56
|
consensus: {
|
|
53
57
|
type: 'cometbft',
|
|
54
|
-
version: 'v0.37.
|
|
58
|
+
version: 'v0.37.18'
|
|
55
59
|
},
|
|
56
60
|
sdk: {
|
|
57
61
|
type: 'cosmos',
|
|
58
62
|
version: 'v0.47.17'
|
|
59
63
|
},
|
|
60
|
-
tag: 'v3.0
|
|
64
|
+
tag: 'v3.3.0'
|
|
61
65
|
},
|
|
62
66
|
logoURIs: {
|
|
63
67
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png',
|
|
@@ -91,10 +91,6 @@ const info = {
|
|
|
91
91
|
address: 'https://bitcanna.rpc.kjnodes.com/',
|
|
92
92
|
provider: 'kjnodes'
|
|
93
93
|
},
|
|
94
|
-
{
|
|
95
|
-
address: 'https://rpc.bitcanna-1.bitcanna.aviaone.com/',
|
|
96
|
-
provider: 'AVIAONE 🟢'
|
|
97
|
-
},
|
|
98
94
|
{
|
|
99
95
|
address: 'https://rpc.bitcanna-mainnet.hexnodes.one/',
|
|
100
96
|
provider: 'Hexnodes'
|
|
@@ -169,10 +165,6 @@ const info = {
|
|
|
169
165
|
address: 'grpc.bitcanna-mainnet.hexnodes.one:27090',
|
|
170
166
|
provider: 'HexNodes'
|
|
171
167
|
},
|
|
172
|
-
{
|
|
173
|
-
address: 'grpc.bitcanna-1.bitcanna.aviaone.com:9102',
|
|
174
|
-
provider: 'AVIAONE 🟢'
|
|
175
|
-
},
|
|
176
168
|
{
|
|
177
169
|
address: 'bitcanna-mainnet.grpc.l0vd.com:80',
|
|
178
170
|
provider: 'L0vd.com'
|
|
@@ -255,10 +247,6 @@ const info = {
|
|
|
255
247
|
address: 'https://bitcanna.api.kjnodes.com',
|
|
256
248
|
provider: 'kjnodes'
|
|
257
249
|
},
|
|
258
|
-
{
|
|
259
|
-
address: 'https://api.bitcanna-1.bitcanna.aviaone.com',
|
|
260
|
-
provider: 'AVIAONE 🟢'
|
|
261
|
-
},
|
|
262
250
|
{
|
|
263
251
|
address: 'https://lcd.bitcanna-mainnet.hexnodes.one',
|
|
264
252
|
provider: 'Hexnodes'
|
|
@@ -413,24 +401,12 @@ const info = {
|
|
|
413
401
|
txPage: 'https://explorer.kalia.network/bitcanna/tx/${txHash}',
|
|
414
402
|
accountPage: 'https://explorer.kalia.network/bitcanna/account/${accountAddress}'
|
|
415
403
|
},
|
|
416
|
-
{
|
|
417
|
-
kind: 'AviaOne Explorer 🟢',
|
|
418
|
-
url: 'https://mainnet.explorer.aviaone.com/bitcanna',
|
|
419
|
-
txPage: 'https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}',
|
|
420
|
-
accountPage: 'https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}'
|
|
421
|
-
},
|
|
422
404
|
{
|
|
423
405
|
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
424
406
|
url: 'https://explorer.whenmoonwhenlambo.money/bitcanna',
|
|
425
407
|
txPage: 'https://explorer.whenmoonwhenlambo.money/bitcanna/tx/${txHash}',
|
|
426
408
|
accountPage: 'https://explorer.whenmoonwhenlambo.money/bitcanna/account/${accountAddress}'
|
|
427
409
|
},
|
|
428
|
-
{
|
|
429
|
-
kind: 'AviaOne Explorer 🟢',
|
|
430
|
-
url: 'https://mainnet.explorer.aviaone.com/bitcanna',
|
|
431
|
-
txPage: 'https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}',
|
|
432
|
-
accountPage: 'https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}'
|
|
433
|
-
},
|
|
434
410
|
{
|
|
435
411
|
kind: 'Valopers',
|
|
436
412
|
url: 'https://bitcanna.valopers.com/',
|
package/mainnet/chains.js
CHANGED
|
@@ -250,6 +250,7 @@ const _xarchain = __importStar(require("./xarchain"));
|
|
|
250
250
|
const _xion = __importStar(require("./xion"));
|
|
251
251
|
const _xpla = __importStar(require("./xpla"));
|
|
252
252
|
const _xrplevm = __importStar(require("./xrplevm"));
|
|
253
|
+
const _xyra = __importStar(require("./xyra"));
|
|
253
254
|
const _zenrock = __importStar(require("./zenrock"));
|
|
254
255
|
const _zetachain = __importStar(require("./zetachain"));
|
|
255
256
|
const _zigchain = __importStar(require("./zigchain"));
|
|
@@ -481,6 +482,7 @@ const chains = [
|
|
|
481
482
|
_xion.chain,
|
|
482
483
|
_xpla.chain,
|
|
483
484
|
_xrplevm.chain,
|
|
485
|
+
_xyra.chain,
|
|
484
486
|
_zenrock.chain,
|
|
485
487
|
_zetachain.chain,
|
|
486
488
|
_zigchain.chain
|
|
@@ -987,7 +987,6 @@ const info = {
|
|
|
987
987
|
name: 'Mars Protocol',
|
|
988
988
|
display: 'MARS',
|
|
989
989
|
symbol: 'MARS',
|
|
990
|
-
coingeckoId: 'mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3',
|
|
991
990
|
images: [{
|
|
992
991
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png',
|
|
993
992
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg'
|
|
@@ -6106,8 +6106,7 @@ const info = {
|
|
|
6106
6106
|
},
|
|
6107
6107
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.png',
|
|
6108
6108
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.svg'
|
|
6109
|
-
}]
|
|
6110
|
-
coingeckoId: 'mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3'
|
|
6109
|
+
}]
|
|
6111
6110
|
},
|
|
6112
6111
|
{
|
|
6113
6112
|
description: 'Ciento Exchange Token',
|
|
@@ -16412,8 +16411,7 @@ const info = {
|
|
|
16412
16411
|
},
|
|
16413
16412
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png',
|
|
16414
16413
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg'
|
|
16415
|
-
}]
|
|
16416
|
-
coingeckoId: 'mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3'
|
|
16414
|
+
}]
|
|
16417
16415
|
},
|
|
16418
16416
|
{
|
|
16419
16417
|
description: 'The native token of TON',
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'xyra',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of Xyra Chain',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'uXyrium',
|
|
10
|
+
exponent: 0,
|
|
11
|
+
aliases: ['microxyrium']
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'XYRIUM',
|
|
14
|
+
exponent: 6
|
|
15
|
+
}],
|
|
16
|
+
base: 'uXyrium',
|
|
17
|
+
display: 'XYRIUM',
|
|
18
|
+
name: 'Xyra',
|
|
19
|
+
symbol: 'XYR',
|
|
20
|
+
logoURIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.png',
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.svg'
|
|
23
|
+
},
|
|
24
|
+
images: [{
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.png',
|
|
26
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.svg'
|
|
27
|
+
}],
|
|
28
|
+
typeAsset: 'sdk.coin'
|
|
29
|
+
}]
|
|
30
|
+
};
|
|
31
|
+
exports.default = info;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'xyra',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'https://www.xyra-mainnet.org',
|
|
8
|
+
networkType: 'mainnet',
|
|
9
|
+
chainType: 'cosmos',
|
|
10
|
+
prettyName: 'Xyra Chain',
|
|
11
|
+
chainId: 'xyra-2',
|
|
12
|
+
bech32Prefix: 'xyra',
|
|
13
|
+
daemonName: 'xyrad',
|
|
14
|
+
nodeHome: '$HOME/.xyrad',
|
|
15
|
+
keyAlgos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'uXyrium',
|
|
20
|
+
fixedMinGasPrice: 0.0025,
|
|
21
|
+
lowGasPrice: 0.01,
|
|
22
|
+
averageGasPrice: 0.025,
|
|
23
|
+
highGasPrice: 0.04
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
stakingTokens: [{
|
|
28
|
+
denom: 'uXyrium'
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
gitRepo: 'https://github.com/rizkimaryanto7-creator/xyra-chain',
|
|
33
|
+
genesis: {
|
|
34
|
+
genesisUrl: 'https://raw.githubusercontent.com/rizkimaryanto7-creator/xyra-chain/master/genesis.json'
|
|
35
|
+
},
|
|
36
|
+
recommendedVersion: 'v1.0.0',
|
|
37
|
+
compatibleVersions: ['v1.0.0'],
|
|
38
|
+
consensus: {
|
|
39
|
+
type: 'cometbft',
|
|
40
|
+
version: '0.38'
|
|
41
|
+
},
|
|
42
|
+
sdk: {
|
|
43
|
+
type: 'cosmos',
|
|
44
|
+
repo: 'https://github.com/cosmos/cosmos-sdk',
|
|
45
|
+
version: 'v0.50.0'
|
|
46
|
+
},
|
|
47
|
+
cosmwasm: {
|
|
48
|
+
enabled: false
|
|
49
|
+
},
|
|
50
|
+
tag: 'v1.0.0'
|
|
51
|
+
},
|
|
52
|
+
images: [{
|
|
53
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.png',
|
|
54
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.svg'
|
|
55
|
+
}],
|
|
56
|
+
apis: {
|
|
57
|
+
rpc: [{
|
|
58
|
+
address: 'https://rpc.xyra-mainnet.org',
|
|
59
|
+
provider: 'Xyra-Labs'
|
|
60
|
+
}],
|
|
61
|
+
rest: [{
|
|
62
|
+
address: 'https://api.xyra-mainnet.org',
|
|
63
|
+
provider: 'Xyra-Labs'
|
|
64
|
+
}],
|
|
65
|
+
grpc: [{
|
|
66
|
+
address: 'grpc.xyra-mainnet.org:443',
|
|
67
|
+
provider: 'Xyra-Labs'
|
|
68
|
+
}]
|
|
69
|
+
},
|
|
70
|
+
logoURIs: {
|
|
71
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.png',
|
|
72
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xyra/images/xrc.svg'
|
|
73
|
+
},
|
|
74
|
+
keywords: ['layer1', 'pos'],
|
|
75
|
+
explorers: [{
|
|
76
|
+
kind: 'ping.pub',
|
|
77
|
+
url: 'https://explorer.xyra-mainnet.org',
|
|
78
|
+
txPage: 'https://explorer.xyra-mainnet.org/xyra/tx/${txHash}'
|
|
79
|
+
}]
|
|
80
|
+
};
|
|
81
|
+
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.176",
|
|
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.176"
|
|
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": "c29aaf0a7725d1a054e4c7a5900634087cfb8b97"
|
|
43
43
|
}
|
|
@@ -30,28 +30,32 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
gitRepo: 'https://github.com/atomone-hub/atomone',
|
|
33
|
-
recommendedVersion: 'v3.0
|
|
34
|
-
compatibleVersions: [
|
|
33
|
+
recommendedVersion: 'v3.3.0',
|
|
34
|
+
compatibleVersions: [
|
|
35
|
+
'v3.0.1',
|
|
36
|
+
'v3.2.0',
|
|
37
|
+
'v3.3.0'
|
|
38
|
+
],
|
|
35
39
|
binaries: {
|
|
36
|
-
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
37
|
-
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
38
|
-
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
39
|
-
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
40
|
-
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
41
|
-
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.0
|
|
40
|
+
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-linux-amd64',
|
|
41
|
+
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-linux-arm64',
|
|
42
|
+
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-darwin-amd64',
|
|
43
|
+
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-darwin-arm64',
|
|
44
|
+
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-windows-amd64.exe',
|
|
45
|
+
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v3.3.0/atomoned-v3.3.0-windows-arm64.exe'
|
|
42
46
|
},
|
|
43
47
|
genesis: {
|
|
44
48
|
genesisUrl: 'https://atomone.fra1.digitaloceanspaces.com/atomone-testnet-1/genesis.json'
|
|
45
49
|
},
|
|
46
50
|
consensus: {
|
|
47
51
|
type: 'cometbft',
|
|
48
|
-
version: 'v0.37.
|
|
52
|
+
version: 'v0.37.18'
|
|
49
53
|
},
|
|
50
54
|
sdk: {
|
|
51
55
|
type: 'cosmos',
|
|
52
56
|
version: 'v0.47.17'
|
|
53
57
|
},
|
|
54
|
-
tag: 'v3.0
|
|
58
|
+
tag: 'v3.3.0'
|
|
55
59
|
},
|
|
56
60
|
logoURIs: {
|
|
57
61
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png',
|