chain-registry 2.0.248 → 2.0.250

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.
@@ -204,6 +204,12 @@ const info = {
204
204
  url: 'https://akash.valopers.com/',
205
205
  txPage: 'https://akash.valopers.com/transactions/${txHash}',
206
206
  accountPage: 'https://akash.valopers.com/account/${accountAddress}'
207
+ },
208
+ {
209
+ kind: 'moon-runners',
210
+ url: 'https://moon-runners.net/akash/mainnet',
211
+ txPage: 'https://moon-runners.net/akash/mainnet/finder?search=${txHash}',
212
+ accountPage: 'https://moon-runners.net/akash/mainnet/finder?search=${accountAddress}'
207
213
  }
208
214
  ],
209
215
  images: [{
@@ -423,6 +423,12 @@ const info = {
423
423
  url: 'https://mainnet.whispernode.com/archway',
424
424
  txPage: 'https://mainnet.whispernode.com/archway/tx/${txHash}',
425
425
  accountPage: 'https://mainnet.whispernode.com/archway/account/${accountAddress}'
426
+ },
427
+ {
428
+ kind: 'moon-runners',
429
+ url: 'https://moon-runners.net/archway/mainnet',
430
+ txPage: 'https://moon-runners.net/archway/mainnet/finder?search=${txHash}',
431
+ accountPage: 'https://moon-runners.net/archway/mainnet/finder?search=${accountAddress}'
426
432
  }
427
433
  ],
428
434
  images: [{
@@ -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,
@@ -530,6 +530,12 @@ const info = {
530
530
  url: 'https://explorer.oshvank.xyz/AtomOne',
531
531
  txPage: 'https://explorer.oshvank.xyz/AtomOne/tx/${txHash}',
532
532
  accountPage: 'https://explorer.oshvank.xyz/AtomOne/account/${accountAddress}'
533
+ },
534
+ {
535
+ kind: 'moon-runners',
536
+ url: 'https://moon-runners.net/atomone/mainnet',
537
+ txPage: 'https://moon-runners.net/atomone/mainnet/finder?search=${txHash}',
538
+ accountPage: 'https://moon-runners.net/atomone/mainnet/finder?search=${accountAddress}'
533
539
  }
534
540
  ],
535
541
  images: [{
@@ -252,6 +252,12 @@ const info = {
252
252
  url: 'https://axelar.valopers.com/',
253
253
  txPage: 'https://axelar.valopers.com/transactions/${txHash}',
254
254
  accountPage: 'https://axelar.valopers.com/account/${accountAddress}'
255
+ },
256
+ {
257
+ kind: 'moon-runners',
258
+ url: 'https://moon-runners.net/axelar/mainnet',
259
+ txPage: 'https://moon-runners.net/axelar/mainnet/finder?search=${txHash}',
260
+ accountPage: 'https://moon-runners.net/axelar/mainnet/finder?search=${accountAddress}'
255
261
  }
256
262
  ],
257
263
  images: [{
@@ -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;
@@ -0,0 +1,4 @@
1
+ import _assetList from './asset-list';
2
+ import _chain from './chain';
3
+ export const assetList = _assetList;
4
+ export const chain = _chain;
@@ -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,
@@ -206,6 +206,12 @@ const info = {
206
206
  url: 'https://akash.valopers.com/',
207
207
  txPage: 'https://akash.valopers.com/transactions/${txHash}',
208
208
  accountPage: 'https://akash.valopers.com/account/${accountAddress}'
209
+ },
210
+ {
211
+ kind: 'moon-runners',
212
+ url: 'https://moon-runners.net/akash/mainnet',
213
+ txPage: 'https://moon-runners.net/akash/mainnet/finder?search=${txHash}',
214
+ accountPage: 'https://moon-runners.net/akash/mainnet/finder?search=${accountAddress}'
209
215
  }
210
216
  ],
211
217
  images: [{
@@ -425,6 +425,12 @@ const info = {
425
425
  url: 'https://mainnet.whispernode.com/archway',
426
426
  txPage: 'https://mainnet.whispernode.com/archway/tx/${txHash}',
427
427
  accountPage: 'https://mainnet.whispernode.com/archway/account/${accountAddress}'
428
+ },
429
+ {
430
+ kind: 'moon-runners',
431
+ url: 'https://moon-runners.net/archway/mainnet',
432
+ txPage: 'https://moon-runners.net/archway/mainnet/finder?search=${txHash}',
433
+ accountPage: 'https://moon-runners.net/archway/mainnet/finder?search=${accountAddress}'
428
434
  }
429
435
  ],
430
436
  images: [{
@@ -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,
@@ -532,6 +532,12 @@ const info = {
532
532
  url: 'https://explorer.oshvank.xyz/AtomOne',
533
533
  txPage: 'https://explorer.oshvank.xyz/AtomOne/tx/${txHash}',
534
534
  accountPage: 'https://explorer.oshvank.xyz/AtomOne/account/${accountAddress}'
535
+ },
536
+ {
537
+ kind: 'moon-runners',
538
+ url: 'https://moon-runners.net/atomone/mainnet',
539
+ txPage: 'https://moon-runners.net/atomone/mainnet/finder?search=${txHash}',
540
+ accountPage: 'https://moon-runners.net/atomone/mainnet/finder?search=${accountAddress}'
535
541
  }
536
542
  ],
537
543
  images: [{
@@ -254,6 +254,12 @@ const info = {
254
254
  url: 'https://axelar.valopers.com/',
255
255
  txPage: 'https://axelar.valopers.com/transactions/${txHash}',
256
256
  accountPage: 'https://axelar.valopers.com/account/${accountAddress}'
257
+ },
258
+ {
259
+ kind: 'moon-runners',
260
+ url: 'https://moon-runners.net/axelar/mainnet',
261
+ txPage: 'https://moon-runners.net/axelar/mainnet/finder?search=${txHash}',
262
+ accountPage: 'https://moon-runners.net/axelar/mainnet/finder?search=${accountAddress}'
257
263
  }
258
264
  ],
259
265
  images: [{
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -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,3 @@
1
+ import { Chain } from '@chain-registry/types';
2
+ declare const info: Chain;
3
+ export 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,2 @@
1
+ export declare const assetList: import("@chain-registry/types").AssetList;
2
+ export declare const chain: import("@chain-registry/types").Chain;
@@ -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.248",
3
+ "version": "2.0.250",
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.248"
32
+ "@chain-registry/types": "^2.0.250"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "e4269056cffc34ebce0b37520744a2c19770d8d1"
42
+ "gitHead": "d1898bdedf27fc76aa8fedeffabf113640826815"
43
43
  }