chain-registry 2.0.247 → 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/atomone/chain.js +11 -15
- 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/esm/mainnet/cosmoshub/chain.js +7 -7
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/irisnet/chain.js +5 -65
- package/esm/mainnet/kava/chain.js +12 -0
- package/esm/mainnet/osmosis/ibc-data.js +31 -0
- package/esm/mainnet/tail/ibc-data.js +32 -0
- package/esm/mainnet/tail/index.js +2 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/atomone/chain.js +11 -15
- 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/mainnet/cosmoshub/chain.js +7 -7
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/irisnet/chain.js +5 -65
- package/mainnet/kava/chain.js +12 -0
- package/mainnet/osmosis/ibc-data.js +31 -0
- package/mainnet/tail/ibc-data.d.ts +3 -0
- package/mainnet/tail/ibc-data.js +34 -0
- package/mainnet/tail/index.d.ts +1 -0
- package/mainnet/tail/index.js +3 -1
- 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,
|
|
@@ -34,32 +34,28 @@ const info = {
|
|
|
34
34
|
},
|
|
35
35
|
codebase: {
|
|
36
36
|
gitRepo: 'https://github.com/atomone-hub/atomone',
|
|
37
|
-
recommendedVersion: '
|
|
38
|
-
compatibleVersions: [
|
|
39
|
-
'v3.0.3',
|
|
40
|
-
'v3.2.0',
|
|
41
|
-
'v3.3.0'
|
|
42
|
-
],
|
|
37
|
+
recommendedVersion: 'v4.1.0',
|
|
38
|
+
compatibleVersions: ['v4.1.0', 'v4.0.1'],
|
|
43
39
|
binaries: {
|
|
44
|
-
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
45
|
-
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
46
|
-
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
47
|
-
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
48
|
-
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
49
|
-
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
40
|
+
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-linux-amd64',
|
|
41
|
+
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-linux-arm64',
|
|
42
|
+
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-darwin-amd64',
|
|
43
|
+
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-darwin-arm64',
|
|
44
|
+
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-windows-amd64.exe',
|
|
45
|
+
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-windows-arm64.exe'
|
|
50
46
|
},
|
|
51
47
|
genesis: {
|
|
52
48
|
genesisUrl: 'https://atomone.fra1.digitaloceanspaces.com/atomone-1/genesis.json'
|
|
53
49
|
},
|
|
54
50
|
consensus: {
|
|
55
51
|
type: 'cometbft',
|
|
56
|
-
version: 'v0.
|
|
52
|
+
version: 'v0.38.23'
|
|
57
53
|
},
|
|
58
54
|
sdk: {
|
|
59
55
|
type: 'cosmos',
|
|
60
|
-
version: 'v0.
|
|
56
|
+
version: 'v0.500.2'
|
|
61
57
|
},
|
|
62
|
-
tag: '
|
|
58
|
+
tag: 'v4.1.0'
|
|
63
59
|
},
|
|
64
60
|
logoURIs: {
|
|
65
61
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png',
|
|
@@ -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,
|
|
@@ -28,15 +28,15 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
gitRepo: 'https://github.com/cosmos/gaia',
|
|
31
|
-
recommendedVersion: 'v27.
|
|
32
|
-
compatibleVersions: ['v27.
|
|
31
|
+
recommendedVersion: 'v27.6.0',
|
|
32
|
+
compatibleVersions: ['v27.6.0'],
|
|
33
33
|
consensus: {
|
|
34
34
|
type: 'cometbft',
|
|
35
35
|
version: 'v0.38.23'
|
|
36
36
|
},
|
|
37
37
|
binaries: {
|
|
38
|
-
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.
|
|
39
|
-
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.
|
|
38
|
+
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.6.0/gaiad-v27.6.0-darwin-amd64',
|
|
39
|
+
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.6.0/gaiad-v27.6.0-linux-amd64'
|
|
40
40
|
},
|
|
41
41
|
genesis: {
|
|
42
42
|
genesisUrl: 'https://github.com/cosmos/mainnet/raw/master/genesis/genesis.cosmoshub-4.json.gz'
|
|
@@ -51,11 +51,11 @@ const info = {
|
|
|
51
51
|
version: 'v10.7.0'
|
|
52
52
|
},
|
|
53
53
|
cosmwasm: {
|
|
54
|
-
version: 'v0.60.
|
|
54
|
+
version: 'v0.60.8',
|
|
55
55
|
repo: 'https://github.com/CosmWasm/wasmd',
|
|
56
|
-
tag: 'v0.60.
|
|
56
|
+
tag: 'v0.60.8'
|
|
57
57
|
},
|
|
58
|
-
tag: 'v27.
|
|
58
|
+
tag: 'v27.6.0'
|
|
59
59
|
},
|
|
60
60
|
logoURIs: {
|
|
61
61
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -155,6 +155,7 @@ import * as _stride from './stride';
|
|
|
155
155
|
import * as _sunrise from './sunrise';
|
|
156
156
|
import * as _symphony from './symphony';
|
|
157
157
|
import * as _synternet from './synternet';
|
|
158
|
+
import * as _tail from './tail';
|
|
158
159
|
import * as _taketitan from './taketitan';
|
|
159
160
|
import * as _teritori from './teritori';
|
|
160
161
|
import * as _terra from './terra';
|
|
@@ -328,6 +329,7 @@ const ibcData = [
|
|
|
328
329
|
..._sunrise.ibcData,
|
|
329
330
|
..._symphony.ibcData,
|
|
330
331
|
..._synternet.ibcData,
|
|
332
|
+
..._tail.ibcData,
|
|
331
333
|
..._taketitan.ibcData,
|
|
332
334
|
..._teritori.ibcData,
|
|
333
335
|
..._terra.ibcData,
|
|
@@ -37,76 +37,16 @@ const info = {
|
|
|
37
37
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg'
|
|
38
38
|
},
|
|
39
39
|
apis: {
|
|
40
|
-
rpc: [
|
|
41
|
-
{
|
|
42
|
-
address: 'https://rpc-irisnet-01.stakeflow.io',
|
|
43
|
-
provider: 'Stakeflow'
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
address: 'https://irisnet-rpc.w3coins.io',
|
|
47
|
-
provider: 'w3coins'
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
address: 'https://iris-rpc.publicnode.com:443',
|
|
51
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
52
|
-
},
|
|
53
|
-
{
|
|
40
|
+
rpc: [{
|
|
54
41
|
address: 'https://mainnet-iris-rpc.konsortech.xyz',
|
|
55
42
|
provider: 'KonsorTech'
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
rest: [
|
|
59
|
-
{
|
|
60
|
-
address: 'https://api-irisnet-01.stakeflow.io',
|
|
61
|
-
provider: 'Stakeflow'
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
address: 'https://irisnet-api.w3coins.io',
|
|
65
|
-
provider: 'w3coins'
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
address: 'https://iris-rest.publicnode.com',
|
|
69
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
70
|
-
},
|
|
71
|
-
{
|
|
43
|
+
}],
|
|
44
|
+
rest: [{
|
|
72
45
|
address: 'https://mainnet-iris-api.konsortech.xyz',
|
|
73
46
|
provider: 'KonsorTech'
|
|
74
|
-
}
|
|
75
|
-
],
|
|
76
|
-
grpc: [
|
|
77
|
-
{
|
|
78
|
-
address: 'grpc-irisnet-01.stakeflow.io:1902',
|
|
79
|
-
provider: 'Stakeflow'
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
address: 'irisnet-grpc.w3coins.io:22690',
|
|
83
|
-
provider: 'w3coins'
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
address: 'iris-grpc.publicnode.com:443',
|
|
87
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
address: 'iris.grpc.kjnodes.com:443',
|
|
91
|
-
provider: 'kjnodes'
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
address: 'https://grpc-irisnet.nodeist.net',
|
|
95
|
-
provider: 'Nodeist'
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
address: 'iris-mainnet.grpc.l0vd.com:80',
|
|
99
|
-
provider: 'L0vd.com ❤️'
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
address: 'mainnet-iris.konsortech.xyz:30090',
|
|
103
|
-
provider: 'KonsorTech'
|
|
104
|
-
}
|
|
105
|
-
],
|
|
47
|
+
}],
|
|
48
|
+
grpc: [],
|
|
106
49
|
evmHttpJsonrpc: [{
|
|
107
|
-
address: 'https://iris-evm.publicnode.com',
|
|
108
|
-
provider: 'Allnodes.com ⚡️ Nodes & Staking'
|
|
109
|
-
}, {
|
|
110
50
|
address: 'https://mainnet-iris-evm.konsortech.xyz',
|
|
111
51
|
provider: 'KonsorTech'
|
|
112
52
|
}]
|
|
@@ -63,6 +63,10 @@ const info = {
|
|
|
63
63
|
{
|
|
64
64
|
address: 'https://kava-rpc.polkachu.com:443',
|
|
65
65
|
provider: 'Polkachu'
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
address: 'https://rpc.jjozzietech.com.au:9443/kava/tendermint/',
|
|
69
|
+
provider: 'jjozzietech'
|
|
66
70
|
}
|
|
67
71
|
],
|
|
68
72
|
rest: [
|
|
@@ -89,6 +93,10 @@ const info = {
|
|
|
89
93
|
{
|
|
90
94
|
address: 'https://kava.api.pocket.network',
|
|
91
95
|
provider: 'Pocket Network'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
address: 'https://rpc.jjozzietech.com.au:9443/kava/rest/',
|
|
99
|
+
provider: 'jjozzietech'
|
|
92
100
|
}
|
|
93
101
|
],
|
|
94
102
|
grpc: [
|
|
@@ -111,6 +119,10 @@ const info = {
|
|
|
111
119
|
{
|
|
112
120
|
address: 'https://grpc.kava.nodestake.org',
|
|
113
121
|
provider: 'NodeStake'
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
address: 'rpc.jjozzietech.com.au:9444',
|
|
125
|
+
provider: 'jjozzietech'
|
|
114
126
|
}
|
|
115
127
|
],
|
|
116
128
|
evmHttpJsonrpc: [
|
|
@@ -5404,6 +5404,37 @@ const info = [
|
|
|
5404
5404
|
}
|
|
5405
5405
|
}]
|
|
5406
5406
|
},
|
|
5407
|
+
{
|
|
5408
|
+
$schema: '../ibc_data.schema.json',
|
|
5409
|
+
chain1: {
|
|
5410
|
+
chainName: 'osmosis',
|
|
5411
|
+
chainId: 'osmosis-1',
|
|
5412
|
+
clientId: '07-tendermint-3731',
|
|
5413
|
+
connectionId: 'connection-11082'
|
|
5414
|
+
},
|
|
5415
|
+
chain2: {
|
|
5416
|
+
chainName: 'tail',
|
|
5417
|
+
chainId: 'tail-1',
|
|
5418
|
+
clientId: '07-tendermint-0',
|
|
5419
|
+
connectionId: 'connection-0'
|
|
5420
|
+
},
|
|
5421
|
+
channels: [{
|
|
5422
|
+
chain1: {
|
|
5423
|
+
channelId: 'channel-110566',
|
|
5424
|
+
portId: 'transfer'
|
|
5425
|
+
},
|
|
5426
|
+
chain2: {
|
|
5427
|
+
channelId: 'channel-0',
|
|
5428
|
+
portId: 'transfer'
|
|
5429
|
+
},
|
|
5430
|
+
ordering: 'unordered',
|
|
5431
|
+
version: 'ics20-1',
|
|
5432
|
+
tags: {
|
|
5433
|
+
preferred: true,
|
|
5434
|
+
status: 'ACTIVE'
|
|
5435
|
+
}
|
|
5436
|
+
}]
|
|
5437
|
+
},
|
|
5407
5438
|
{
|
|
5408
5439
|
$schema: '../ibc_data.schema.json',
|
|
5409
5440
|
chain1: {
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'osmosis',
|
|
5
|
+
chainId: 'osmosis-1',
|
|
6
|
+
clientId: '07-tendermint-3731',
|
|
7
|
+
connectionId: 'connection-11082'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'tail',
|
|
11
|
+
chainId: 'tail-1',
|
|
12
|
+
clientId: '07-tendermint-0',
|
|
13
|
+
connectionId: 'connection-0'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-110566',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-0',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true,
|
|
28
|
+
status: 'ACTIVE'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
export default info;
|
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,
|
package/mainnet/atomone/chain.js
CHANGED
|
@@ -36,32 +36,28 @@ const info = {
|
|
|
36
36
|
},
|
|
37
37
|
codebase: {
|
|
38
38
|
gitRepo: 'https://github.com/atomone-hub/atomone',
|
|
39
|
-
recommendedVersion: '
|
|
40
|
-
compatibleVersions: [
|
|
41
|
-
'v3.0.3',
|
|
42
|
-
'v3.2.0',
|
|
43
|
-
'v3.3.0'
|
|
44
|
-
],
|
|
39
|
+
recommendedVersion: 'v4.1.0',
|
|
40
|
+
compatibleVersions: ['v4.1.0', 'v4.0.1'],
|
|
45
41
|
binaries: {
|
|
46
|
-
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
47
|
-
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
48
|
-
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
49
|
-
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
50
|
-
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
51
|
-
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/
|
|
42
|
+
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-linux-amd64',
|
|
43
|
+
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-linux-arm64',
|
|
44
|
+
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-darwin-amd64',
|
|
45
|
+
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-darwin-arm64',
|
|
46
|
+
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-windows-amd64.exe',
|
|
47
|
+
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v4.1.0/atomoned-v4.1.0-windows-arm64.exe'
|
|
52
48
|
},
|
|
53
49
|
genesis: {
|
|
54
50
|
genesisUrl: 'https://atomone.fra1.digitaloceanspaces.com/atomone-1/genesis.json'
|
|
55
51
|
},
|
|
56
52
|
consensus: {
|
|
57
53
|
type: 'cometbft',
|
|
58
|
-
version: 'v0.
|
|
54
|
+
version: 'v0.38.23'
|
|
59
55
|
},
|
|
60
56
|
sdk: {
|
|
61
57
|
type: 'cosmos',
|
|
62
|
-
version: 'v0.
|
|
58
|
+
version: 'v0.500.2'
|
|
63
59
|
},
|
|
64
|
-
tag: '
|
|
60
|
+
tag: 'v4.1.0'
|
|
65
61
|
},
|
|
66
62
|
logoURIs: {
|
|
67
63
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png',
|
|
@@ -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,
|
|
@@ -30,15 +30,15 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
gitRepo: 'https://github.com/cosmos/gaia',
|
|
33
|
-
recommendedVersion: 'v27.
|
|
34
|
-
compatibleVersions: ['v27.
|
|
33
|
+
recommendedVersion: 'v27.6.0',
|
|
34
|
+
compatibleVersions: ['v27.6.0'],
|
|
35
35
|
consensus: {
|
|
36
36
|
type: 'cometbft',
|
|
37
37
|
version: 'v0.38.23'
|
|
38
38
|
},
|
|
39
39
|
binaries: {
|
|
40
|
-
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.
|
|
41
|
-
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.
|
|
40
|
+
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.6.0/gaiad-v27.6.0-darwin-amd64',
|
|
41
|
+
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v27.6.0/gaiad-v27.6.0-linux-amd64'
|
|
42
42
|
},
|
|
43
43
|
genesis: {
|
|
44
44
|
genesisUrl: 'https://github.com/cosmos/mainnet/raw/master/genesis/genesis.cosmoshub-4.json.gz'
|
|
@@ -53,11 +53,11 @@ const info = {
|
|
|
53
53
|
version: 'v10.7.0'
|
|
54
54
|
},
|
|
55
55
|
cosmwasm: {
|
|
56
|
-
version: 'v0.60.
|
|
56
|
+
version: 'v0.60.8',
|
|
57
57
|
repo: 'https://github.com/CosmWasm/wasmd',
|
|
58
|
-
tag: 'v0.60.
|
|
58
|
+
tag: 'v0.60.8'
|
|
59
59
|
},
|
|
60
|
-
tag: 'v27.
|
|
60
|
+
tag: 'v27.6.0'
|
|
61
61
|
},
|
|
62
62
|
logoURIs: {
|
|
63
63
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -180,6 +180,7 @@ const _stride = __importStar(require("./stride"));
|
|
|
180
180
|
const _sunrise = __importStar(require("./sunrise"));
|
|
181
181
|
const _symphony = __importStar(require("./symphony"));
|
|
182
182
|
const _synternet = __importStar(require("./synternet"));
|
|
183
|
+
const _tail = __importStar(require("./tail"));
|
|
183
184
|
const _taketitan = __importStar(require("./taketitan"));
|
|
184
185
|
const _teritori = __importStar(require("./teritori"));
|
|
185
186
|
const _terra = __importStar(require("./terra"));
|
|
@@ -353,6 +354,7 @@ const ibcData = [
|
|
|
353
354
|
..._sunrise.ibcData,
|
|
354
355
|
..._symphony.ibcData,
|
|
355
356
|
..._synternet.ibcData,
|
|
357
|
+
..._tail.ibcData,
|
|
356
358
|
..._taketitan.ibcData,
|
|
357
359
|
..._teritori.ibcData,
|
|
358
360
|
..._terra.ibcData,
|
package/mainnet/irisnet/chain.js
CHANGED
|
@@ -39,76 +39,16 @@ const info = {
|
|
|
39
39
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg'
|
|
40
40
|
},
|
|
41
41
|
apis: {
|
|
42
|
-
rpc: [
|
|
43
|
-
{
|
|
44
|
-
address: 'https://rpc-irisnet-01.stakeflow.io',
|
|
45
|
-
provider: 'Stakeflow'
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
address: 'https://irisnet-rpc.w3coins.io',
|
|
49
|
-
provider: 'w3coins'
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
address: 'https://iris-rpc.publicnode.com:443',
|
|
53
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
54
|
-
},
|
|
55
|
-
{
|
|
42
|
+
rpc: [{
|
|
56
43
|
address: 'https://mainnet-iris-rpc.konsortech.xyz',
|
|
57
44
|
provider: 'KonsorTech'
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
rest: [
|
|
61
|
-
{
|
|
62
|
-
address: 'https://api-irisnet-01.stakeflow.io',
|
|
63
|
-
provider: 'Stakeflow'
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
address: 'https://irisnet-api.w3coins.io',
|
|
67
|
-
provider: 'w3coins'
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
address: 'https://iris-rest.publicnode.com',
|
|
71
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
72
|
-
},
|
|
73
|
-
{
|
|
45
|
+
}],
|
|
46
|
+
rest: [{
|
|
74
47
|
address: 'https://mainnet-iris-api.konsortech.xyz',
|
|
75
48
|
provider: 'KonsorTech'
|
|
76
|
-
}
|
|
77
|
-
],
|
|
78
|
-
grpc: [
|
|
79
|
-
{
|
|
80
|
-
address: 'grpc-irisnet-01.stakeflow.io:1902',
|
|
81
|
-
provider: 'Stakeflow'
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
address: 'irisnet-grpc.w3coins.io:22690',
|
|
85
|
-
provider: 'w3coins'
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
address: 'iris-grpc.publicnode.com:443',
|
|
89
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
address: 'iris.grpc.kjnodes.com:443',
|
|
93
|
-
provider: 'kjnodes'
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
address: 'https://grpc-irisnet.nodeist.net',
|
|
97
|
-
provider: 'Nodeist'
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
address: 'iris-mainnet.grpc.l0vd.com:80',
|
|
101
|
-
provider: 'L0vd.com ❤️'
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
address: 'mainnet-iris.konsortech.xyz:30090',
|
|
105
|
-
provider: 'KonsorTech'
|
|
106
|
-
}
|
|
107
|
-
],
|
|
49
|
+
}],
|
|
50
|
+
grpc: [],
|
|
108
51
|
evmHttpJsonrpc: [{
|
|
109
|
-
address: 'https://iris-evm.publicnode.com',
|
|
110
|
-
provider: 'Allnodes.com ⚡️ Nodes & Staking'
|
|
111
|
-
}, {
|
|
112
52
|
address: 'https://mainnet-iris-evm.konsortech.xyz',
|
|
113
53
|
provider: 'KonsorTech'
|
|
114
54
|
}]
|
package/mainnet/kava/chain.js
CHANGED
|
@@ -65,6 +65,10 @@ const info = {
|
|
|
65
65
|
{
|
|
66
66
|
address: 'https://kava-rpc.polkachu.com:443',
|
|
67
67
|
provider: 'Polkachu'
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
address: 'https://rpc.jjozzietech.com.au:9443/kava/tendermint/',
|
|
71
|
+
provider: 'jjozzietech'
|
|
68
72
|
}
|
|
69
73
|
],
|
|
70
74
|
rest: [
|
|
@@ -91,6 +95,10 @@ const info = {
|
|
|
91
95
|
{
|
|
92
96
|
address: 'https://kava.api.pocket.network',
|
|
93
97
|
provider: 'Pocket Network'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
address: 'https://rpc.jjozzietech.com.au:9443/kava/rest/',
|
|
101
|
+
provider: 'jjozzietech'
|
|
94
102
|
}
|
|
95
103
|
],
|
|
96
104
|
grpc: [
|
|
@@ -113,6 +121,10 @@ const info = {
|
|
|
113
121
|
{
|
|
114
122
|
address: 'https://grpc.kava.nodestake.org',
|
|
115
123
|
provider: 'NodeStake'
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
address: 'rpc.jjozzietech.com.au:9444',
|
|
127
|
+
provider: 'jjozzietech'
|
|
116
128
|
}
|
|
117
129
|
],
|
|
118
130
|
evmHttpJsonrpc: [
|
|
@@ -5406,6 +5406,37 @@ const info = [
|
|
|
5406
5406
|
}
|
|
5407
5407
|
}]
|
|
5408
5408
|
},
|
|
5409
|
+
{
|
|
5410
|
+
$schema: '../ibc_data.schema.json',
|
|
5411
|
+
chain1: {
|
|
5412
|
+
chainName: 'osmosis',
|
|
5413
|
+
chainId: 'osmosis-1',
|
|
5414
|
+
clientId: '07-tendermint-3731',
|
|
5415
|
+
connectionId: 'connection-11082'
|
|
5416
|
+
},
|
|
5417
|
+
chain2: {
|
|
5418
|
+
chainName: 'tail',
|
|
5419
|
+
chainId: 'tail-1',
|
|
5420
|
+
clientId: '07-tendermint-0',
|
|
5421
|
+
connectionId: 'connection-0'
|
|
5422
|
+
},
|
|
5423
|
+
channels: [{
|
|
5424
|
+
chain1: {
|
|
5425
|
+
channelId: 'channel-110566',
|
|
5426
|
+
portId: 'transfer'
|
|
5427
|
+
},
|
|
5428
|
+
chain2: {
|
|
5429
|
+
channelId: 'channel-0',
|
|
5430
|
+
portId: 'transfer'
|
|
5431
|
+
},
|
|
5432
|
+
ordering: 'unordered',
|
|
5433
|
+
version: 'ics20-1',
|
|
5434
|
+
tags: {
|
|
5435
|
+
preferred: true,
|
|
5436
|
+
status: 'ACTIVE'
|
|
5437
|
+
}
|
|
5438
|
+
}]
|
|
5439
|
+
},
|
|
5409
5440
|
{
|
|
5410
5441
|
$schema: '../ibc_data.schema.json',
|
|
5411
5442
|
chain1: {
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'osmosis',
|
|
7
|
+
chainId: 'osmosis-1',
|
|
8
|
+
clientId: '07-tendermint-3731',
|
|
9
|
+
connectionId: 'connection-11082'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'tail',
|
|
13
|
+
chainId: 'tail-1',
|
|
14
|
+
clientId: '07-tendermint-0',
|
|
15
|
+
connectionId: 'connection-0'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-110566',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-0',
|
|
24
|
+
portId: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
preferred: true,
|
|
30
|
+
status: 'ACTIVE'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
}];
|
|
34
|
+
exports.default = info;
|
package/mainnet/tail/index.d.ts
CHANGED
package/mainnet/tail/index.js
CHANGED
|
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.chain = exports.assetList = void 0;
|
|
6
|
+
exports.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
7
|
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
9
10
|
exports.assetList = asset_list_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
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
|
}
|