chain-registry 2.0.11 → 2.0.13
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 +4 -0
- package/esm/mainnet/bitsong/chain.js +7 -7
- package/esm/mainnet/buycex/asset-list.js +28 -0
- package/esm/mainnet/buycex/chain.js +49 -0
- package/esm/{testnet/symphonytestnet3 → mainnet/buycex}/index.js +0 -2
- package/esm/mainnet/chains.js +4 -0
- package/esm/mainnet/manifest/asset-list.js +2 -1
- package/esm/mainnet/manifest/chain.js +3 -3
- package/esm/{testnet/symphonytestnet3 → mainnet/symphony}/asset-list.js +16 -19
- package/esm/{testnet/symphonytestnet3 → mainnet/symphony}/chain.js +23 -23
- package/esm/mainnet/symphony/index.js +4 -0
- package/esm/mainnet/xion/chain.js +6 -6
- package/esm/noncosmos/ibc-data.js +2 -0
- package/esm/noncosmos/symphonytestnet3/index.js +2 -0
- package/esm/testnet/asset-lists.js +2 -2
- package/esm/testnet/chains.js +2 -2
- package/esm/testnet/hippoprotocoltestnet/ibc-data.js +30 -0
- package/esm/testnet/hippoprotocoltestnet/index.js +2 -0
- package/esm/testnet/ibc-data.js +2 -2
- package/esm/testnet/osmosistestnet/ibc-data.js +29 -0
- package/esm/testnet/safrochaintestnet/asset-list.js +38 -0
- package/esm/testnet/safrochaintestnet/chain.js +63 -0
- package/esm/testnet/safrochaintestnet/index.js +4 -0
- package/esm/testnet/symphonytestnet/asset-list.js +14 -17
- package/esm/testnet/symphonytestnet/chain.js +2 -2
- package/esm/testnet/xiontestnet2/asset-list.js +2 -1
- package/esm/testnet/xiontestnet2/chain.js +6 -6
- package/mainnet/asset-lists.js +4 -0
- package/mainnet/bitsong/chain.js +7 -7
- package/mainnet/buycex/asset-list.js +30 -0
- package/mainnet/buycex/chain.js +51 -0
- package/{testnet/symphonytestnet3 → mainnet/buycex}/index.d.ts +0 -1
- package/{testnet/symphonytestnet3 → mainnet/buycex}/index.js +1 -3
- package/mainnet/chains.js +4 -0
- package/mainnet/manifest/asset-list.js +2 -1
- package/mainnet/manifest/chain.js +3 -3
- package/mainnet/symphony/asset-list.d.ts +3 -0
- package/{testnet/symphonytestnet3 → mainnet/symphony}/asset-list.js +16 -19
- package/mainnet/symphony/chain.d.ts +3 -0
- package/{testnet/symphonytestnet3 → mainnet/symphony}/chain.js +23 -23
- package/mainnet/symphony/index.d.ts +2 -0
- package/mainnet/symphony/index.js +10 -0
- package/mainnet/xion/chain.js +6 -6
- package/noncosmos/ibc-data.js +2 -0
- package/noncosmos/symphonytestnet3/index.d.ts +1 -0
- package/noncosmos/symphonytestnet3/index.js +8 -0
- package/package.json +3 -3
- package/testnet/asset-lists.js +2 -2
- package/testnet/chains.js +2 -2
- package/testnet/hippoprotocoltestnet/ibc-data.d.ts +3 -0
- package/testnet/hippoprotocoltestnet/ibc-data.js +32 -0
- package/testnet/hippoprotocoltestnet/index.d.ts +1 -0
- package/testnet/hippoprotocoltestnet/index.js +3 -1
- package/testnet/ibc-data.js +2 -2
- package/testnet/osmosistestnet/ibc-data.js +29 -0
- package/testnet/safrochaintestnet/asset-list.d.ts +3 -0
- package/testnet/safrochaintestnet/asset-list.js +40 -0
- package/testnet/safrochaintestnet/chain.d.ts +3 -0
- package/testnet/safrochaintestnet/chain.js +65 -0
- package/testnet/safrochaintestnet/index.d.ts +2 -0
- package/testnet/safrochaintestnet/index.js +10 -0
- package/testnet/symphonytestnet/asset-list.js +14 -17
- package/testnet/symphonytestnet/chain.js +2 -2
- package/testnet/xiontestnet2/asset-list.js +2 -1
- package/testnet/xiontestnet2/chain.js +6 -6
- /package/esm/{testnet → noncosmos}/symphonytestnet3/ibc-data.js +0 -0
- /package/{testnet/symphonytestnet3 → mainnet/buycex}/asset-list.d.ts +0 -0
- /package/{testnet/symphonytestnet3 → mainnet/buycex}/chain.d.ts +0 -0
- /package/{testnet → noncosmos}/symphonytestnet3/ibc-data.d.ts +0 -0
- /package/{testnet → noncosmos}/symphonytestnet3/ibc-data.js +0 -0
|
@@ -30,6 +30,7 @@ import * as _bluechip from './bluechip';
|
|
|
30
30
|
import * as _bluzelle from './bluzelle';
|
|
31
31
|
import * as _bostrom from './bostrom';
|
|
32
32
|
import * as _bouachain from './bouachain';
|
|
33
|
+
import * as _buycex from './buycex';
|
|
33
34
|
import * as _canto from './canto';
|
|
34
35
|
import * as _carbon from './carbon';
|
|
35
36
|
import * as _celestia from './celestia';
|
|
@@ -183,6 +184,7 @@ import * as _starname from './starname';
|
|
|
183
184
|
import * as _stratos from './stratos';
|
|
184
185
|
import * as _stride from './stride';
|
|
185
186
|
import * as _sunrise from './sunrise';
|
|
187
|
+
import * as _symphony from './symphony';
|
|
186
188
|
import * as _synternet from './synternet';
|
|
187
189
|
import * as _taketitan from './taketitan';
|
|
188
190
|
import * as _tenet from './tenet';
|
|
@@ -237,6 +239,7 @@ const assetList = [
|
|
|
237
239
|
_bluzelle.assetList,
|
|
238
240
|
_bostrom.assetList,
|
|
239
241
|
_bouachain.assetList,
|
|
242
|
+
_buycex.assetList,
|
|
240
243
|
_canto.assetList,
|
|
241
244
|
_carbon.assetList,
|
|
242
245
|
_celestia.assetList,
|
|
@@ -390,6 +393,7 @@ const assetList = [
|
|
|
390
393
|
_stratos.assetList,
|
|
391
394
|
_stride.assetList,
|
|
392
395
|
_sunrise.assetList,
|
|
396
|
+
_symphony.assetList,
|
|
393
397
|
_synternet.assetList,
|
|
394
398
|
_taketitan.assetList,
|
|
395
399
|
_tenet.assetList,
|
|
@@ -13,25 +13,25 @@ const info = {
|
|
|
13
13
|
nodeHome: '$HOME/.bitsongd',
|
|
14
14
|
codebase: {
|
|
15
15
|
gitRepo: 'https://github.com/bitsongofficial/go-bitsong',
|
|
16
|
-
recommendedVersion: 'v0.
|
|
17
|
-
compatibleVersions: ['v0.
|
|
16
|
+
recommendedVersion: 'v0.23.0',
|
|
17
|
+
compatibleVersions: ['v0.23.0'],
|
|
18
18
|
binaries: {
|
|
19
|
-
"linux/amd64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.
|
|
20
|
-
"linux/arm64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.
|
|
19
|
+
"linux/amd64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.23.0/bitsongd-linux-amd64',
|
|
20
|
+
"linux/arm64": 'https://github.com/bitsongofficial/go-bitsong/releases/download/v0.23.0/bitsongd-linux-arm64'
|
|
21
21
|
},
|
|
22
22
|
genesis: {
|
|
23
23
|
genesisUrl: 'https://raw.githubusercontent.com/bitsongofficial/networks/master/bitsong-2b/genesis.json'
|
|
24
24
|
},
|
|
25
25
|
sdk: {
|
|
26
26
|
type: 'cosmos',
|
|
27
|
-
version: '0.
|
|
27
|
+
version: '0.53.0'
|
|
28
28
|
},
|
|
29
29
|
ibc: {
|
|
30
30
|
type: 'go',
|
|
31
|
-
version: '
|
|
31
|
+
version: 'v8.7.0'
|
|
32
32
|
},
|
|
33
33
|
cosmwasm: {
|
|
34
|
-
version: '0.
|
|
34
|
+
version: '0.53.3',
|
|
35
35
|
enabled: true
|
|
36
36
|
}
|
|
37
37
|
},
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'buycex',
|
|
4
|
+
assets: [{
|
|
5
|
+
typeAsset: 'sdk.coin',
|
|
6
|
+
description: 'Buycex is the native token of the BuyCex Infinity Chain.',
|
|
7
|
+
denomUnits: [{
|
|
8
|
+
denom: 'ubcx',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'BCX',
|
|
12
|
+
exponent: 18
|
|
13
|
+
}],
|
|
14
|
+
base: 'ubcx',
|
|
15
|
+
name: 'Buycex',
|
|
16
|
+
display: 'BCX',
|
|
17
|
+
symbol: 'BCX',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/buycex/images/bcx.png'
|
|
20
|
+
},
|
|
21
|
+
keywords: [
|
|
22
|
+
'native',
|
|
23
|
+
'staking',
|
|
24
|
+
'utility'
|
|
25
|
+
]
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
export default info;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'buycex',
|
|
4
|
+
chainId: 'bcx_323-1',
|
|
5
|
+
prettyName: 'BuyCex Infinity Chain',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
website: 'https://infinity.buycex.com',
|
|
9
|
+
bech32Prefix: 'bcx',
|
|
10
|
+
daemonName: 'bcxd',
|
|
11
|
+
nodeHome: '$HOME/.bcxd',
|
|
12
|
+
chainType: 'cosmos',
|
|
13
|
+
slip44: 60,
|
|
14
|
+
codebase: {
|
|
15
|
+
genesis: {
|
|
16
|
+
genesisUrl: 'https://buycex.net/genesis.json'
|
|
17
|
+
},
|
|
18
|
+
gitRepo: 'https://github.com/cosvmlabs/buycex-chain',
|
|
19
|
+
recommendedVersion: 'v1.0.0',
|
|
20
|
+
compatibleVersions: ['v1.0.0'],
|
|
21
|
+
sdk: {
|
|
22
|
+
type: 'cosmos',
|
|
23
|
+
version: 'v0.45.16'
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
apis: {
|
|
27
|
+
rpc: [{
|
|
28
|
+
address: 'https://endpoint.buycex.net',
|
|
29
|
+
provider: 'buycex'
|
|
30
|
+
}],
|
|
31
|
+
rest: [{
|
|
32
|
+
address: 'https://api.buycex.net',
|
|
33
|
+
provider: 'buycex'
|
|
34
|
+
}],
|
|
35
|
+
grpc: [{
|
|
36
|
+
address: 'https://grpc.buycex.net',
|
|
37
|
+
provider: 'buycex'
|
|
38
|
+
}]
|
|
39
|
+
},
|
|
40
|
+
explorers: [{
|
|
41
|
+
kind: 'pingpub',
|
|
42
|
+
url: 'https://cosmos.buycex.net',
|
|
43
|
+
txPage: 'https://cosmos.buycex.net/tx/${txHash}'
|
|
44
|
+
}],
|
|
45
|
+
logoURIs: {
|
|
46
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/buycex/images/bcx.png'
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
export default info;
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -30,6 +30,7 @@ import * as _bluechip from './bluechip';
|
|
|
30
30
|
import * as _bluzelle from './bluzelle';
|
|
31
31
|
import * as _bostrom from './bostrom';
|
|
32
32
|
import * as _bouachain from './bouachain';
|
|
33
|
+
import * as _buycex from './buycex';
|
|
33
34
|
import * as _canto from './canto';
|
|
34
35
|
import * as _carbon from './carbon';
|
|
35
36
|
import * as _celestia from './celestia';
|
|
@@ -183,6 +184,7 @@ import * as _starname from './starname';
|
|
|
183
184
|
import * as _stratos from './stratos';
|
|
184
185
|
import * as _stride from './stride';
|
|
185
186
|
import * as _sunrise from './sunrise';
|
|
187
|
+
import * as _symphony from './symphony';
|
|
186
188
|
import * as _synternet from './synternet';
|
|
187
189
|
import * as _taketitan from './taketitan';
|
|
188
190
|
import * as _tenet from './tenet';
|
|
@@ -237,6 +239,7 @@ const chains = [
|
|
|
237
239
|
_bluzelle.chain,
|
|
238
240
|
_bostrom.chain,
|
|
239
241
|
_bouachain.chain,
|
|
242
|
+
_buycex.chain,
|
|
240
243
|
_canto.chain,
|
|
241
244
|
_carbon.chain,
|
|
242
245
|
_celestia.chain,
|
|
@@ -390,6 +393,7 @@ const chains = [
|
|
|
390
393
|
_stratos.chain,
|
|
391
394
|
_stride.chain,
|
|
392
395
|
_sunrise.chain,
|
|
396
|
+
_symphony.chain,
|
|
393
397
|
_synternet.chain,
|
|
394
398
|
_taketitan.chain,
|
|
395
399
|
_tenet.chain,
|
|
@@ -27,10 +27,10 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
gitRepo: 'https://github.com/liftedinit/manifest-ledger',
|
|
30
|
-
recommendedVersion: 'v1.0.
|
|
31
|
-
compatibleVersions: ['v1.0.3'],
|
|
30
|
+
recommendedVersion: 'v1.0.5',
|
|
31
|
+
compatibleVersions: ['v1.0.3', 'v1.0.5'],
|
|
32
32
|
binaries: {
|
|
33
|
-
"linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.
|
|
33
|
+
"linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.5/manifest-ledger-v1.0.5-linux-amd64.tar.gz'
|
|
34
34
|
},
|
|
35
35
|
genesis: {
|
|
36
36
|
genesisUrl: 'https://nodes.liftedinit.app/manifest/rpc/genesis?'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const info = {
|
|
2
|
-
$schema: '
|
|
3
|
-
chainName: '
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'symphony',
|
|
4
4
|
assets: [
|
|
5
5
|
{
|
|
6
6
|
description: 'The native token of Symphony',
|
|
@@ -19,10 +19,10 @@ const info = {
|
|
|
19
19
|
display: 'mld',
|
|
20
20
|
symbol: 'MLD',
|
|
21
21
|
logoURIs: {
|
|
22
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/mld.png'
|
|
23
23
|
},
|
|
24
24
|
images: [{
|
|
25
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/mld.png'
|
|
26
26
|
}]
|
|
27
27
|
},
|
|
28
28
|
{
|
|
@@ -30,11 +30,10 @@ const info = {
|
|
|
30
30
|
denomUnits: [{
|
|
31
31
|
denom: 'uusd',
|
|
32
32
|
exponent: 0,
|
|
33
|
-
aliases: []
|
|
33
|
+
aliases: ['microusd']
|
|
34
34
|
}, {
|
|
35
35
|
denom: 'husd',
|
|
36
|
-
exponent: 6
|
|
37
|
-
aliases: ['harmony USD']
|
|
36
|
+
exponent: 6
|
|
38
37
|
}],
|
|
39
38
|
typeAsset: 'sdk.coin',
|
|
40
39
|
base: 'uusd',
|
|
@@ -42,10 +41,10 @@ const info = {
|
|
|
42
41
|
display: 'husd',
|
|
43
42
|
symbol: 'HUSD',
|
|
44
43
|
logoURIs: {
|
|
45
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
44
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/husd.png'
|
|
46
45
|
},
|
|
47
46
|
images: [{
|
|
48
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
47
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/husd.png'
|
|
49
48
|
}]
|
|
50
49
|
},
|
|
51
50
|
{
|
|
@@ -53,11 +52,10 @@ const info = {
|
|
|
53
52
|
denomUnits: [{
|
|
54
53
|
denom: 'ukhd',
|
|
55
54
|
exponent: 0,
|
|
56
|
-
aliases: []
|
|
55
|
+
aliases: ['microhkd']
|
|
57
56
|
}, {
|
|
58
57
|
denom: 'hkhd',
|
|
59
|
-
exponent: 6
|
|
60
|
-
aliases: ['harmony HKD']
|
|
58
|
+
exponent: 6
|
|
61
59
|
}],
|
|
62
60
|
typeAsset: 'sdk.coin',
|
|
63
61
|
base: 'ukhd',
|
|
@@ -65,10 +63,10 @@ const info = {
|
|
|
65
63
|
display: 'hkhd',
|
|
66
64
|
symbol: 'HKHD',
|
|
67
65
|
logoURIs: {
|
|
68
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
66
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/hhkd.png'
|
|
69
67
|
},
|
|
70
68
|
images: [{
|
|
71
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
69
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/hhkd.png'
|
|
72
70
|
}]
|
|
73
71
|
},
|
|
74
72
|
{
|
|
@@ -76,11 +74,10 @@ const info = {
|
|
|
76
74
|
denomUnits: [{
|
|
77
75
|
denom: 'uvnd',
|
|
78
76
|
exponent: 0,
|
|
79
|
-
aliases: []
|
|
77
|
+
aliases: ['microvnd']
|
|
80
78
|
}, {
|
|
81
79
|
denom: 'hvnd',
|
|
82
|
-
exponent: 6
|
|
83
|
-
aliases: ['harmony VND']
|
|
80
|
+
exponent: 6
|
|
84
81
|
}],
|
|
85
82
|
typeAsset: 'sdk.coin',
|
|
86
83
|
base: 'uvnd',
|
|
@@ -88,10 +85,10 @@ const info = {
|
|
|
88
85
|
display: 'hvnd',
|
|
89
86
|
symbol: 'HVND',
|
|
90
87
|
logoURIs: {
|
|
91
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
88
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/hvnd.png'
|
|
92
89
|
},
|
|
93
90
|
images: [{
|
|
94
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
91
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/hvnd.png'
|
|
95
92
|
}]
|
|
96
93
|
}
|
|
97
94
|
]
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
const info = {
|
|
2
|
-
$schema: '
|
|
3
|
-
chainName: '
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'symphony',
|
|
4
4
|
status: 'live',
|
|
5
|
-
networkType: '
|
|
6
|
-
prettyName: 'Symphony
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
prettyName: 'Symphony',
|
|
7
7
|
chainType: 'cosmos',
|
|
8
|
-
chainId: 'symphony-
|
|
8
|
+
chainId: 'symphony-1',
|
|
9
9
|
bech32Prefix: 'symphony',
|
|
10
10
|
daemonName: 'symphonyd',
|
|
11
11
|
nodeHome: '$HOME/.symphonyd',
|
|
@@ -15,9 +15,9 @@ const info = {
|
|
|
15
15
|
feeTokens: [{
|
|
16
16
|
denom: 'note',
|
|
17
17
|
fixedMinGasPrice: 0,
|
|
18
|
-
lowGasPrice: 0.
|
|
19
|
-
averageGasPrice: 0.
|
|
20
|
-
highGasPrice: 0.
|
|
18
|
+
lowGasPrice: 0.00025,
|
|
19
|
+
averageGasPrice: 0.0025,
|
|
20
|
+
highGasPrice: 0.004
|
|
21
21
|
}]
|
|
22
22
|
},
|
|
23
23
|
staking: {
|
|
@@ -27,52 +27,52 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
gitRepo: 'https://github.com/Orchestra-Labs/symphony',
|
|
30
|
-
recommendedVersion: '
|
|
31
|
-
compatibleVersions: ['
|
|
30
|
+
recommendedVersion: 'v1.0.0',
|
|
31
|
+
compatibleVersions: ['v1.0.0'],
|
|
32
32
|
consensus: {
|
|
33
|
-
type: '
|
|
34
|
-
version: '0.
|
|
33
|
+
type: 'cometbft',
|
|
34
|
+
version: '0.38.11'
|
|
35
35
|
},
|
|
36
36
|
genesis: {
|
|
37
|
-
genesisUrl: 'https://
|
|
37
|
+
genesisUrl: 'https://raw.githubusercontent.com/Orchestra-Labs/symphony/refs/heads/main/networks/symphony-1/genesis.json'
|
|
38
38
|
},
|
|
39
39
|
sdk: {
|
|
40
40
|
type: 'cosmos',
|
|
41
|
-
version: '0.
|
|
41
|
+
version: '0.50.9'
|
|
42
42
|
},
|
|
43
43
|
cosmwasm: {
|
|
44
|
-
version: '0.
|
|
44
|
+
version: '0.53.0',
|
|
45
45
|
enabled: true
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
apis: {
|
|
49
49
|
rpc: [{
|
|
50
|
-
address: 'https://symphony.
|
|
50
|
+
address: 'https://symphony.rpc.nodeshub.online/',
|
|
51
51
|
provider: 'Nodes Hub'
|
|
52
52
|
}, {
|
|
53
|
-
address: 'https://symphony-
|
|
53
|
+
address: 'https://symphony-rpc.cogwheel.zone/',
|
|
54
54
|
provider: 'Cogwheel ⚙️'
|
|
55
55
|
}],
|
|
56
56
|
rest: [{
|
|
57
|
-
address: 'https://symphony.
|
|
57
|
+
address: 'https://symphony.api.nodeshub.online/',
|
|
58
58
|
provider: 'Nodes Hub'
|
|
59
59
|
}, {
|
|
60
|
-
address: 'https://symphony-
|
|
60
|
+
address: 'https://symphony-api.cogwheel.zone/',
|
|
61
61
|
provider: 'Cogwheel ⚙️'
|
|
62
62
|
}],
|
|
63
63
|
grpc: [{
|
|
64
|
-
address: 'https://symphony.
|
|
64
|
+
address: 'https://symphony.grpc.nodeshub.online/',
|
|
65
65
|
provider: 'Nodes Hub'
|
|
66
66
|
}, {
|
|
67
|
-
address: 'https://symphony-
|
|
67
|
+
address: 'https://symphony-grpc.cogwheel.zone:443',
|
|
68
68
|
provider: 'Cogwheel ⚙️'
|
|
69
69
|
}]
|
|
70
70
|
},
|
|
71
71
|
logoURIs: {
|
|
72
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
72
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/symphony_logo.png'
|
|
73
73
|
},
|
|
74
74
|
images: [{
|
|
75
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
75
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/symphony_logo.png'
|
|
76
76
|
}]
|
|
77
77
|
};
|
|
78
78
|
export default info;
|
|
@@ -36,17 +36,17 @@ const info = {
|
|
|
36
36
|
},
|
|
37
37
|
codebase: {
|
|
38
38
|
gitRepo: 'https://github.com/burnt-labs/xion',
|
|
39
|
-
tag: 'v19.0.
|
|
40
|
-
recommendedVersion: 'v19.0.
|
|
39
|
+
tag: 'v19.0.2',
|
|
40
|
+
recommendedVersion: 'v19.0.2',
|
|
41
41
|
language: {
|
|
42
42
|
type: 'go',
|
|
43
43
|
version: 'v1.23'
|
|
44
44
|
},
|
|
45
45
|
binaries: {
|
|
46
|
-
"darwin/amd64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.
|
|
47
|
-
"darwin/arm64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.
|
|
48
|
-
"linux/amd64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.
|
|
49
|
-
"linux/arm64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.
|
|
46
|
+
"darwin/amd64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_darwin_amd64.tar.gz?checksum=sha256:edda13aec2274f1eceb933874a885d055b14acbbe0de21ba61ed9c25c64813d6',
|
|
47
|
+
"darwin/arm64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_darwin_arm64.tar.gz?checksum=sha256:7b94d2fdf1baa1d3dff4f947858a2bac684257be27f8bf179fb973ee8dd4fdb8',
|
|
48
|
+
"linux/amd64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_linux_amd64.tar.gz?checksum=sha256:6072ce81d08f77f98e2d2ae7726007eca18579ea2b1690b5f76b4df782690dcb',
|
|
49
|
+
"linux/arm64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_linux_arm64.tar.gz?checksum=sha256:0a55360653b596da5ace43c3b4a3fef6c9785bfe0e73405f591768b449af0e70'
|
|
50
50
|
},
|
|
51
51
|
sdk: {
|
|
52
52
|
type: 'cosmos',
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import * as _picasso from './picasso';
|
|
2
2
|
import * as _composablepolkadot from './composablepolkadot';
|
|
3
3
|
import * as _penumbra from './penumbra';
|
|
4
|
+
import * as _symphonytestnet3 from './symphonytestnet3';
|
|
4
5
|
import * as _cosmoshubicstestnet from './cosmoshubicstestnet';
|
|
5
6
|
const ibcData = [
|
|
6
7
|
..._picasso.ibcData,
|
|
7
8
|
..._composablepolkadot.ibcData,
|
|
8
9
|
..._penumbra.ibcData,
|
|
10
|
+
..._symphonytestnet3.ibcData,
|
|
9
11
|
..._cosmoshubicstestnet.ibcData
|
|
10
12
|
];
|
|
11
13
|
export default ibcData;
|
|
@@ -95,6 +95,7 @@ import * as _quasartestnet from './quasartestnet';
|
|
|
95
95
|
import * as _qubeticstestnet from './qubeticstestnet';
|
|
96
96
|
import * as _quicksilvertestnet from './quicksilvertestnet';
|
|
97
97
|
import * as _qwoyntestnet from './qwoyntestnet';
|
|
98
|
+
import * as _safrochaintestnet from './safrochaintestnet';
|
|
98
99
|
import * as _sagatestnet from './sagatestnet';
|
|
99
100
|
import * as _secretnetworktestnet from './secretnetworktestnet';
|
|
100
101
|
import * as _sedatestnet from './sedatestnet';
|
|
@@ -113,7 +114,6 @@ import * as _stridetestnet from './stridetestnet';
|
|
|
113
114
|
import * as _sunrisetestnet from './sunrisetestnet';
|
|
114
115
|
import * as _swisstroniktestnet from './swisstroniktestnet';
|
|
115
116
|
import * as _symphonytestnet from './symphonytestnet';
|
|
116
|
-
import * as _symphonytestnet3 from './symphonytestnet3';
|
|
117
117
|
import * as _synternettestnet from './synternettestnet';
|
|
118
118
|
import * as _terpnettestnet from './terpnettestnet';
|
|
119
119
|
import * as _terpnettestnet2 from './terpnettestnet2';
|
|
@@ -232,6 +232,7 @@ const assetList = [
|
|
|
232
232
|
_qubeticstestnet.assetList,
|
|
233
233
|
_quicksilvertestnet.assetList,
|
|
234
234
|
_qwoyntestnet.assetList,
|
|
235
|
+
_safrochaintestnet.assetList,
|
|
235
236
|
_sagatestnet.assetList,
|
|
236
237
|
_secretnetworktestnet.assetList,
|
|
237
238
|
_sedatestnet.assetList,
|
|
@@ -250,7 +251,6 @@ const assetList = [
|
|
|
250
251
|
_sunrisetestnet.assetList,
|
|
251
252
|
_swisstroniktestnet.assetList,
|
|
252
253
|
_symphonytestnet.assetList,
|
|
253
|
-
_symphonytestnet3.assetList,
|
|
254
254
|
_synternettestnet.assetList,
|
|
255
255
|
_terpnettestnet.assetList,
|
|
256
256
|
_terpnettestnet2.assetList,
|
package/esm/testnet/chains.js
CHANGED
|
@@ -95,6 +95,7 @@ import * as _quasartestnet from './quasartestnet';
|
|
|
95
95
|
import * as _qubeticstestnet from './qubeticstestnet';
|
|
96
96
|
import * as _quicksilvertestnet from './quicksilvertestnet';
|
|
97
97
|
import * as _qwoyntestnet from './qwoyntestnet';
|
|
98
|
+
import * as _safrochaintestnet from './safrochaintestnet';
|
|
98
99
|
import * as _sagatestnet from './sagatestnet';
|
|
99
100
|
import * as _secretnetworktestnet from './secretnetworktestnet';
|
|
100
101
|
import * as _sedatestnet from './sedatestnet';
|
|
@@ -113,7 +114,6 @@ import * as _stridetestnet from './stridetestnet';
|
|
|
113
114
|
import * as _sunrisetestnet from './sunrisetestnet';
|
|
114
115
|
import * as _swisstroniktestnet from './swisstroniktestnet';
|
|
115
116
|
import * as _symphonytestnet from './symphonytestnet';
|
|
116
|
-
import * as _symphonytestnet3 from './symphonytestnet3';
|
|
117
117
|
import * as _synternettestnet from './synternettestnet';
|
|
118
118
|
import * as _terpnettestnet from './terpnettestnet';
|
|
119
119
|
import * as _terpnettestnet2 from './terpnettestnet2';
|
|
@@ -232,6 +232,7 @@ const chains = [
|
|
|
232
232
|
_qubeticstestnet.chain,
|
|
233
233
|
_quicksilvertestnet.chain,
|
|
234
234
|
_qwoyntestnet.chain,
|
|
235
|
+
_safrochaintestnet.chain,
|
|
235
236
|
_sagatestnet.chain,
|
|
236
237
|
_secretnetworktestnet.chain,
|
|
237
238
|
_sedatestnet.chain,
|
|
@@ -250,7 +251,6 @@ const chains = [
|
|
|
250
251
|
_sunrisetestnet.chain,
|
|
251
252
|
_swisstroniktestnet.chain,
|
|
252
253
|
_symphonytestnet.chain,
|
|
253
|
-
_symphonytestnet3.chain,
|
|
254
254
|
_synternettestnet.chain,
|
|
255
255
|
_terpnettestnet.chain,
|
|
256
256
|
_terpnettestnet2.chain,
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'hippoprotocoltestnet',
|
|
5
|
+
clientId: '07-tendermint-0',
|
|
6
|
+
connectionId: 'connection-0'
|
|
7
|
+
},
|
|
8
|
+
chain2: {
|
|
9
|
+
chainName: 'osmosistestnet',
|
|
10
|
+
clientId: '07-tendermint-4754',
|
|
11
|
+
connectionId: 'connection-4185'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain1: {
|
|
15
|
+
channelId: 'channel-0',
|
|
16
|
+
portId: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain2: {
|
|
19
|
+
channelId: 'channel-10743',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
}];
|
|
30
|
+
export default info;
|
package/esm/testnet/ibc-data.js
CHANGED
|
@@ -13,6 +13,7 @@ import * as _doravotatestnet from './doravotatestnet';
|
|
|
13
13
|
import * as _dydxtestnet from './dydxtestnet';
|
|
14
14
|
import * as _elystestnet from './elystestnet';
|
|
15
15
|
import * as _empowertestnet from './empowertestnet';
|
|
16
|
+
import * as _hippoprotocoltestnet from './hippoprotocoltestnet';
|
|
16
17
|
import * as _impacthubtestnet from './impacthubtestnet';
|
|
17
18
|
import * as _injectivetestnet from './injectivetestnet';
|
|
18
19
|
import * as _int3facetestnet from './int3facetestnet';
|
|
@@ -39,7 +40,6 @@ import * as _stargazetestnet from './stargazetestnet';
|
|
|
39
40
|
import * as _stridetestnet from './stridetestnet';
|
|
40
41
|
import * as _swisstroniktestnet from './swisstroniktestnet';
|
|
41
42
|
import * as _symphonytestnet from './symphonytestnet';
|
|
42
|
-
import * as _symphonytestnet3 from './symphonytestnet3';
|
|
43
43
|
import * as _synternettestnet from './synternettestnet';
|
|
44
44
|
import * as _terra2testnet from './terra2testnet';
|
|
45
45
|
import * as _titannettestnet from './titannettestnet';
|
|
@@ -63,6 +63,7 @@ const ibcData = [
|
|
|
63
63
|
..._dydxtestnet.ibcData,
|
|
64
64
|
..._elystestnet.ibcData,
|
|
65
65
|
..._empowertestnet.ibcData,
|
|
66
|
+
..._hippoprotocoltestnet.ibcData,
|
|
66
67
|
..._impacthubtestnet.ibcData,
|
|
67
68
|
..._injectivetestnet.ibcData,
|
|
68
69
|
..._int3facetestnet.ibcData,
|
|
@@ -89,7 +90,6 @@ const ibcData = [
|
|
|
89
90
|
..._stridetestnet.ibcData,
|
|
90
91
|
..._swisstroniktestnet.ibcData,
|
|
91
92
|
..._symphonytestnet.ibcData,
|
|
92
|
-
..._symphonytestnet3.ibcData,
|
|
93
93
|
..._synternettestnet.ibcData,
|
|
94
94
|
..._terra2testnet.ibcData,
|
|
95
95
|
..._titannettestnet.ibcData,
|
|
@@ -430,6 +430,35 @@ const info = [
|
|
|
430
430
|
}
|
|
431
431
|
}]
|
|
432
432
|
},
|
|
433
|
+
{
|
|
434
|
+
$schema: '../../ibc_data.schema.json',
|
|
435
|
+
chain1: {
|
|
436
|
+
chainName: 'hippoprotocoltestnet',
|
|
437
|
+
clientId: '07-tendermint-0',
|
|
438
|
+
connectionId: 'connection-0'
|
|
439
|
+
},
|
|
440
|
+
chain2: {
|
|
441
|
+
chainName: 'osmosistestnet',
|
|
442
|
+
clientId: '07-tendermint-4754',
|
|
443
|
+
connectionId: 'connection-4185'
|
|
444
|
+
},
|
|
445
|
+
channels: [{
|
|
446
|
+
chain1: {
|
|
447
|
+
channelId: 'channel-0',
|
|
448
|
+
portId: 'transfer'
|
|
449
|
+
},
|
|
450
|
+
chain2: {
|
|
451
|
+
channelId: 'channel-10743',
|
|
452
|
+
portId: 'transfer'
|
|
453
|
+
},
|
|
454
|
+
ordering: 'unordered',
|
|
455
|
+
version: 'ics20-1',
|
|
456
|
+
tags: {
|
|
457
|
+
status: 'live',
|
|
458
|
+
preferred: true
|
|
459
|
+
}
|
|
460
|
+
}]
|
|
461
|
+
},
|
|
433
462
|
{
|
|
434
463
|
$schema: '../../ibc_data.schema.json',
|
|
435
464
|
chain1: {
|