chain-registry 1.69.119 → 1.69.121
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/devnet/celestiatestnet2/chain.js +8 -5
- package/esm/devnet/celestiatestnet2/chain.js +8 -5
- package/esm/mainnet/assets.js +2 -0
- package/esm/mainnet/atomone/chain.js +8 -0
- package/esm/mainnet/celestia/chain.js +12 -10
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/ibc.js +2 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/noble/ibc.js +29 -0
- package/esm/mainnet/osmosis/ibc.js +29 -0
- package/esm/mainnet/shido/chain.js +30 -4
- package/esm/mainnet/sidechain/assets.js +115 -0
- package/esm/mainnet/sidechain/chain.js +190 -0
- package/esm/mainnet/sidechain/ibc.js +58 -0
- package/esm/mainnet/sidechain/index.js +6 -0
- package/esm/noncosmos/binancesmartchain/assets.js +0 -1
- package/esm/testnet/archwaytestnet/ibc.js +1 -1
- package/esm/testnet/assets.js +2 -0
- package/esm/testnet/celestiatestnet3/chain.js +8 -5
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/cosmoshubtestnet/ibc.js +28 -0
- package/esm/testnet/elystestnet/assets.js +9 -1
- package/esm/testnet/ibc.js +2 -0
- package/esm/testnet/jackaltestnet/assets.js +9 -1
- package/esm/testnet/junotestnet/ibc.js +28 -0
- package/esm/testnet/named.js +1 -0
- package/esm/testnet/osmosistestnet/ibc.js +30 -0
- package/esm/testnet/stargazetestnet/ibc.js +28 -0
- package/esm/testnet/symphonytestnet/chain.js +7 -7
- package/esm/testnet/symphonytestnet/ibc.js +0 -28
- package/esm/testnet/symphonytestnet3/assets.js +99 -0
- package/esm/testnet/symphonytestnet3/chain.js +78 -0
- package/esm/testnet/symphonytestnet3/ibc.js +145 -0
- package/esm/testnet/symphonytestnet3/index.js +6 -0
- package/esm/testnet/ulastestnet/assets.js +0 -1
- package/mainnet/assets.js +2 -0
- package/mainnet/atomone/chain.js +8 -0
- package/mainnet/celestia/chain.js +12 -10
- package/mainnet/chains.js +2 -0
- package/mainnet/ibc.js +2 -0
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +2 -1
- package/mainnet/noble/ibc.js +29 -0
- package/mainnet/osmosis/ibc.js +29 -0
- package/mainnet/shido/chain.js +30 -4
- package/mainnet/sidechain/assets.d.ts +3 -0
- package/mainnet/sidechain/assets.js +117 -0
- package/mainnet/sidechain/chain.d.ts +3 -0
- package/mainnet/sidechain/chain.js +192 -0
- package/mainnet/sidechain/ibc.d.ts +3 -0
- package/mainnet/sidechain/ibc.js +60 -0
- package/mainnet/sidechain/index.d.ts +3 -0
- package/mainnet/sidechain/index.js +12 -0
- package/noncosmos/binancesmartchain/assets.js +0 -1
- package/package.json +4 -4
- package/testnet/archwaytestnet/ibc.js +1 -1
- package/testnet/assets.js +2 -0
- package/testnet/celestiatestnet3/chain.js +8 -5
- package/testnet/chains.js +2 -0
- package/testnet/cosmoshubtestnet/ibc.js +28 -0
- package/testnet/elystestnet/assets.js +9 -1
- package/testnet/ibc.js +2 -0
- package/testnet/jackaltestnet/assets.js +9 -1
- package/testnet/junotestnet/ibc.js +28 -0
- package/testnet/named.d.ts +1 -0
- package/testnet/named.js +2 -1
- package/testnet/osmosistestnet/ibc.js +30 -0
- package/testnet/stargazetestnet/ibc.js +28 -0
- package/testnet/symphonytestnet/chain.js +7 -7
- package/testnet/symphonytestnet/ibc.js +0 -28
- package/testnet/symphonytestnet3/assets.d.ts +3 -0
- package/testnet/symphonytestnet3/assets.js +101 -0
- package/testnet/symphonytestnet3/chain.d.ts +3 -0
- package/testnet/symphonytestnet3/chain.js +80 -0
- package/testnet/symphonytestnet3/ibc.d.ts +3 -0
- package/testnet/symphonytestnet3/ibc.js +147 -0
- package/testnet/symphonytestnet3/index.d.ts +3 -0
- package/testnet/symphonytestnet3/index.js +12 -0
- package/testnet/ulastestnet/assets.js +0 -1
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain_1: {
|
|
4
|
+
chain_name: 'noble',
|
|
5
|
+
client_id: '07-tendermint-141',
|
|
6
|
+
connection_id: 'connection-136'
|
|
7
|
+
},
|
|
8
|
+
chain_2: {
|
|
9
|
+
chain_name: 'sidechain',
|
|
10
|
+
client_id: '07-tendermint-7',
|
|
11
|
+
connection_id: 'connection-2'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain_1: {
|
|
15
|
+
channel_id: 'channel-123',
|
|
16
|
+
port_id: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain_2: {
|
|
19
|
+
channel_id: 'channel-1',
|
|
20
|
+
port_id: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
}, {
|
|
30
|
+
$schema: '../ibc_data.schema.json',
|
|
31
|
+
chain_1: {
|
|
32
|
+
chain_name: 'osmosis',
|
|
33
|
+
client_id: '07-tendermint-3425',
|
|
34
|
+
connection_id: 'connection-10585'
|
|
35
|
+
},
|
|
36
|
+
chain_2: {
|
|
37
|
+
chain_name: 'sidechain',
|
|
38
|
+
client_id: '07-tendermint-5',
|
|
39
|
+
connection_id: 'connection-1'
|
|
40
|
+
},
|
|
41
|
+
channels: [{
|
|
42
|
+
chain_1: {
|
|
43
|
+
channel_id: 'channel-98081',
|
|
44
|
+
port_id: 'transfer'
|
|
45
|
+
},
|
|
46
|
+
chain_2: {
|
|
47
|
+
channel_id: 'channel-0',
|
|
48
|
+
port_id: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
ordering: 'unordered',
|
|
51
|
+
version: 'ics20-1',
|
|
52
|
+
tags: {
|
|
53
|
+
status: 'live',
|
|
54
|
+
preferred: true
|
|
55
|
+
}
|
|
56
|
+
}]
|
|
57
|
+
}];
|
|
58
|
+
export default info;
|
|
@@ -175,7 +175,6 @@ const info = {
|
|
|
175
175
|
name: 'Source Token',
|
|
176
176
|
display: 'srcx',
|
|
177
177
|
symbol: 'SRCX',
|
|
178
|
-
coingecko_id: 'source-protocol',
|
|
179
178
|
logo_URIs: {
|
|
180
179
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png'
|
|
181
180
|
},
|
package/esm/testnet/assets.js
CHANGED
|
@@ -103,6 +103,7 @@ import * as _stridetestnet from './stridetestnet';
|
|
|
103
103
|
import * as _sunrisetestnet from './sunrisetestnet';
|
|
104
104
|
import * as _swisstroniktestnet from './swisstroniktestnet';
|
|
105
105
|
import * as _symphonytestnet from './symphonytestnet';
|
|
106
|
+
import * as _symphonytestnet3 from './symphonytestnet3';
|
|
106
107
|
import * as _synternettestnet from './synternettestnet';
|
|
107
108
|
import * as _terpnettestnet from './terpnettestnet';
|
|
108
109
|
import * as _terpnettestnet2 from './terpnettestnet2';
|
|
@@ -227,6 +228,7 @@ const assets = [
|
|
|
227
228
|
_sunrisetestnet.assets,
|
|
228
229
|
_swisstroniktestnet.assets,
|
|
229
230
|
_symphonytestnet.assets,
|
|
231
|
+
_symphonytestnet3.assets,
|
|
230
232
|
_synternettestnet.assets,
|
|
231
233
|
_terpnettestnet.assets,
|
|
232
234
|
_terpnettestnet2.assets,
|
|
@@ -22,12 +22,15 @@ const info = {
|
|
|
22
22
|
},
|
|
23
23
|
codebase: {
|
|
24
24
|
git_repo: 'https://github.com/celestiaorg/celestia-app',
|
|
25
|
-
recommended_version: '
|
|
25
|
+
recommended_version: 'v3.3.1-mocha',
|
|
26
26
|
compatible_versions: [
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
'
|
|
30
|
-
'
|
|
27
|
+
'v3.0.0-mocha',
|
|
28
|
+
'v3.0.1-mocha',
|
|
29
|
+
'v3.0.2-mocha',
|
|
30
|
+
'v3.1.1-mocha',
|
|
31
|
+
'v3.2.0-mocha',
|
|
32
|
+
'v3.3.0-mocha',
|
|
33
|
+
'v3.3.1-mocha'
|
|
31
34
|
],
|
|
32
35
|
genesis: {
|
|
33
36
|
genesis_url: 'https://raw.githubusercontent.com/celestiaorg/networks/master/mocha-4/genesis.json'
|
package/esm/testnet/chains.js
CHANGED
|
@@ -103,6 +103,7 @@ import * as _stridetestnet from './stridetestnet';
|
|
|
103
103
|
import * as _sunrisetestnet from './sunrisetestnet';
|
|
104
104
|
import * as _swisstroniktestnet from './swisstroniktestnet';
|
|
105
105
|
import * as _symphonytestnet from './symphonytestnet';
|
|
106
|
+
import * as _symphonytestnet3 from './symphonytestnet3';
|
|
106
107
|
import * as _synternettestnet from './synternettestnet';
|
|
107
108
|
import * as _terpnettestnet from './terpnettestnet';
|
|
108
109
|
import * as _terpnettestnet2 from './terpnettestnet2';
|
|
@@ -227,6 +228,7 @@ const chains = [
|
|
|
227
228
|
_sunrisetestnet.chain,
|
|
228
229
|
_swisstroniktestnet.chain,
|
|
229
230
|
_symphonytestnet.chain,
|
|
231
|
+
_symphonytestnet3.chain,
|
|
230
232
|
_synternettestnet.chain,
|
|
231
233
|
_terpnettestnet.chain,
|
|
232
234
|
_terpnettestnet2.chain,
|
|
@@ -226,6 +226,34 @@ const info = [
|
|
|
226
226
|
}
|
|
227
227
|
}]
|
|
228
228
|
},
|
|
229
|
+
{
|
|
230
|
+
$schema: '../../ibc_data.schema.json',
|
|
231
|
+
chain_1: {
|
|
232
|
+
chain_name: 'cosmoshubtestnet',
|
|
233
|
+
client_id: '07-tendermint-3730',
|
|
234
|
+
connection_id: 'connection-3782'
|
|
235
|
+
},
|
|
236
|
+
chain_2: {
|
|
237
|
+
chain_name: 'symphonytestnet3',
|
|
238
|
+
client_id: '07-tendermint-10',
|
|
239
|
+
connection_id: 'connection-9'
|
|
240
|
+
},
|
|
241
|
+
channels: [{
|
|
242
|
+
chain_1: {
|
|
243
|
+
channel_id: 'channel-4300',
|
|
244
|
+
port_id: 'transfer'
|
|
245
|
+
},
|
|
246
|
+
chain_2: {
|
|
247
|
+
channel_id: 'channel-7',
|
|
248
|
+
port_id: 'transfer'
|
|
249
|
+
},
|
|
250
|
+
ordering: 'unordered',
|
|
251
|
+
version: 'ics20-1',
|
|
252
|
+
tags: {
|
|
253
|
+
status: 'live'
|
|
254
|
+
}
|
|
255
|
+
}]
|
|
256
|
+
},
|
|
229
257
|
{
|
|
230
258
|
$schema: '../../ibc_data.schema.json',
|
|
231
259
|
chain_1: {
|
|
@@ -24,10 +24,18 @@ const info = {
|
|
|
24
24
|
name: 'Elys Network',
|
|
25
25
|
display: 'elys',
|
|
26
26
|
symbol: 'ELYS',
|
|
27
|
+
traces: [{
|
|
28
|
+
type: 'test-mintage',
|
|
29
|
+
counterparty: {
|
|
30
|
+
chain_name: 'elys',
|
|
31
|
+
base_denom: 'uelys'
|
|
32
|
+
},
|
|
33
|
+
provider: 'Elys Network'
|
|
34
|
+
}],
|
|
27
35
|
logo_URIs: {
|
|
28
36
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png'
|
|
29
37
|
},
|
|
30
|
-
coingecko_id: 'elys',
|
|
38
|
+
coingecko_id: 'elys-network',
|
|
31
39
|
images: [{
|
|
32
40
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png'
|
|
33
41
|
}],
|
package/esm/testnet/ibc.js
CHANGED
|
@@ -35,6 +35,7 @@ import * as _sgetestnet from './sgetestnet';
|
|
|
35
35
|
import * as _stargazetestnet from './stargazetestnet';
|
|
36
36
|
import * as _swisstroniktestnet from './swisstroniktestnet';
|
|
37
37
|
import * as _symphonytestnet from './symphonytestnet';
|
|
38
|
+
import * as _symphonytestnet3 from './symphonytestnet3';
|
|
38
39
|
import * as _synternettestnet from './synternettestnet';
|
|
39
40
|
import * as _terra2testnet from './terra2testnet';
|
|
40
41
|
import * as _titannettestnet from './titannettestnet';
|
|
@@ -78,6 +79,7 @@ const ibc = [
|
|
|
78
79
|
..._stargazetestnet.ibc,
|
|
79
80
|
..._swisstroniktestnet.ibc,
|
|
80
81
|
..._symphonytestnet.ibc,
|
|
82
|
+
..._symphonytestnet3.ibc,
|
|
81
83
|
..._synternettestnet.ibc,
|
|
82
84
|
..._terra2testnet.ibc,
|
|
83
85
|
..._titannettestnet.ibc,
|
|
@@ -14,11 +14,19 @@ const info = {
|
|
|
14
14
|
name: 'Jackal',
|
|
15
15
|
display: 'jkl',
|
|
16
16
|
symbol: 'JKL',
|
|
17
|
+
traces: [{
|
|
18
|
+
type: 'test-mintage',
|
|
19
|
+
counterparty: {
|
|
20
|
+
chain_name: 'jackal',
|
|
21
|
+
base_denom: 'ujkl'
|
|
22
|
+
},
|
|
23
|
+
provider: 'Jackal'
|
|
24
|
+
}],
|
|
17
25
|
logo_URIs: {
|
|
18
26
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.png',
|
|
19
27
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.svg'
|
|
20
28
|
},
|
|
21
|
-
coingecko_id: 'jackal',
|
|
29
|
+
coingecko_id: 'jackal-protocol',
|
|
22
30
|
images: [{
|
|
23
31
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.png',
|
|
24
32
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.svg'
|
|
@@ -130,6 +130,34 @@ const info = [
|
|
|
130
130
|
status: 'live'
|
|
131
131
|
}
|
|
132
132
|
}]
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
$schema: '../../ibc_data.schema.json',
|
|
136
|
+
chain_1: {
|
|
137
|
+
chain_name: 'junotestnet',
|
|
138
|
+
client_id: '07-tendermint-789',
|
|
139
|
+
connection_id: 'connection-868'
|
|
140
|
+
},
|
|
141
|
+
chain_2: {
|
|
142
|
+
chain_name: 'symphonytestnet3',
|
|
143
|
+
client_id: '07-tendermint-28',
|
|
144
|
+
connection_id: 'connection-13'
|
|
145
|
+
},
|
|
146
|
+
channels: [{
|
|
147
|
+
chain_1: {
|
|
148
|
+
channel_id: 'channel-943',
|
|
149
|
+
port_id: 'transfer'
|
|
150
|
+
},
|
|
151
|
+
chain_2: {
|
|
152
|
+
channel_id: 'channel-11',
|
|
153
|
+
port_id: 'transfer'
|
|
154
|
+
},
|
|
155
|
+
ordering: 'unordered',
|
|
156
|
+
version: 'ics20-1',
|
|
157
|
+
tags: {
|
|
158
|
+
status: 'live'
|
|
159
|
+
}
|
|
160
|
+
}]
|
|
133
161
|
}
|
|
134
162
|
];
|
|
135
163
|
export default info;
|
package/esm/testnet/named.js
CHANGED
|
@@ -103,6 +103,7 @@ export * as stridetestnet from './stridetestnet';
|
|
|
103
103
|
export * as sunrisetestnet from './sunrisetestnet';
|
|
104
104
|
export * as swisstroniktestnet from './swisstroniktestnet';
|
|
105
105
|
export * as symphonytestnet from './symphonytestnet';
|
|
106
|
+
export * as symphonytestnet3 from './symphonytestnet3';
|
|
106
107
|
export * as synternettestnet from './synternettestnet';
|
|
107
108
|
export * as terpnettestnet from './terpnettestnet';
|
|
108
109
|
export * as terpnettestnet2 from './terpnettestnet2';
|
|
@@ -979,6 +979,36 @@ const info = [
|
|
|
979
979
|
}
|
|
980
980
|
}]
|
|
981
981
|
},
|
|
982
|
+
{
|
|
983
|
+
$schema: '../../ibc_data.schema.json',
|
|
984
|
+
chain_1: {
|
|
985
|
+
chain_name: 'osmosistestnet',
|
|
986
|
+
client_id: '07-tendermint-3946',
|
|
987
|
+
connection_id: 'connection-3419'
|
|
988
|
+
},
|
|
989
|
+
chain_2: {
|
|
990
|
+
chain_name: 'symphonytestnet3',
|
|
991
|
+
client_id: '07-tendermint-0',
|
|
992
|
+
connection_id: 'connection-0'
|
|
993
|
+
},
|
|
994
|
+
channels: [{
|
|
995
|
+
chain_1: {
|
|
996
|
+
channel_id: 'channel-8743',
|
|
997
|
+
port_id: 'transfer'
|
|
998
|
+
},
|
|
999
|
+
chain_2: {
|
|
1000
|
+
channel_id: 'channel-0',
|
|
1001
|
+
port_id: 'transfer'
|
|
1002
|
+
},
|
|
1003
|
+
ordering: 'unordered',
|
|
1004
|
+
version: 'ics20-1',
|
|
1005
|
+
tags: {
|
|
1006
|
+
status: 'live',
|
|
1007
|
+
preferred: true,
|
|
1008
|
+
dex: 'osmosis'
|
|
1009
|
+
}
|
|
1010
|
+
}]
|
|
1011
|
+
},
|
|
982
1012
|
{
|
|
983
1013
|
$schema: '../../ibc_data.schema.json',
|
|
984
1014
|
chain_1: {
|
|
@@ -155,6 +155,34 @@ const info = [
|
|
|
155
155
|
}
|
|
156
156
|
}]
|
|
157
157
|
},
|
|
158
|
+
{
|
|
159
|
+
$schema: '../../ibc_data.schema.json',
|
|
160
|
+
chain_1: {
|
|
161
|
+
chain_name: 'stargazetestnet',
|
|
162
|
+
client_id: '07-tendermint-952',
|
|
163
|
+
connection_id: 'connection-947'
|
|
164
|
+
},
|
|
165
|
+
chain_2: {
|
|
166
|
+
chain_name: 'symphonytestnet3',
|
|
167
|
+
client_id: '07-tendermint-4',
|
|
168
|
+
connection_id: 'connection-4'
|
|
169
|
+
},
|
|
170
|
+
channels: [{
|
|
171
|
+
chain_1: {
|
|
172
|
+
channel_id: 'channel-998',
|
|
173
|
+
port_id: 'transfer'
|
|
174
|
+
},
|
|
175
|
+
chain_2: {
|
|
176
|
+
channel_id: 'channel-4',
|
|
177
|
+
port_id: 'transfer'
|
|
178
|
+
},
|
|
179
|
+
ordering: 'unordered',
|
|
180
|
+
version: 'ics20-1',
|
|
181
|
+
tags: {
|
|
182
|
+
status: 'live'
|
|
183
|
+
}
|
|
184
|
+
}]
|
|
185
|
+
},
|
|
158
186
|
{
|
|
159
187
|
$schema: '../../ibc_data.schema.json',
|
|
160
188
|
chain_1: {
|
|
@@ -27,21 +27,21 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
git_repo: 'https://github.com/Orchestra-Labs/symphony',
|
|
30
|
-
recommended_version: '
|
|
31
|
-
compatible_versions: ['
|
|
30
|
+
recommended_version: 'v0.4.1',
|
|
31
|
+
compatible_versions: ['v0.4.1'],
|
|
32
32
|
consensus: {
|
|
33
|
-
type: '
|
|
34
|
-
version: '0.
|
|
33
|
+
type: 'cometbft',
|
|
34
|
+
version: '0.38.11'
|
|
35
35
|
},
|
|
36
36
|
genesis: {
|
|
37
|
-
genesis_url: 'https://
|
|
37
|
+
genesis_url: 'https://raw.githubusercontent.com/Orchestra-Labs/symphony/refs/heads/main/networks/symphony-testnet-4/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
|
},
|
|
@@ -1,32 +1,4 @@
|
|
|
1
1
|
const info = [
|
|
2
|
-
{
|
|
3
|
-
$schema: '../../ibc_data.schema.json',
|
|
4
|
-
chain_1: {
|
|
5
|
-
chain_name: 'archwaytestnet',
|
|
6
|
-
client_id: '07-tendermint-139',
|
|
7
|
-
connection_id: 'connection-144'
|
|
8
|
-
},
|
|
9
|
-
chain_2: {
|
|
10
|
-
chain_name: 'symphonytestnet',
|
|
11
|
-
client_id: '07-tendermint-25',
|
|
12
|
-
connection_id: 'connection-12'
|
|
13
|
-
},
|
|
14
|
-
channels: [{
|
|
15
|
-
chain_1: {
|
|
16
|
-
channel_id: 'channel-495',
|
|
17
|
-
port_id: 'transfer'
|
|
18
|
-
},
|
|
19
|
-
chain_2: {
|
|
20
|
-
channel_id: 'channel-10',
|
|
21
|
-
port_id: 'transfer'
|
|
22
|
-
},
|
|
23
|
-
ordering: 'unordered',
|
|
24
|
-
version: 'ics20-1',
|
|
25
|
-
tags: {
|
|
26
|
-
status: 'live'
|
|
27
|
-
}
|
|
28
|
-
}]
|
|
29
|
-
},
|
|
30
2
|
{
|
|
31
3
|
$schema: '../../ibc_data.schema.json',
|
|
32
4
|
chain_1: {
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chain_name: 'symphonytestnet3',
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
6
|
+
description: 'The native token of Symphony',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'note',
|
|
9
|
+
exponent: 0,
|
|
10
|
+
aliases: []
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'mld',
|
|
13
|
+
exponent: 6,
|
|
14
|
+
aliases: ['melody']
|
|
15
|
+
}],
|
|
16
|
+
type_asset: 'sdk.coin',
|
|
17
|
+
base: 'note',
|
|
18
|
+
name: 'Melody',
|
|
19
|
+
display: 'mld',
|
|
20
|
+
symbol: 'MLD',
|
|
21
|
+
logo_URIs: {
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/mld.png'
|
|
23
|
+
},
|
|
24
|
+
images: [{
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/mld.png'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
description: 'Harmonized USD',
|
|
30
|
+
denom_units: [{
|
|
31
|
+
denom: 'uusd',
|
|
32
|
+
exponent: 0,
|
|
33
|
+
aliases: []
|
|
34
|
+
}, {
|
|
35
|
+
denom: 'husd',
|
|
36
|
+
exponent: 6,
|
|
37
|
+
aliases: ['harmony USD']
|
|
38
|
+
}],
|
|
39
|
+
type_asset: 'sdk.coin',
|
|
40
|
+
base: 'uusd',
|
|
41
|
+
name: 'Harmony USD',
|
|
42
|
+
display: 'husd',
|
|
43
|
+
symbol: 'HUSD',
|
|
44
|
+
logo_URIs: {
|
|
45
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/husd.png'
|
|
46
|
+
},
|
|
47
|
+
images: [{
|
|
48
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/husd.png'
|
|
49
|
+
}]
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
description: 'Harmonized HKD',
|
|
53
|
+
denom_units: [{
|
|
54
|
+
denom: 'ukhd',
|
|
55
|
+
exponent: 0,
|
|
56
|
+
aliases: []
|
|
57
|
+
}, {
|
|
58
|
+
denom: 'hkhd',
|
|
59
|
+
exponent: 6,
|
|
60
|
+
aliases: ['harmony HKD']
|
|
61
|
+
}],
|
|
62
|
+
type_asset: 'sdk.coin',
|
|
63
|
+
base: 'ukhd',
|
|
64
|
+
name: 'Harmony HKD',
|
|
65
|
+
display: 'hkhd',
|
|
66
|
+
symbol: 'HKHD',
|
|
67
|
+
logo_URIs: {
|
|
68
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hhkd.png'
|
|
69
|
+
},
|
|
70
|
+
images: [{
|
|
71
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hhkd.png'
|
|
72
|
+
}]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
description: 'Harmonized VND',
|
|
76
|
+
denom_units: [{
|
|
77
|
+
denom: 'uvnd',
|
|
78
|
+
exponent: 0,
|
|
79
|
+
aliases: []
|
|
80
|
+
}, {
|
|
81
|
+
denom: 'hvnd',
|
|
82
|
+
exponent: 6,
|
|
83
|
+
aliases: ['harmony VND']
|
|
84
|
+
}],
|
|
85
|
+
type_asset: 'sdk.coin',
|
|
86
|
+
base: 'uvnd',
|
|
87
|
+
name: 'Harmony VND',
|
|
88
|
+
display: 'hvnd',
|
|
89
|
+
symbol: 'HVND',
|
|
90
|
+
logo_URIs: {
|
|
91
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hvnd.png'
|
|
92
|
+
},
|
|
93
|
+
images: [{
|
|
94
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hvnd.png'
|
|
95
|
+
}]
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
};
|
|
99
|
+
export default info;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chain_name: 'symphonytestnet3',
|
|
4
|
+
status: 'live',
|
|
5
|
+
network_type: 'testnet',
|
|
6
|
+
pretty_name: 'Symphony Testnet',
|
|
7
|
+
chain_type: 'cosmos',
|
|
8
|
+
chain_id: 'symphony-testnet-3',
|
|
9
|
+
bech32_prefix: 'symphony',
|
|
10
|
+
daemon_name: 'symphonyd',
|
|
11
|
+
node_home: '$HOME/.symphonyd',
|
|
12
|
+
key_algos: ['secp256k1'],
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
fee_tokens: [{
|
|
16
|
+
denom: 'note',
|
|
17
|
+
fixed_min_gas_price: 0,
|
|
18
|
+
low_gas_price: 0.0025,
|
|
19
|
+
average_gas_price: 0.025,
|
|
20
|
+
high_gas_price: 0.04
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
staking_tokens: [{
|
|
25
|
+
denom: 'note'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {
|
|
29
|
+
git_repo: 'https://github.com/Orchestra-Labs/symphony',
|
|
30
|
+
recommended_version: 'v23.0.5-rc1',
|
|
31
|
+
compatible_versions: ['v23.0.5', 'v23.0.5-rc1'],
|
|
32
|
+
consensus: {
|
|
33
|
+
type: 'tendermint',
|
|
34
|
+
version: '0.37.4'
|
|
35
|
+
},
|
|
36
|
+
genesis: {
|
|
37
|
+
genesis_url: 'https://rpc.testnet.symphonychain.org/genesis'
|
|
38
|
+
},
|
|
39
|
+
sdk: {
|
|
40
|
+
type: 'cosmos',
|
|
41
|
+
version: '0.47.8'
|
|
42
|
+
},
|
|
43
|
+
cosmwasm: {
|
|
44
|
+
version: '0.29',
|
|
45
|
+
enabled: true
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
apis: {
|
|
49
|
+
rpc: [{
|
|
50
|
+
address: 'https://symphony.test.rpc.nodeshub.online/',
|
|
51
|
+
provider: 'Nodes Hub'
|
|
52
|
+
}, {
|
|
53
|
+
address: 'https://symphony-testnet-rpc.cogwheel.zone/',
|
|
54
|
+
provider: 'Cogwheel ⚙️'
|
|
55
|
+
}],
|
|
56
|
+
rest: [{
|
|
57
|
+
address: 'https://symphony.test.api.nodeshub.online/',
|
|
58
|
+
provider: 'Nodes Hub'
|
|
59
|
+
}, {
|
|
60
|
+
address: 'https://symphony-testnet-api.cogwheel.zone/',
|
|
61
|
+
provider: 'Cogwheel ⚙️'
|
|
62
|
+
}],
|
|
63
|
+
grpc: [{
|
|
64
|
+
address: 'https://symphony.test.grpc.nodeshub.online/',
|
|
65
|
+
provider: 'Nodes Hub'
|
|
66
|
+
}, {
|
|
67
|
+
address: 'https://symphony-testnet-grpc.cogwheel.zone:443',
|
|
68
|
+
provider: 'Cogwheel ⚙️'
|
|
69
|
+
}]
|
|
70
|
+
},
|
|
71
|
+
logo_URIs: {
|
|
72
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/symphony_logo.png'
|
|
73
|
+
},
|
|
74
|
+
images: [{
|
|
75
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/symphony_logo.png'
|
|
76
|
+
}]
|
|
77
|
+
};
|
|
78
|
+
export default info;
|