chain-registry 1.69.279 → 1.69.280
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/assets.js +2 -0
- package/esm/mainnet/axone/assets.js +31 -0
- package/esm/mainnet/axone/chain.js +73 -0
- package/esm/mainnet/axone/index.js +4 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/cosmoshub/chain.js +1 -1
- package/esm/mainnet/elys/chain.js +7 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/realio/chain.js +7 -7
- package/esm/mainnet/routerchain/chain.js +4 -4
- package/esm/noncosmos/picasso/assets.js +1 -1
- package/esm/testnet/cosmosicsprovidertestnet/chain.js +7 -7
- package/mainnet/assets.js +2 -0
- package/mainnet/axone/assets.d.ts +3 -0
- package/mainnet/axone/assets.js +33 -0
- package/mainnet/axone/chain.d.ts +3 -0
- package/mainnet/axone/chain.js +75 -0
- package/mainnet/axone/index.d.ts +2 -0
- package/mainnet/axone/index.js +10 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/cosmoshub/chain.js +1 -1
- package/mainnet/elys/chain.js +7 -0
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +6 -5
- package/mainnet/realio/chain.js +7 -7
- package/mainnet/routerchain/chain.js +4 -4
- package/noncosmos/picasso/assets.js +1 -1
- package/package.json +3 -3
- package/testnet/cosmosicsprovidertestnet/chain.js +7 -7
package/esm/mainnet/assets.js
CHANGED
|
@@ -19,6 +19,7 @@ import * as _assetmantle from './assetmantle';
|
|
|
19
19
|
import * as _atomone from './atomone';
|
|
20
20
|
import * as _aura from './aura';
|
|
21
21
|
import * as _axelar from './axelar';
|
|
22
|
+
import * as _axone from './axone';
|
|
22
23
|
import * as _babylon from './babylon';
|
|
23
24
|
import * as _bandchain from './bandchain';
|
|
24
25
|
import * as _beezee from './beezee';
|
|
@@ -229,6 +230,7 @@ const assets = [
|
|
|
229
230
|
_atomone.assets,
|
|
230
231
|
_aura.assets,
|
|
231
232
|
_axelar.assets,
|
|
233
|
+
_axone.assets,
|
|
232
234
|
_babylon.assets,
|
|
233
235
|
_bandchain.assets,
|
|
234
236
|
_beezee.assets,
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'axone',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of Axone.',
|
|
6
|
+
extended_description: 'Axone is a layer-1 designed for collaborative AI training, governance and monetization at scale.',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'uaxone',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'axone',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'uaxone',
|
|
15
|
+
name: 'Axone',
|
|
16
|
+
display: 'axone',
|
|
17
|
+
symbol: 'AXONE',
|
|
18
|
+
logo_URIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
20
|
+
},
|
|
21
|
+
images: [{
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
23
|
+
}],
|
|
24
|
+
type_asset: 'sdk.coin',
|
|
25
|
+
socials: {
|
|
26
|
+
website: 'https://axone.xyz',
|
|
27
|
+
twitter: 'https://x.com/axonexyz'
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
};
|
|
31
|
+
export default info;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'axone',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'http://axone.xyz/',
|
|
6
|
+
network_type: 'mainnet',
|
|
7
|
+
pretty_name: 'Axone',
|
|
8
|
+
chain_type: 'cosmos',
|
|
9
|
+
chain_id: 'axone-1',
|
|
10
|
+
bech32_prefix: 'axone',
|
|
11
|
+
slip44: 118,
|
|
12
|
+
daemon_name: 'axoned',
|
|
13
|
+
node_home: '$HOME/.axoned',
|
|
14
|
+
key_algos: ['secp256k1'],
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [{
|
|
17
|
+
denom: 'uaxone',
|
|
18
|
+
low_gas_price: 0.001,
|
|
19
|
+
average_gas_price: 0.005,
|
|
20
|
+
high_gas_price: 0.01
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
staking_tokens: [{
|
|
25
|
+
denom: 'uaxone'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {
|
|
29
|
+
git_repo: 'https://github.com/axone-protocol/axoned',
|
|
30
|
+
recommended_version: 'v12.0.0',
|
|
31
|
+
compatible_versions: ['v12.0.0'],
|
|
32
|
+
genesis: {
|
|
33
|
+
genesis_url: 'https://raw.githubusercontent.com/axone-protocol/networks/refs/heads/main/chains/1/genesis.json'
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
logo_URIs: {
|
|
37
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
38
|
+
},
|
|
39
|
+
apis: {
|
|
40
|
+
rpc: [{
|
|
41
|
+
address: 'https://rpc.axone.cumulo.com.es',
|
|
42
|
+
provider: 'cumulo'
|
|
43
|
+
}, {
|
|
44
|
+
address: 'https://axone-rpc.highstakes.ch',
|
|
45
|
+
provider: 'High Stakes 🇨🇭'
|
|
46
|
+
}],
|
|
47
|
+
rest: [{
|
|
48
|
+
address: 'https://api.axone.cumulo.com.es',
|
|
49
|
+
provider: 'cumulo'
|
|
50
|
+
}, {
|
|
51
|
+
address: 'https://axone-api.highstakes.ch',
|
|
52
|
+
provider: 'High Stakes 🇨🇭'
|
|
53
|
+
}],
|
|
54
|
+
grpc: [{
|
|
55
|
+
address: 'grpc.axone.cumulo.com.es:443',
|
|
56
|
+
provider: 'cumulo'
|
|
57
|
+
}, {
|
|
58
|
+
address: 'https://axone-grpc.highstakes.ch',
|
|
59
|
+
provider: 'High Stakes 🇨🇭'
|
|
60
|
+
}]
|
|
61
|
+
},
|
|
62
|
+
explorers: [{
|
|
63
|
+
kind: 'valopers',
|
|
64
|
+
url: 'https://axone.valopers.com/',
|
|
65
|
+
tx_page: 'https://axone.valopers.com/transactions/${txHash}',
|
|
66
|
+
account_page: 'https://axone.valopers.com/account/${accountAddress}'
|
|
67
|
+
}],
|
|
68
|
+
images: [{
|
|
69
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
70
|
+
}],
|
|
71
|
+
description: 'Axone is a layer-1 designed for collaborative AI training, governance and monetization at scale.'
|
|
72
|
+
};
|
|
73
|
+
export default info;
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -19,6 +19,7 @@ import * as _assetmantle from './assetmantle';
|
|
|
19
19
|
import * as _atomone from './atomone';
|
|
20
20
|
import * as _aura from './aura';
|
|
21
21
|
import * as _axelar from './axelar';
|
|
22
|
+
import * as _axone from './axone';
|
|
22
23
|
import * as _babylon from './babylon';
|
|
23
24
|
import * as _bandchain from './bandchain';
|
|
24
25
|
import * as _beezee from './beezee';
|
|
@@ -229,6 +230,7 @@ const chains = [
|
|
|
229
230
|
_atomone.chain,
|
|
230
231
|
_aura.chain,
|
|
231
232
|
_axelar.chain,
|
|
233
|
+
_axone.chain,
|
|
232
234
|
_babylon.chain,
|
|
233
235
|
_bandchain.chain,
|
|
234
236
|
_beezee.chain,
|
|
@@ -61,7 +61,7 @@ const info = {
|
|
|
61
61
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
62
62
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
63
63
|
},
|
|
64
|
-
description: '
|
|
64
|
+
description: 'The Cosmos Hub is the flagship blockchain of the Cosmos ecosystem, launched in 2019. Today, it provides multichain services to other Cosmos blockchains, including the IBC Eureka bridge between the Cosmos ecosystem and Ethereum.',
|
|
65
65
|
apis: {
|
|
66
66
|
rpc: [
|
|
67
67
|
{
|
|
@@ -41,6 +41,13 @@ const info = {
|
|
|
41
41
|
low_gas_price: 0.01,
|
|
42
42
|
average_gas_price: 0.025,
|
|
43
43
|
high_gas_price: 0.03
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
denom: 'ibc/8464A63954C0350A26C8588E20719F3A0AC8705E4CA0F7450B60C3F16B2D3421',
|
|
47
|
+
fixed_min_gas_price: 11395000000,
|
|
48
|
+
low_gas_price: 11395000000,
|
|
49
|
+
average_gas_price: 21395000000,
|
|
50
|
+
high_gas_price: 31395000000
|
|
44
51
|
}
|
|
45
52
|
]
|
|
46
53
|
},
|
package/esm/mainnet/named.js
CHANGED
|
@@ -19,6 +19,7 @@ export * as assetmantle from './assetmantle';
|
|
|
19
19
|
export * as atomone from './atomone';
|
|
20
20
|
export * as aura from './aura';
|
|
21
21
|
export * as axelar from './axelar';
|
|
22
|
+
export * as axone from './axone';
|
|
22
23
|
export * as babylon from './babylon';
|
|
23
24
|
export * as bandchain from './bandchain';
|
|
24
25
|
export * as beezee from './beezee';
|
|
@@ -30,14 +30,14 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
git_repo: 'https://github.com/realiotech/realio-network',
|
|
33
|
-
recommended_version: 'v1.0
|
|
34
|
-
compatible_versions: ['v1.0
|
|
33
|
+
recommended_version: 'v1.3.0',
|
|
34
|
+
compatible_versions: ['v1.3.0'],
|
|
35
35
|
binaries: {
|
|
36
|
-
"linux/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
37
|
-
"linux/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
38
|
-
"darwin/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
39
|
-
"darwin/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
40
|
-
"windows/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
36
|
+
"linux/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Linux_x86_64.tar.gz',
|
|
37
|
+
"linux/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Linux_arm64.tar.gz',
|
|
38
|
+
"darwin/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Darwin_x86_64.tar.gz',
|
|
39
|
+
"darwin/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Darwin_arm64.tar.gz',
|
|
40
|
+
"windows/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Windows_x86_64.zip'
|
|
41
41
|
},
|
|
42
42
|
consensus: {
|
|
43
43
|
type: 'cometbft',
|
|
@@ -28,15 +28,15 @@ const info = {
|
|
|
28
28
|
}]
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
|
-
recommended_version: 'v2.2.
|
|
32
|
-
compatible_versions: ['v2.2.
|
|
31
|
+
recommended_version: 'v2.2.8',
|
|
32
|
+
compatible_versions: ['v2.2.8'],
|
|
33
33
|
consensus: {
|
|
34
34
|
type: 'cometbft',
|
|
35
35
|
version: '0.37.5'
|
|
36
36
|
},
|
|
37
37
|
binaries: {
|
|
38
|
-
"linux/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.
|
|
39
|
-
"darwin/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.
|
|
38
|
+
"linux/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.8/linux/routerd.tar.gz',
|
|
39
|
+
"darwin/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.8/debian/routerd.tar.gz'
|
|
40
40
|
},
|
|
41
41
|
genesis: {
|
|
42
42
|
genesis_url: 'https://sentry.tm.rpc.routerprotocol.com/genesis'
|
|
@@ -27,24 +27,24 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
git_repo: 'https://github.com/cosmos/gaia',
|
|
30
|
-
recommended_version: 'v25.
|
|
31
|
-
compatible_versions: ['v25.
|
|
30
|
+
recommended_version: 'v25.1.0',
|
|
31
|
+
compatible_versions: ['v25.1.0'],
|
|
32
32
|
consensus: {
|
|
33
33
|
type: 'cometbft',
|
|
34
34
|
version: 'v0.38.17'
|
|
35
35
|
},
|
|
36
36
|
binaries: {
|
|
37
|
-
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
38
|
-
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
39
|
-
"darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
37
|
+
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-linux-amd64',
|
|
38
|
+
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-darwin-amd64',
|
|
39
|
+
"darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-darwin-arm64'
|
|
40
40
|
},
|
|
41
41
|
genesis: {
|
|
42
42
|
genesis_url: 'https://raw.githubusercontent.com/cosmos/testnets/master/interchain-security/provider/provider-genesis.json'
|
|
43
43
|
},
|
|
44
44
|
sdk: {
|
|
45
45
|
type: 'cosmos',
|
|
46
|
-
version: 'v0.53.
|
|
47
|
-
tag: 'v0.53.
|
|
46
|
+
version: 'v0.53.3',
|
|
47
|
+
tag: 'v0.53.3'
|
|
48
48
|
},
|
|
49
49
|
ibc: {
|
|
50
50
|
type: 'go',
|
package/mainnet/assets.js
CHANGED
|
@@ -44,6 +44,7 @@ const _assetmantle = __importStar(require("./assetmantle"));
|
|
|
44
44
|
const _atomone = __importStar(require("./atomone"));
|
|
45
45
|
const _aura = __importStar(require("./aura"));
|
|
46
46
|
const _axelar = __importStar(require("./axelar"));
|
|
47
|
+
const _axone = __importStar(require("./axone"));
|
|
47
48
|
const _babylon = __importStar(require("./babylon"));
|
|
48
49
|
const _bandchain = __importStar(require("./bandchain"));
|
|
49
50
|
const _beezee = __importStar(require("./beezee"));
|
|
@@ -254,6 +255,7 @@ const assets = [
|
|
|
254
255
|
_atomone.assets,
|
|
255
256
|
_aura.assets,
|
|
256
257
|
_axelar.assets,
|
|
258
|
+
_axone.assets,
|
|
257
259
|
_babylon.assets,
|
|
258
260
|
_bandchain.assets,
|
|
259
261
|
_beezee.assets,
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'axone',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of Axone.',
|
|
8
|
+
extended_description: 'Axone is a layer-1 designed for collaborative AI training, governance and monetization at scale.',
|
|
9
|
+
denom_units: [{
|
|
10
|
+
denom: 'uaxone',
|
|
11
|
+
exponent: 0
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'axone',
|
|
14
|
+
exponent: 6
|
|
15
|
+
}],
|
|
16
|
+
base: 'uaxone',
|
|
17
|
+
name: 'Axone',
|
|
18
|
+
display: 'axone',
|
|
19
|
+
symbol: 'AXONE',
|
|
20
|
+
logo_URIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
22
|
+
},
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
25
|
+
}],
|
|
26
|
+
type_asset: 'sdk.coin',
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://axone.xyz',
|
|
29
|
+
twitter: 'https://x.com/axonexyz'
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
};
|
|
33
|
+
exports.default = info;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chain_name: 'axone',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'http://axone.xyz/',
|
|
8
|
+
network_type: 'mainnet',
|
|
9
|
+
pretty_name: 'Axone',
|
|
10
|
+
chain_type: 'cosmos',
|
|
11
|
+
chain_id: 'axone-1',
|
|
12
|
+
bech32_prefix: 'axone',
|
|
13
|
+
slip44: 118,
|
|
14
|
+
daemon_name: 'axoned',
|
|
15
|
+
node_home: '$HOME/.axoned',
|
|
16
|
+
key_algos: ['secp256k1'],
|
|
17
|
+
fees: {
|
|
18
|
+
fee_tokens: [{
|
|
19
|
+
denom: 'uaxone',
|
|
20
|
+
low_gas_price: 0.001,
|
|
21
|
+
average_gas_price: 0.005,
|
|
22
|
+
high_gas_price: 0.01
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
staking_tokens: [{
|
|
27
|
+
denom: 'uaxone'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
codebase: {
|
|
31
|
+
git_repo: 'https://github.com/axone-protocol/axoned',
|
|
32
|
+
recommended_version: 'v12.0.0',
|
|
33
|
+
compatible_versions: ['v12.0.0'],
|
|
34
|
+
genesis: {
|
|
35
|
+
genesis_url: 'https://raw.githubusercontent.com/axone-protocol/networks/refs/heads/main/chains/1/genesis.json'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
logo_URIs: {
|
|
39
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
40
|
+
},
|
|
41
|
+
apis: {
|
|
42
|
+
rpc: [{
|
|
43
|
+
address: 'https://rpc.axone.cumulo.com.es',
|
|
44
|
+
provider: 'cumulo'
|
|
45
|
+
}, {
|
|
46
|
+
address: 'https://axone-rpc.highstakes.ch',
|
|
47
|
+
provider: 'High Stakes 🇨🇭'
|
|
48
|
+
}],
|
|
49
|
+
rest: [{
|
|
50
|
+
address: 'https://api.axone.cumulo.com.es',
|
|
51
|
+
provider: 'cumulo'
|
|
52
|
+
}, {
|
|
53
|
+
address: 'https://axone-api.highstakes.ch',
|
|
54
|
+
provider: 'High Stakes 🇨🇭'
|
|
55
|
+
}],
|
|
56
|
+
grpc: [{
|
|
57
|
+
address: 'grpc.axone.cumulo.com.es:443',
|
|
58
|
+
provider: 'cumulo'
|
|
59
|
+
}, {
|
|
60
|
+
address: 'https://axone-grpc.highstakes.ch',
|
|
61
|
+
provider: 'High Stakes 🇨🇭'
|
|
62
|
+
}]
|
|
63
|
+
},
|
|
64
|
+
explorers: [{
|
|
65
|
+
kind: 'valopers',
|
|
66
|
+
url: 'https://axone.valopers.com/',
|
|
67
|
+
tx_page: 'https://axone.valopers.com/transactions/${txHash}',
|
|
68
|
+
account_page: 'https://axone.valopers.com/account/${accountAddress}'
|
|
69
|
+
}],
|
|
70
|
+
images: [{
|
|
71
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
72
|
+
}],
|
|
73
|
+
description: 'Axone is a layer-1 designed for collaborative AI training, governance and monetization at scale.'
|
|
74
|
+
};
|
|
75
|
+
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.assets = void 0;
|
|
7
|
+
const assets_1 = __importDefault(require("./assets"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assets = assets_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
package/mainnet/chains.js
CHANGED
|
@@ -44,6 +44,7 @@ const _assetmantle = __importStar(require("./assetmantle"));
|
|
|
44
44
|
const _atomone = __importStar(require("./atomone"));
|
|
45
45
|
const _aura = __importStar(require("./aura"));
|
|
46
46
|
const _axelar = __importStar(require("./axelar"));
|
|
47
|
+
const _axone = __importStar(require("./axone"));
|
|
47
48
|
const _babylon = __importStar(require("./babylon"));
|
|
48
49
|
const _bandchain = __importStar(require("./bandchain"));
|
|
49
50
|
const _beezee = __importStar(require("./beezee"));
|
|
@@ -254,6 +255,7 @@ const chains = [
|
|
|
254
255
|
_atomone.chain,
|
|
255
256
|
_aura.chain,
|
|
256
257
|
_axelar.chain,
|
|
258
|
+
_axone.chain,
|
|
257
259
|
_babylon.chain,
|
|
258
260
|
_bandchain.chain,
|
|
259
261
|
_beezee.chain,
|
|
@@ -63,7 +63,7 @@ const info = {
|
|
|
63
63
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
64
64
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
65
65
|
},
|
|
66
|
-
description: '
|
|
66
|
+
description: 'The Cosmos Hub is the flagship blockchain of the Cosmos ecosystem, launched in 2019. Today, it provides multichain services to other Cosmos blockchains, including the IBC Eureka bridge between the Cosmos ecosystem and Ethereum.',
|
|
67
67
|
apis: {
|
|
68
68
|
rpc: [
|
|
69
69
|
{
|
package/mainnet/elys/chain.js
CHANGED
|
@@ -43,6 +43,13 @@ const info = {
|
|
|
43
43
|
low_gas_price: 0.01,
|
|
44
44
|
average_gas_price: 0.025,
|
|
45
45
|
high_gas_price: 0.03
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
denom: 'ibc/8464A63954C0350A26C8588E20719F3A0AC8705E4CA0F7450B60C3F16B2D3421',
|
|
49
|
+
fixed_min_gas_price: 11395000000,
|
|
50
|
+
low_gas_price: 11395000000,
|
|
51
|
+
average_gas_price: 21395000000,
|
|
52
|
+
high_gas_price: 31395000000
|
|
46
53
|
}
|
|
47
54
|
]
|
|
48
55
|
},
|
package/mainnet/named.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export * as assetmantle from './assetmantle';
|
|
|
19
19
|
export * as atomone from './atomone';
|
|
20
20
|
export * as aura from './aura';
|
|
21
21
|
export * as axelar from './axelar';
|
|
22
|
+
export * as axone from './axone';
|
|
22
23
|
export * as babylon from './babylon';
|
|
23
24
|
export * as bandchain from './bandchain';
|
|
24
25
|
export * as beezee from './beezee';
|
package/mainnet/named.js
CHANGED
|
@@ -23,11 +23,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.zetachain = exports.zenrock = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.vector = exports.uptick = exports.ununifi = void 0;
|
|
26
|
+
exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cnhostables = exports.cifer = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.celestia = exports.carbon = exports.canto = exports.buycex = exports.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.babylon = exports.axone = exports.axelar = exports.aura = exports.atomone = exports.assetmantle = exports.arkh = exports.arkeo = exports.archway = exports.andromeda = exports.althea = exports.allora = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports.aaronetwork = exports.tron = exports.ton = exports.solana = exports.rootstock = exports.namada = exports.ethereum = void 0;
|
|
27
|
+
exports.kopi = exports.konstellation = exports.kimanetwork = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.int3face = exports.injective = exports.initia = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.hippoprotocol = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.ggezchain = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.epix = exports.empowerchain = exports.emoney = exports.elys = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.dungeon = exports.doravota = exports.dhealth = exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = void 0;
|
|
28
|
+
exports.pocket = exports.planq = exports.persistence = exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.opct = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.noble = exports.nim = exports.nillion = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.mises = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mantrachain = exports.manifest = exports.mande = exports.lumnetwork = exports.lumera = exports.loyal = exports.lorenzo = exports.loop = exports.lombardledger = exports.logos = exports.likecoin = exports.lefeef = exports.lava = exports.lambda = exports.kyve = exports.kujira = void 0;
|
|
29
|
+
exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.symphony = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.sidechain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.qubetics = exports.quasar = exports.qfs = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = void 0;
|
|
30
|
+
exports.zetachain = exports.zenrock = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.vector = exports.uptick = exports.ununifi = exports.unification = void 0;
|
|
31
31
|
exports.ethereum = __importStar(require("./ethereum"));
|
|
32
32
|
exports.namada = __importStar(require("./namada"));
|
|
33
33
|
exports.rootstock = __importStar(require("./rootstock"));
|
|
@@ -49,6 +49,7 @@ exports.assetmantle = __importStar(require("./assetmantle"));
|
|
|
49
49
|
exports.atomone = __importStar(require("./atomone"));
|
|
50
50
|
exports.aura = __importStar(require("./aura"));
|
|
51
51
|
exports.axelar = __importStar(require("./axelar"));
|
|
52
|
+
exports.axone = __importStar(require("./axone"));
|
|
52
53
|
exports.babylon = __importStar(require("./babylon"));
|
|
53
54
|
exports.bandchain = __importStar(require("./bandchain"));
|
|
54
55
|
exports.beezee = __importStar(require("./beezee"));
|
package/mainnet/realio/chain.js
CHANGED
|
@@ -32,14 +32,14 @@ const info = {
|
|
|
32
32
|
},
|
|
33
33
|
codebase: {
|
|
34
34
|
git_repo: 'https://github.com/realiotech/realio-network',
|
|
35
|
-
recommended_version: 'v1.0
|
|
36
|
-
compatible_versions: ['v1.0
|
|
35
|
+
recommended_version: 'v1.3.0',
|
|
36
|
+
compatible_versions: ['v1.3.0'],
|
|
37
37
|
binaries: {
|
|
38
|
-
"linux/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
39
|
-
"linux/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
40
|
-
"darwin/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
41
|
-
"darwin/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
42
|
-
"windows/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
38
|
+
"linux/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Linux_x86_64.tar.gz',
|
|
39
|
+
"linux/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Linux_arm64.tar.gz',
|
|
40
|
+
"darwin/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Darwin_x86_64.tar.gz',
|
|
41
|
+
"darwin/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Darwin_arm64.tar.gz',
|
|
42
|
+
"windows/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Windows_x86_64.zip'
|
|
43
43
|
},
|
|
44
44
|
consensus: {
|
|
45
45
|
type: 'cometbft',
|
|
@@ -30,15 +30,15 @@ const info = {
|
|
|
30
30
|
}]
|
|
31
31
|
},
|
|
32
32
|
codebase: {
|
|
33
|
-
recommended_version: 'v2.2.
|
|
34
|
-
compatible_versions: ['v2.2.
|
|
33
|
+
recommended_version: 'v2.2.8',
|
|
34
|
+
compatible_versions: ['v2.2.8'],
|
|
35
35
|
consensus: {
|
|
36
36
|
type: 'cometbft',
|
|
37
37
|
version: '0.37.5'
|
|
38
38
|
},
|
|
39
39
|
binaries: {
|
|
40
|
-
"linux/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.
|
|
41
|
-
"darwin/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.
|
|
40
|
+
"linux/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.8/linux/routerd.tar.gz',
|
|
41
|
+
"darwin/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.8/debian/routerd.tar.gz'
|
|
42
42
|
},
|
|
43
43
|
genesis: {
|
|
44
44
|
genesis_url: 'https://sentry.tm.rpc.routerprotocol.com/genesis'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.280",
|
|
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": "^0.50.
|
|
32
|
+
"@chain-registry/types": "^0.50.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": "2cf58c441bb6f9c60017d1b81ff725a75acffac0"
|
|
43
43
|
}
|
|
@@ -29,24 +29,24 @@ const info = {
|
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
31
|
git_repo: 'https://github.com/cosmos/gaia',
|
|
32
|
-
recommended_version: 'v25.
|
|
33
|
-
compatible_versions: ['v25.
|
|
32
|
+
recommended_version: 'v25.1.0',
|
|
33
|
+
compatible_versions: ['v25.1.0'],
|
|
34
34
|
consensus: {
|
|
35
35
|
type: 'cometbft',
|
|
36
36
|
version: 'v0.38.17'
|
|
37
37
|
},
|
|
38
38
|
binaries: {
|
|
39
|
-
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
40
|
-
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
41
|
-
"darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
39
|
+
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-linux-amd64',
|
|
40
|
+
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-darwin-amd64',
|
|
41
|
+
"darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-darwin-arm64'
|
|
42
42
|
},
|
|
43
43
|
genesis: {
|
|
44
44
|
genesis_url: 'https://raw.githubusercontent.com/cosmos/testnets/master/interchain-security/provider/provider-genesis.json'
|
|
45
45
|
},
|
|
46
46
|
sdk: {
|
|
47
47
|
type: 'cosmos',
|
|
48
|
-
version: 'v0.53.
|
|
49
|
-
tag: 'v0.53.
|
|
48
|
+
version: 'v0.53.3',
|
|
49
|
+
tag: 'v0.53.3'
|
|
50
50
|
},
|
|
51
51
|
ibc: {
|
|
52
52
|
type: 'go',
|