chain-registry 2.0.248 → 2.0.249
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/axiome/asset-list.js +118 -0
- package/esm/mainnet/axiome/chain.js +64 -0
- package/esm/mainnet/axiome/index.js +4 -0
- package/esm/mainnet/chains.js +2 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/axiome/asset-list.d.ts +3 -0
- package/mainnet/axiome/asset-list.js +120 -0
- package/mainnet/axiome/chain.d.ts +3 -0
- package/mainnet/axiome/chain.js +66 -0
- package/mainnet/axiome/index.d.ts +2 -0
- package/mainnet/axiome/index.js +10 -0
- package/mainnet/chains.js +2 -0
- package/package.json +3 -3
|
@@ -21,6 +21,7 @@ import * as _assetmantle from './assetmantle';
|
|
|
21
21
|
import * as _atomone from './atomone';
|
|
22
22
|
import * as _aura from './aura';
|
|
23
23
|
import * as _axelar from './axelar';
|
|
24
|
+
import * as _axiome from './axiome';
|
|
24
25
|
import * as _axone from './axone';
|
|
25
26
|
import * as _babylon from './babylon';
|
|
26
27
|
import * as _bandchain from './bandchain';
|
|
@@ -249,6 +250,7 @@ const assetList = [
|
|
|
249
250
|
_atomone.assetList,
|
|
250
251
|
_aura.assetList,
|
|
251
252
|
_axelar.assetList,
|
|
253
|
+
_axiome.assetList,
|
|
252
254
|
_axone.assetList,
|
|
253
255
|
_babylon.assetList,
|
|
254
256
|
_bandchain.assetList,
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'axiome',
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
6
|
+
description: 'The native token of Axiome Chain',
|
|
7
|
+
typeAsset: 'sdk.coin',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'uaxm',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'axm',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
base: 'uaxm',
|
|
16
|
+
name: 'Axiome',
|
|
17
|
+
display: 'axm',
|
|
18
|
+
symbol: 'AXM',
|
|
19
|
+
logoURIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/axiome.png'
|
|
21
|
+
},
|
|
22
|
+
coingeckoId: 'axiome',
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/axiome.png'
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
description: 'Referral Energy Token of Axiome Chain. RET is minted one to one to the referral upline when a delegation is made, grants a discount on network fees, and determines the holder\'s share of the Community Pool.',
|
|
29
|
+
typeAsset: 'sdk.coin',
|
|
30
|
+
denomUnits: [{
|
|
31
|
+
denom: 'uret',
|
|
32
|
+
exponent: 0
|
|
33
|
+
}, {
|
|
34
|
+
denom: 'ret',
|
|
35
|
+
exponent: 6
|
|
36
|
+
}],
|
|
37
|
+
base: 'uret',
|
|
38
|
+
name: 'Referral Energy Token',
|
|
39
|
+
display: 'ret',
|
|
40
|
+
symbol: 'RET',
|
|
41
|
+
logoURIs: {
|
|
42
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/ret.png'
|
|
43
|
+
},
|
|
44
|
+
images: [{
|
|
45
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/ret.png'
|
|
46
|
+
}]
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
description: 'RIP, a cw20 token on Axiome Chain',
|
|
50
|
+
typeAsset: 'cw20',
|
|
51
|
+
address: 'axm1sj7zrll8n6rh07hgzqtjemeeane53a68fzqzsmnyntw95w4h7z6s24683a',
|
|
52
|
+
denomUnits: [{
|
|
53
|
+
denom: 'cw20:axm1sj7zrll8n6rh07hgzqtjemeeane53a68fzqzsmnyntw95w4h7z6s24683a',
|
|
54
|
+
exponent: 0
|
|
55
|
+
}, {
|
|
56
|
+
denom: 'rip',
|
|
57
|
+
exponent: 6
|
|
58
|
+
}],
|
|
59
|
+
base: 'cw20:axm1sj7zrll8n6rh07hgzqtjemeeane53a68fzqzsmnyntw95w4h7z6s24683a',
|
|
60
|
+
name: 'RIP',
|
|
61
|
+
display: 'rip',
|
|
62
|
+
symbol: 'RIP',
|
|
63
|
+
logoURIs: {
|
|
64
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/rip.png'
|
|
65
|
+
},
|
|
66
|
+
coingeckoId: 'rip',
|
|
67
|
+
images: [{
|
|
68
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/rip.png'
|
|
69
|
+
}]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
description: 'HUNT, a cw20 token on Axiome Chain',
|
|
73
|
+
typeAsset: 'cw20',
|
|
74
|
+
address: 'axm1cdup3cyz9c39c3gujmf02zkp2krr7ysxs2t6ev04kt2rw80vjf5s6l4ut7',
|
|
75
|
+
denomUnits: [{
|
|
76
|
+
denom: 'cw20:axm1cdup3cyz9c39c3gujmf02zkp2krr7ysxs2t6ev04kt2rw80vjf5s6l4ut7',
|
|
77
|
+
exponent: 0
|
|
78
|
+
}, {
|
|
79
|
+
denom: 'hunt',
|
|
80
|
+
exponent: 6
|
|
81
|
+
}],
|
|
82
|
+
base: 'cw20:axm1cdup3cyz9c39c3gujmf02zkp2krr7ysxs2t6ev04kt2rw80vjf5s6l4ut7',
|
|
83
|
+
name: 'HUNT',
|
|
84
|
+
display: 'hunt',
|
|
85
|
+
symbol: 'HUNT',
|
|
86
|
+
logoURIs: {
|
|
87
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/hunt.png'
|
|
88
|
+
},
|
|
89
|
+
coingeckoId: 'hunt-2',
|
|
90
|
+
images: [{
|
|
91
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/hunt.png'
|
|
92
|
+
}]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
description: 'Collexium, the utility token of the Collexium NFT marketplace on Axiome Chain',
|
|
96
|
+
typeAsset: 'cw20',
|
|
97
|
+
address: 'axm1hfaf96lt2y2dx2cr04svej0s0srqydhncxga5lh6zlrzw77d8qzqxday46',
|
|
98
|
+
denomUnits: [{
|
|
99
|
+
denom: 'cw20:axm1hfaf96lt2y2dx2cr04svej0s0srqydhncxga5lh6zlrzw77d8qzqxday46',
|
|
100
|
+
exponent: 0
|
|
101
|
+
}, {
|
|
102
|
+
denom: 'clx',
|
|
103
|
+
exponent: 6
|
|
104
|
+
}],
|
|
105
|
+
base: 'cw20:axm1hfaf96lt2y2dx2cr04svej0s0srqydhncxga5lh6zlrzw77d8qzqxday46',
|
|
106
|
+
name: 'Collexium',
|
|
107
|
+
display: 'clx',
|
|
108
|
+
symbol: 'CLX',
|
|
109
|
+
logoURIs: {
|
|
110
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/clx.png'
|
|
111
|
+
},
|
|
112
|
+
images: [{
|
|
113
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/clx.png'
|
|
114
|
+
}]
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
};
|
|
118
|
+
export default info;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'axiome',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
website: 'https://axiome.pro/',
|
|
7
|
+
prettyName: 'Axiome',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'axiome-1',
|
|
10
|
+
bech32Prefix: 'axm',
|
|
11
|
+
daemonName: 'axmd',
|
|
12
|
+
nodeHome: '$HOME/.axmd',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
14
|
+
slip44: 546,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'uaxm',
|
|
18
|
+
fixedMinGasPrice: 1,
|
|
19
|
+
lowGasPrice: 1,
|
|
20
|
+
averageGasPrice: 1.65,
|
|
21
|
+
highGasPrice: 7.4
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
codebase: {
|
|
25
|
+
gitRepo: 'https://github.com/axiome-pro/axm-node',
|
|
26
|
+
recommendedVersion: 'v2.2.1',
|
|
27
|
+
compatibleVersions: ['v2.2.1'],
|
|
28
|
+
consensus: {
|
|
29
|
+
type: 'cometbft',
|
|
30
|
+
version: 'v0.38.5'
|
|
31
|
+
},
|
|
32
|
+
sdk: {
|
|
33
|
+
type: 'cosmos',
|
|
34
|
+
version: 'v0.50.3'
|
|
35
|
+
},
|
|
36
|
+
cosmwasm: {
|
|
37
|
+
version: 'v0.50.0',
|
|
38
|
+
enabled: true
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
logoURIs: {
|
|
42
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/axiome.png'
|
|
43
|
+
},
|
|
44
|
+
apis: {
|
|
45
|
+
rpc: [{
|
|
46
|
+
address: 'https://api-chain.axiomechain.org',
|
|
47
|
+
provider: 'Axiome'
|
|
48
|
+
}],
|
|
49
|
+
rest: [{
|
|
50
|
+
address: 'https://axm-lcd.trickle.pro',
|
|
51
|
+
provider: 'Trickle'
|
|
52
|
+
}]
|
|
53
|
+
},
|
|
54
|
+
explorers: [{
|
|
55
|
+
kind: 'Axiome Explorer',
|
|
56
|
+
url: 'https://axiomechain.pro',
|
|
57
|
+
txPage: 'https://axiomechain.pro/transactions/${txHash}',
|
|
58
|
+
accountPage: 'https://axiomechain.pro/address/${accountAddress}'
|
|
59
|
+
}],
|
|
60
|
+
images: [{
|
|
61
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/axiome.png'
|
|
62
|
+
}]
|
|
63
|
+
};
|
|
64
|
+
export default info;
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -21,6 +21,7 @@ import * as _assetmantle from './assetmantle';
|
|
|
21
21
|
import * as _atomone from './atomone';
|
|
22
22
|
import * as _aura from './aura';
|
|
23
23
|
import * as _axelar from './axelar';
|
|
24
|
+
import * as _axiome from './axiome';
|
|
24
25
|
import * as _axone from './axone';
|
|
25
26
|
import * as _babylon from './babylon';
|
|
26
27
|
import * as _bandchain from './bandchain';
|
|
@@ -249,6 +250,7 @@ const chains = [
|
|
|
249
250
|
_atomone.chain,
|
|
250
251
|
_aura.chain,
|
|
251
252
|
_axelar.chain,
|
|
253
|
+
_axiome.chain,
|
|
252
254
|
_axone.chain,
|
|
253
255
|
_babylon.chain,
|
|
254
256
|
_bandchain.chain,
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -46,6 +46,7 @@ const _assetmantle = __importStar(require("./assetmantle"));
|
|
|
46
46
|
const _atomone = __importStar(require("./atomone"));
|
|
47
47
|
const _aura = __importStar(require("./aura"));
|
|
48
48
|
const _axelar = __importStar(require("./axelar"));
|
|
49
|
+
const _axiome = __importStar(require("./axiome"));
|
|
49
50
|
const _axone = __importStar(require("./axone"));
|
|
50
51
|
const _babylon = __importStar(require("./babylon"));
|
|
51
52
|
const _bandchain = __importStar(require("./bandchain"));
|
|
@@ -274,6 +275,7 @@ const assetList = [
|
|
|
274
275
|
_atomone.assetList,
|
|
275
276
|
_aura.assetList,
|
|
276
277
|
_axelar.assetList,
|
|
278
|
+
_axiome.assetList,
|
|
277
279
|
_axone.assetList,
|
|
278
280
|
_babylon.assetList,
|
|
279
281
|
_bandchain.assetList,
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'axiome',
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
8
|
+
description: 'The native token of Axiome Chain',
|
|
9
|
+
typeAsset: 'sdk.coin',
|
|
10
|
+
denomUnits: [{
|
|
11
|
+
denom: 'uaxm',
|
|
12
|
+
exponent: 0
|
|
13
|
+
}, {
|
|
14
|
+
denom: 'axm',
|
|
15
|
+
exponent: 6
|
|
16
|
+
}],
|
|
17
|
+
base: 'uaxm',
|
|
18
|
+
name: 'Axiome',
|
|
19
|
+
display: 'axm',
|
|
20
|
+
symbol: 'AXM',
|
|
21
|
+
logoURIs: {
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/axiome.png'
|
|
23
|
+
},
|
|
24
|
+
coingeckoId: 'axiome',
|
|
25
|
+
images: [{
|
|
26
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/axiome.png'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
description: 'Referral Energy Token of Axiome Chain. RET is minted one to one to the referral upline when a delegation is made, grants a discount on network fees, and determines the holder\'s share of the Community Pool.',
|
|
31
|
+
typeAsset: 'sdk.coin',
|
|
32
|
+
denomUnits: [{
|
|
33
|
+
denom: 'uret',
|
|
34
|
+
exponent: 0
|
|
35
|
+
}, {
|
|
36
|
+
denom: 'ret',
|
|
37
|
+
exponent: 6
|
|
38
|
+
}],
|
|
39
|
+
base: 'uret',
|
|
40
|
+
name: 'Referral Energy Token',
|
|
41
|
+
display: 'ret',
|
|
42
|
+
symbol: 'RET',
|
|
43
|
+
logoURIs: {
|
|
44
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/ret.png'
|
|
45
|
+
},
|
|
46
|
+
images: [{
|
|
47
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/ret.png'
|
|
48
|
+
}]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
description: 'RIP, a cw20 token on Axiome Chain',
|
|
52
|
+
typeAsset: 'cw20',
|
|
53
|
+
address: 'axm1sj7zrll8n6rh07hgzqtjemeeane53a68fzqzsmnyntw95w4h7z6s24683a',
|
|
54
|
+
denomUnits: [{
|
|
55
|
+
denom: 'cw20:axm1sj7zrll8n6rh07hgzqtjemeeane53a68fzqzsmnyntw95w4h7z6s24683a',
|
|
56
|
+
exponent: 0
|
|
57
|
+
}, {
|
|
58
|
+
denom: 'rip',
|
|
59
|
+
exponent: 6
|
|
60
|
+
}],
|
|
61
|
+
base: 'cw20:axm1sj7zrll8n6rh07hgzqtjemeeane53a68fzqzsmnyntw95w4h7z6s24683a',
|
|
62
|
+
name: 'RIP',
|
|
63
|
+
display: 'rip',
|
|
64
|
+
symbol: 'RIP',
|
|
65
|
+
logoURIs: {
|
|
66
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/rip.png'
|
|
67
|
+
},
|
|
68
|
+
coingeckoId: 'rip',
|
|
69
|
+
images: [{
|
|
70
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/rip.png'
|
|
71
|
+
}]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
description: 'HUNT, a cw20 token on Axiome Chain',
|
|
75
|
+
typeAsset: 'cw20',
|
|
76
|
+
address: 'axm1cdup3cyz9c39c3gujmf02zkp2krr7ysxs2t6ev04kt2rw80vjf5s6l4ut7',
|
|
77
|
+
denomUnits: [{
|
|
78
|
+
denom: 'cw20:axm1cdup3cyz9c39c3gujmf02zkp2krr7ysxs2t6ev04kt2rw80vjf5s6l4ut7',
|
|
79
|
+
exponent: 0
|
|
80
|
+
}, {
|
|
81
|
+
denom: 'hunt',
|
|
82
|
+
exponent: 6
|
|
83
|
+
}],
|
|
84
|
+
base: 'cw20:axm1cdup3cyz9c39c3gujmf02zkp2krr7ysxs2t6ev04kt2rw80vjf5s6l4ut7',
|
|
85
|
+
name: 'HUNT',
|
|
86
|
+
display: 'hunt',
|
|
87
|
+
symbol: 'HUNT',
|
|
88
|
+
logoURIs: {
|
|
89
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/hunt.png'
|
|
90
|
+
},
|
|
91
|
+
coingeckoId: 'hunt-2',
|
|
92
|
+
images: [{
|
|
93
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/hunt.png'
|
|
94
|
+
}]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
description: 'Collexium, the utility token of the Collexium NFT marketplace on Axiome Chain',
|
|
98
|
+
typeAsset: 'cw20',
|
|
99
|
+
address: 'axm1hfaf96lt2y2dx2cr04svej0s0srqydhncxga5lh6zlrzw77d8qzqxday46',
|
|
100
|
+
denomUnits: [{
|
|
101
|
+
denom: 'cw20:axm1hfaf96lt2y2dx2cr04svej0s0srqydhncxga5lh6zlrzw77d8qzqxday46',
|
|
102
|
+
exponent: 0
|
|
103
|
+
}, {
|
|
104
|
+
denom: 'clx',
|
|
105
|
+
exponent: 6
|
|
106
|
+
}],
|
|
107
|
+
base: 'cw20:axm1hfaf96lt2y2dx2cr04svej0s0srqydhncxga5lh6zlrzw77d8qzqxday46',
|
|
108
|
+
name: 'Collexium',
|
|
109
|
+
display: 'clx',
|
|
110
|
+
symbol: 'CLX',
|
|
111
|
+
logoURIs: {
|
|
112
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/clx.png'
|
|
113
|
+
},
|
|
114
|
+
images: [{
|
|
115
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/clx.png'
|
|
116
|
+
}]
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
};
|
|
120
|
+
exports.default = info;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'axiome',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
website: 'https://axiome.pro/',
|
|
9
|
+
prettyName: 'Axiome',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'axiome-1',
|
|
12
|
+
bech32Prefix: 'axm',
|
|
13
|
+
daemonName: 'axmd',
|
|
14
|
+
nodeHome: '$HOME/.axmd',
|
|
15
|
+
keyAlgos: ['secp256k1'],
|
|
16
|
+
slip44: 546,
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'uaxm',
|
|
20
|
+
fixedMinGasPrice: 1,
|
|
21
|
+
lowGasPrice: 1,
|
|
22
|
+
averageGasPrice: 1.65,
|
|
23
|
+
highGasPrice: 7.4
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
codebase: {
|
|
27
|
+
gitRepo: 'https://github.com/axiome-pro/axm-node',
|
|
28
|
+
recommendedVersion: 'v2.2.1',
|
|
29
|
+
compatibleVersions: ['v2.2.1'],
|
|
30
|
+
consensus: {
|
|
31
|
+
type: 'cometbft',
|
|
32
|
+
version: 'v0.38.5'
|
|
33
|
+
},
|
|
34
|
+
sdk: {
|
|
35
|
+
type: 'cosmos',
|
|
36
|
+
version: 'v0.50.3'
|
|
37
|
+
},
|
|
38
|
+
cosmwasm: {
|
|
39
|
+
version: 'v0.50.0',
|
|
40
|
+
enabled: true
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
logoURIs: {
|
|
44
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/axiome.png'
|
|
45
|
+
},
|
|
46
|
+
apis: {
|
|
47
|
+
rpc: [{
|
|
48
|
+
address: 'https://api-chain.axiomechain.org',
|
|
49
|
+
provider: 'Axiome'
|
|
50
|
+
}],
|
|
51
|
+
rest: [{
|
|
52
|
+
address: 'https://axm-lcd.trickle.pro',
|
|
53
|
+
provider: 'Trickle'
|
|
54
|
+
}]
|
|
55
|
+
},
|
|
56
|
+
explorers: [{
|
|
57
|
+
kind: 'Axiome Explorer',
|
|
58
|
+
url: 'https://axiomechain.pro',
|
|
59
|
+
txPage: 'https://axiomechain.pro/transactions/${txHash}',
|
|
60
|
+
accountPage: 'https://axiomechain.pro/address/${accountAddress}'
|
|
61
|
+
}],
|
|
62
|
+
images: [{
|
|
63
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axiome/images/axiome.png'
|
|
64
|
+
}]
|
|
65
|
+
};
|
|
66
|
+
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/mainnet/chains.js
CHANGED
|
@@ -46,6 +46,7 @@ const _assetmantle = __importStar(require("./assetmantle"));
|
|
|
46
46
|
const _atomone = __importStar(require("./atomone"));
|
|
47
47
|
const _aura = __importStar(require("./aura"));
|
|
48
48
|
const _axelar = __importStar(require("./axelar"));
|
|
49
|
+
const _axiome = __importStar(require("./axiome"));
|
|
49
50
|
const _axone = __importStar(require("./axone"));
|
|
50
51
|
const _babylon = __importStar(require("./babylon"));
|
|
51
52
|
const _bandchain = __importStar(require("./bandchain"));
|
|
@@ -274,6 +275,7 @@ const chains = [
|
|
|
274
275
|
_atomone.chain,
|
|
275
276
|
_aura.chain,
|
|
276
277
|
_axelar.chain,
|
|
278
|
+
_axiome.chain,
|
|
277
279
|
_axone.chain,
|
|
278
280
|
_babylon.chain,
|
|
279
281
|
_bandchain.chain,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.249",
|
|
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.249"
|
|
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": "671a608a29402195b53c1f6b06df51cfe887ab2d"
|
|
43
43
|
}
|