chain-registry 2.0.35 → 2.0.36
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/atomone/chain.js +12 -0
- package/esm/mainnet/bitbadges/ibc-data.js +35 -3
- package/esm/mainnet/cosmoshub/ibc-data.js +29 -0
- package/esm/mainnet/ibc-data.js +4 -0
- package/esm/mainnet/mtgbp/ibc-data.js +31 -0
- package/esm/mainnet/mtgbp/index.js +2 -0
- package/esm/mainnet/osmosis/asset-list.js +86 -0
- package/esm/mainnet/osmosis/ibc-data.js +60 -0
- package/esm/mainnet/qfs/ibc-data.js +31 -0
- package/esm/mainnet/qfs/index.js +2 -0
- package/esm/mainnet/sunrise/chain.js +26 -14
- package/esm/testnet/sunrisetestnet/chain.js +14 -9
- package/mainnet/atomone/chain.js +12 -0
- package/mainnet/bitbadges/ibc-data.js +35 -3
- package/mainnet/cosmoshub/ibc-data.js +29 -0
- package/mainnet/ibc-data.js +4 -0
- package/mainnet/mtgbp/ibc-data.d.ts +3 -0
- package/mainnet/mtgbp/ibc-data.js +33 -0
- package/mainnet/mtgbp/index.d.ts +1 -0
- package/mainnet/mtgbp/index.js +3 -1
- package/mainnet/osmosis/asset-list.js +86 -0
- package/mainnet/osmosis/ibc-data.js +60 -0
- package/mainnet/qfs/ibc-data.d.ts +3 -0
- package/mainnet/qfs/ibc-data.js +33 -0
- package/mainnet/qfs/index.d.ts +1 -0
- package/mainnet/qfs/index.js +3 -1
- package/mainnet/sunrise/chain.js +26 -14
- package/package.json +3 -3
- package/testnet/sunrisetestnet/chain.js +14 -9
|
@@ -146,6 +146,10 @@ const info = {
|
|
|
146
146
|
{
|
|
147
147
|
address: 'https://atomone-mainnet-rpc.shazoes.xyz',
|
|
148
148
|
provider: 'Shazoes'
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
address: 'https://rpc-atomone.22node.xyz',
|
|
152
|
+
provider: '22node'
|
|
149
153
|
}
|
|
150
154
|
],
|
|
151
155
|
rest: [
|
|
@@ -232,6 +236,10 @@ const info = {
|
|
|
232
236
|
{
|
|
233
237
|
address: 'https://atomone-mainnet-api.shazoes.xyz',
|
|
234
238
|
provider: 'Shazoes'
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
address: 'https://rest-atomone.22node.xyz',
|
|
242
|
+
provider: '22node'
|
|
235
243
|
}
|
|
236
244
|
],
|
|
237
245
|
grpc: [
|
|
@@ -290,6 +298,10 @@ const info = {
|
|
|
290
298
|
{
|
|
291
299
|
address: 'atomone-mainnet-grpc.shazoes.xyz:12090',
|
|
292
300
|
provider: 'Shazoes'
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
address: 'grpc-atomone.22node.xyz',
|
|
304
|
+
provider: 'Shazoes'
|
|
293
305
|
}
|
|
294
306
|
]
|
|
295
307
|
},
|
|
@@ -1,4 +1,34 @@
|
|
|
1
|
-
const info = [
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain1: {
|
|
5
|
+
chainName: 'bitbadges',
|
|
6
|
+
clientId: '07-tendermint-16',
|
|
7
|
+
connectionId: 'connection-8'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'cosmoshub',
|
|
11
|
+
clientId: '07-tendermint-1428',
|
|
12
|
+
connectionId: 'connection-1147'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain1: {
|
|
16
|
+
channelId: 'channel-3',
|
|
17
|
+
portId: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain2: {
|
|
20
|
+
channelId: 'channel-1420',
|
|
21
|
+
portId: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1',
|
|
25
|
+
tags: {
|
|
26
|
+
status: 'live',
|
|
27
|
+
preferred: true
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
2
32
|
$schema: '../ibc_data.schema.json',
|
|
3
33
|
chain1: {
|
|
4
34
|
chainName: 'bitbadges',
|
|
@@ -26,7 +56,8 @@ const info = [{
|
|
|
26
56
|
preferred: true
|
|
27
57
|
}
|
|
28
58
|
}]
|
|
29
|
-
},
|
|
59
|
+
},
|
|
60
|
+
{
|
|
30
61
|
$schema: '../ibc_data.schema.json',
|
|
31
62
|
chain1: {
|
|
32
63
|
chainName: 'bitbadges',
|
|
@@ -55,5 +86,6 @@ const info = [{
|
|
|
55
86
|
dex: 'osmosis'
|
|
56
87
|
}
|
|
57
88
|
}]
|
|
58
|
-
}
|
|
89
|
+
}
|
|
90
|
+
];
|
|
59
91
|
export default info;
|
|
@@ -253,6 +253,35 @@ const info = [
|
|
|
253
253
|
}
|
|
254
254
|
}]
|
|
255
255
|
},
|
|
256
|
+
{
|
|
257
|
+
$schema: '../ibc_data.schema.json',
|
|
258
|
+
chain1: {
|
|
259
|
+
chainName: 'bitbadges',
|
|
260
|
+
clientId: '07-tendermint-16',
|
|
261
|
+
connectionId: 'connection-8'
|
|
262
|
+
},
|
|
263
|
+
chain2: {
|
|
264
|
+
chainName: 'cosmoshub',
|
|
265
|
+
clientId: '07-tendermint-1428',
|
|
266
|
+
connectionId: 'connection-1147'
|
|
267
|
+
},
|
|
268
|
+
channels: [{
|
|
269
|
+
chain1: {
|
|
270
|
+
channelId: 'channel-3',
|
|
271
|
+
portId: 'transfer'
|
|
272
|
+
},
|
|
273
|
+
chain2: {
|
|
274
|
+
channelId: 'channel-1420',
|
|
275
|
+
portId: 'transfer'
|
|
276
|
+
},
|
|
277
|
+
ordering: 'unordered',
|
|
278
|
+
version: 'ics20-1',
|
|
279
|
+
tags: {
|
|
280
|
+
status: 'live',
|
|
281
|
+
preferred: true
|
|
282
|
+
}
|
|
283
|
+
}]
|
|
284
|
+
},
|
|
256
285
|
{
|
|
257
286
|
$schema: '../ibc_data.schema.json',
|
|
258
287
|
chain1: {
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -92,6 +92,7 @@ import * as _medasdigital from './medasdigital';
|
|
|
92
92
|
import * as _meme from './meme';
|
|
93
93
|
import * as _migaloo from './migaloo';
|
|
94
94
|
import * as _milkyway from './milkyway';
|
|
95
|
+
import * as _mtgbp from './mtgbp';
|
|
95
96
|
import * as _neutaro from './neutaro';
|
|
96
97
|
import * as _neutron from './neutron';
|
|
97
98
|
import * as _nibiru from './nibiru';
|
|
@@ -117,6 +118,7 @@ import * as _provenance from './provenance';
|
|
|
117
118
|
import * as _pryzm from './pryzm';
|
|
118
119
|
import * as _pundix from './pundix';
|
|
119
120
|
import * as _pylons from './pylons';
|
|
121
|
+
import * as _qfs from './qfs';
|
|
120
122
|
import * as _quasar from './quasar';
|
|
121
123
|
import * as _quicksilver from './quicksilver';
|
|
122
124
|
import * as _qwoyn from './qwoyn';
|
|
@@ -255,6 +257,7 @@ const ibcData = [
|
|
|
255
257
|
..._meme.ibcData,
|
|
256
258
|
..._migaloo.ibcData,
|
|
257
259
|
..._milkyway.ibcData,
|
|
260
|
+
..._mtgbp.ibcData,
|
|
258
261
|
..._neutaro.ibcData,
|
|
259
262
|
..._neutron.ibcData,
|
|
260
263
|
..._nibiru.ibcData,
|
|
@@ -280,6 +283,7 @@ const ibcData = [
|
|
|
280
283
|
..._pryzm.ibcData,
|
|
281
284
|
..._pundix.ibcData,
|
|
282
285
|
..._pylons.ibcData,
|
|
286
|
+
..._qfs.ibcData,
|
|
283
287
|
..._quasar.ibcData,
|
|
284
288
|
..._quicksilver.ibcData,
|
|
285
289
|
..._qwoyn.ibcData,
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'mtgbp',
|
|
5
|
+
clientId: '07-tendermint-0',
|
|
6
|
+
connectionId: 'connection-0'
|
|
7
|
+
},
|
|
8
|
+
chain2: {
|
|
9
|
+
chainName: 'osmosis',
|
|
10
|
+
clientId: '07-tendermint-3531',
|
|
11
|
+
connectionId: 'connection-10772'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain1: {
|
|
15
|
+
channelId: 'channel-0',
|
|
16
|
+
portId: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain2: {
|
|
19
|
+
channelId: 'channel-105394',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true,
|
|
27
|
+
dex: 'osmosis'
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
}];
|
|
31
|
+
export default info;
|
|
@@ -24827,6 +24827,92 @@ const info = {
|
|
|
24827
24827
|
primaryColorHex: '#3d3d3d'
|
|
24828
24828
|
}
|
|
24829
24829
|
}]
|
|
24830
|
+
},
|
|
24831
|
+
{
|
|
24832
|
+
denomUnits: [{
|
|
24833
|
+
denom: 'ibc/83A99F99AF326090B74CD5D17EE61776C7791B537EE6808F4951A184EDCCA0D9',
|
|
24834
|
+
exponent: 0,
|
|
24835
|
+
aliases: ['uqfs']
|
|
24836
|
+
}, {
|
|
24837
|
+
denom: 'qfs',
|
|
24838
|
+
exponent: 6,
|
|
24839
|
+
aliases: []
|
|
24840
|
+
}],
|
|
24841
|
+
typeAsset: 'ics20',
|
|
24842
|
+
base: 'ibc/83A99F99AF326090B74CD5D17EE61776C7791B537EE6808F4951A184EDCCA0D9',
|
|
24843
|
+
name: 'QFS',
|
|
24844
|
+
display: 'qfs',
|
|
24845
|
+
symbol: 'QFS',
|
|
24846
|
+
traces: [{
|
|
24847
|
+
type: 'ibc',
|
|
24848
|
+
counterparty: {
|
|
24849
|
+
chainName: 'qfs',
|
|
24850
|
+
baseDenom: 'uqfs',
|
|
24851
|
+
channelId: 'channel-0'
|
|
24852
|
+
},
|
|
24853
|
+
chain: {
|
|
24854
|
+
channelId: 'channel-105393',
|
|
24855
|
+
path: 'transfer/channel-105393/uqfs'
|
|
24856
|
+
}
|
|
24857
|
+
}],
|
|
24858
|
+
logoURIs: {
|
|
24859
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.png',
|
|
24860
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.svg'
|
|
24861
|
+
},
|
|
24862
|
+
images: [{
|
|
24863
|
+
imageSync: {
|
|
24864
|
+
chainName: 'qfs',
|
|
24865
|
+
baseDenom: 'uqfs'
|
|
24866
|
+
},
|
|
24867
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.png',
|
|
24868
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.svg',
|
|
24869
|
+
theme: {
|
|
24870
|
+
primaryColorHex: '#41918c'
|
|
24871
|
+
}
|
|
24872
|
+
}]
|
|
24873
|
+
},
|
|
24874
|
+
{
|
|
24875
|
+
denomUnits: [{
|
|
24876
|
+
denom: 'ibc/698687E700D8B255FAB6B8145CE25B12591C99296965DB5C2C5DD5FE0AB685BF',
|
|
24877
|
+
exponent: 0,
|
|
24878
|
+
aliases: ['umtgbp']
|
|
24879
|
+
}, {
|
|
24880
|
+
denom: 'mtgbp',
|
|
24881
|
+
exponent: 6,
|
|
24882
|
+
aliases: []
|
|
24883
|
+
}],
|
|
24884
|
+
typeAsset: 'ics20',
|
|
24885
|
+
base: 'ibc/698687E700D8B255FAB6B8145CE25B12591C99296965DB5C2C5DD5FE0AB685BF',
|
|
24886
|
+
name: 'MTGBP',
|
|
24887
|
+
display: 'mtgbp',
|
|
24888
|
+
symbol: 'MTGBP',
|
|
24889
|
+
traces: [{
|
|
24890
|
+
type: 'ibc',
|
|
24891
|
+
counterparty: {
|
|
24892
|
+
chainName: 'mtgbp',
|
|
24893
|
+
baseDenom: 'umtgbp',
|
|
24894
|
+
channelId: 'channel-0'
|
|
24895
|
+
},
|
|
24896
|
+
chain: {
|
|
24897
|
+
channelId: 'channel-105394',
|
|
24898
|
+
path: 'transfer/channel-105394/umtgbp'
|
|
24899
|
+
}
|
|
24900
|
+
}],
|
|
24901
|
+
logoURIs: {
|
|
24902
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.png',
|
|
24903
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.svg'
|
|
24904
|
+
},
|
|
24905
|
+
images: [{
|
|
24906
|
+
imageSync: {
|
|
24907
|
+
chainName: 'mtgbp',
|
|
24908
|
+
baseDenom: 'umtgbp'
|
|
24909
|
+
},
|
|
24910
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.png',
|
|
24911
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.svg',
|
|
24912
|
+
theme: {
|
|
24913
|
+
primaryColorHex: '#41918c'
|
|
24914
|
+
}
|
|
24915
|
+
}]
|
|
24830
24916
|
}
|
|
24831
24917
|
]
|
|
24832
24918
|
};
|
|
@@ -2889,6 +2889,36 @@ const info = [
|
|
|
2889
2889
|
}
|
|
2890
2890
|
}]
|
|
2891
2891
|
},
|
|
2892
|
+
{
|
|
2893
|
+
$schema: '../ibc_data.schema.json',
|
|
2894
|
+
chain1: {
|
|
2895
|
+
chainName: 'mtgbp',
|
|
2896
|
+
clientId: '07-tendermint-0',
|
|
2897
|
+
connectionId: 'connection-0'
|
|
2898
|
+
},
|
|
2899
|
+
chain2: {
|
|
2900
|
+
chainName: 'osmosis',
|
|
2901
|
+
clientId: '07-tendermint-3531',
|
|
2902
|
+
connectionId: 'connection-10772'
|
|
2903
|
+
},
|
|
2904
|
+
channels: [{
|
|
2905
|
+
chain1: {
|
|
2906
|
+
channelId: 'channel-0',
|
|
2907
|
+
portId: 'transfer'
|
|
2908
|
+
},
|
|
2909
|
+
chain2: {
|
|
2910
|
+
channelId: 'channel-105394',
|
|
2911
|
+
portId: 'transfer'
|
|
2912
|
+
},
|
|
2913
|
+
ordering: 'unordered',
|
|
2914
|
+
version: 'ics20-1',
|
|
2915
|
+
tags: {
|
|
2916
|
+
status: 'live',
|
|
2917
|
+
preferred: true,
|
|
2918
|
+
dex: 'osmosis'
|
|
2919
|
+
}
|
|
2920
|
+
}]
|
|
2921
|
+
},
|
|
2892
2922
|
{
|
|
2893
2923
|
$schema: '../ibc_data.schema.json',
|
|
2894
2924
|
chain1: {
|
|
@@ -3690,6 +3720,36 @@ const info = [
|
|
|
3690
3720
|
}
|
|
3691
3721
|
}]
|
|
3692
3722
|
},
|
|
3723
|
+
{
|
|
3724
|
+
$schema: '../ibc_data.schema.json',
|
|
3725
|
+
chain1: {
|
|
3726
|
+
chainName: 'osmosis',
|
|
3727
|
+
clientId: '07-tendermint-3530',
|
|
3728
|
+
connectionId: 'connection-10771'
|
|
3729
|
+
},
|
|
3730
|
+
chain2: {
|
|
3731
|
+
chainName: 'qfs',
|
|
3732
|
+
clientId: '07-tendermint-0',
|
|
3733
|
+
connectionId: 'connection-0'
|
|
3734
|
+
},
|
|
3735
|
+
channels: [{
|
|
3736
|
+
chain1: {
|
|
3737
|
+
channelId: 'channel-105393',
|
|
3738
|
+
portId: 'transfer'
|
|
3739
|
+
},
|
|
3740
|
+
chain2: {
|
|
3741
|
+
channelId: 'channel-0',
|
|
3742
|
+
portId: 'transfer'
|
|
3743
|
+
},
|
|
3744
|
+
ordering: 'unordered',
|
|
3745
|
+
version: 'ics20-1',
|
|
3746
|
+
tags: {
|
|
3747
|
+
status: 'live',
|
|
3748
|
+
preferred: true,
|
|
3749
|
+
dex: 'osmosis'
|
|
3750
|
+
}
|
|
3751
|
+
}]
|
|
3752
|
+
},
|
|
3693
3753
|
{
|
|
3694
3754
|
$schema: '../ibc_data.schema.json',
|
|
3695
3755
|
chain1: {
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'osmosis',
|
|
5
|
+
clientId: '07-tendermint-3530',
|
|
6
|
+
connectionId: 'connection-10771'
|
|
7
|
+
},
|
|
8
|
+
chain2: {
|
|
9
|
+
chainName: 'qfs',
|
|
10
|
+
clientId: '07-tendermint-0',
|
|
11
|
+
connectionId: 'connection-0'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain1: {
|
|
15
|
+
channelId: 'channel-105393',
|
|
16
|
+
portId: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain2: {
|
|
19
|
+
channelId: 'channel-0',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true,
|
|
27
|
+
dex: 'osmosis'
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
}];
|
|
31
|
+
export default info;
|
package/esm/mainnet/qfs/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const info = {
|
|
2
2
|
$schema: '../chain.schema.json',
|
|
3
3
|
chainName: 'sunrise',
|
|
4
|
-
status: '
|
|
4
|
+
status: 'live',
|
|
5
5
|
networkType: 'mainnet',
|
|
6
6
|
website: 'https://sunriselayer.io/',
|
|
7
7
|
prettyName: 'Sunrise',
|
|
@@ -26,29 +26,27 @@ const info = {
|
|
|
26
26
|
denom: 'uvrise'
|
|
27
27
|
}],
|
|
28
28
|
lockDuration: {
|
|
29
|
-
time: '
|
|
29
|
+
time: '1814400s'
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
codebase: {
|
|
33
33
|
gitRepo: 'https://github.com/sunriselayer/sunrise',
|
|
34
|
-
recommendedVersion: '
|
|
35
|
-
compatibleVersions: ['
|
|
34
|
+
recommendedVersion: 'v1.0.0',
|
|
35
|
+
compatibleVersions: ['v1.0.0'],
|
|
36
36
|
binaries: {
|
|
37
|
-
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/
|
|
37
|
+
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/v1.0.0/sunrised-linux-amd64'
|
|
38
38
|
},
|
|
39
39
|
consensus: {
|
|
40
40
|
type: 'cometbft',
|
|
41
|
-
version: 'v0.
|
|
42
|
-
repo: 'https://github.com/sunriselayer/sunrise-core',
|
|
43
|
-
tag: 'v0.0.5-cmt-v0.38.2'
|
|
41
|
+
version: 'v0.38.17'
|
|
44
42
|
},
|
|
45
43
|
sdk: {
|
|
46
44
|
type: 'cosmos',
|
|
47
|
-
version: '
|
|
45
|
+
version: 'v0.53.2'
|
|
48
46
|
},
|
|
49
47
|
ibc: {
|
|
50
48
|
type: 'go',
|
|
51
|
-
version: '
|
|
49
|
+
version: 'v10.3.0'
|
|
52
50
|
}
|
|
53
51
|
},
|
|
54
52
|
logoURIs: {
|
|
@@ -56,11 +54,25 @@ const info = {
|
|
|
56
54
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg'
|
|
57
55
|
},
|
|
58
56
|
apis: {
|
|
59
|
-
rpc: [
|
|
60
|
-
|
|
61
|
-
|
|
57
|
+
rpc: [{
|
|
58
|
+
address: 'https://a.consensus.sunrise-1.sunriselayer.io',
|
|
59
|
+
provider: 'Sunrise Team'
|
|
60
|
+
}],
|
|
61
|
+
rest: [{
|
|
62
|
+
address: 'https://a.consensus.sunrise-1.sunriselayer.io:1318',
|
|
63
|
+
provider: 'Sunrise Team'
|
|
64
|
+
}],
|
|
65
|
+
grpc: [{
|
|
66
|
+
address: 'https://a.consensus.sunrise-1.sunriselayer.io:9092',
|
|
67
|
+
provider: 'Sunrise Team'
|
|
68
|
+
}]
|
|
62
69
|
},
|
|
63
|
-
explorers: [
|
|
70
|
+
explorers: [{
|
|
71
|
+
kind: 'Risescan',
|
|
72
|
+
url: 'https://risescan.sunriselayer.io',
|
|
73
|
+
txPage: 'https://risescan.sunriselayer.io/txs/${txHash}',
|
|
74
|
+
accountPage: 'https://risescan.sunriselayer.io/accounts/${accountAddress}'
|
|
75
|
+
}],
|
|
64
76
|
images: [{
|
|
65
77
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg',
|
|
66
78
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png',
|
|
@@ -5,7 +5,7 @@ const info = {
|
|
|
5
5
|
networkType: 'testnet',
|
|
6
6
|
prettyName: 'Sunrise Testnet',
|
|
7
7
|
chainType: 'cosmos',
|
|
8
|
-
chainId: '
|
|
8
|
+
chainId: 'dawn-1',
|
|
9
9
|
bech32Prefix: 'sunrise',
|
|
10
10
|
daemonName: 'sunrised',
|
|
11
11
|
nodeHome: '$HOME/.sunrise',
|
|
@@ -27,10 +27,10 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
gitRepo: 'https://github.com/sunriselayer/sunrise',
|
|
30
|
-
recommendedVersion: '
|
|
31
|
-
compatibleVersions: ['
|
|
30
|
+
recommendedVersion: 'v1.0.0',
|
|
31
|
+
compatibleVersions: ['v1.0.0'],
|
|
32
32
|
binaries: {
|
|
33
|
-
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/
|
|
33
|
+
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/v1.0.0/sunrised-linux-amd64'
|
|
34
34
|
},
|
|
35
35
|
consensus: {
|
|
36
36
|
type: 'cometbft',
|
|
@@ -42,7 +42,7 @@ const info = {
|
|
|
42
42
|
},
|
|
43
43
|
ibc: {
|
|
44
44
|
type: 'go',
|
|
45
|
-
version: 'v10.
|
|
45
|
+
version: 'v10.3.0'
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
logoURIs: {
|
|
@@ -51,19 +51,24 @@ const info = {
|
|
|
51
51
|
},
|
|
52
52
|
apis: {
|
|
53
53
|
rpc: [{
|
|
54
|
-
address: 'https://sunrise-
|
|
54
|
+
address: 'https://sunrise-dawn-1.cauchye.com',
|
|
55
55
|
provider: 'CauchyE'
|
|
56
56
|
}],
|
|
57
57
|
rest: [{
|
|
58
|
-
address: 'https://sunrise-
|
|
58
|
+
address: 'https://sunrise-dawn-1.cauchye.com:1318',
|
|
59
59
|
provider: 'CauchyE'
|
|
60
60
|
}],
|
|
61
61
|
grpc: [{
|
|
62
|
-
address: 'https://sunrise-
|
|
62
|
+
address: 'https://sunrise-dawn-1.cauchye.com:9092',
|
|
63
63
|
provider: 'CauchyE'
|
|
64
64
|
}]
|
|
65
65
|
},
|
|
66
|
-
explorers: [
|
|
66
|
+
explorers: [{
|
|
67
|
+
kind: 'Risescan',
|
|
68
|
+
url: 'https://dawn-1.risescan.sunriselayer.io',
|
|
69
|
+
txPage: 'https://dawn-1.risescan.sunriselayer.io/txs/${txHash}',
|
|
70
|
+
accountPage: 'https://dawn-1.risescan.sunriselayer.io/accounts/${accountAddress}'
|
|
71
|
+
}],
|
|
67
72
|
images: [{
|
|
68
73
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg',
|
|
69
74
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png'
|
package/mainnet/atomone/chain.js
CHANGED
|
@@ -148,6 +148,10 @@ const info = {
|
|
|
148
148
|
{
|
|
149
149
|
address: 'https://atomone-mainnet-rpc.shazoes.xyz',
|
|
150
150
|
provider: 'Shazoes'
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
address: 'https://rpc-atomone.22node.xyz',
|
|
154
|
+
provider: '22node'
|
|
151
155
|
}
|
|
152
156
|
],
|
|
153
157
|
rest: [
|
|
@@ -234,6 +238,10 @@ const info = {
|
|
|
234
238
|
{
|
|
235
239
|
address: 'https://atomone-mainnet-api.shazoes.xyz',
|
|
236
240
|
provider: 'Shazoes'
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
address: 'https://rest-atomone.22node.xyz',
|
|
244
|
+
provider: '22node'
|
|
237
245
|
}
|
|
238
246
|
],
|
|
239
247
|
grpc: [
|
|
@@ -292,6 +300,10 @@ const info = {
|
|
|
292
300
|
{
|
|
293
301
|
address: 'atomone-mainnet-grpc.shazoes.xyz:12090',
|
|
294
302
|
provider: 'Shazoes'
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
address: 'grpc-atomone.22node.xyz',
|
|
306
|
+
provider: 'Shazoes'
|
|
295
307
|
}
|
|
296
308
|
]
|
|
297
309
|
},
|
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const info = [
|
|
3
|
+
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../ibc_data.schema.json',
|
|
6
|
+
chain1: {
|
|
7
|
+
chainName: 'bitbadges',
|
|
8
|
+
clientId: '07-tendermint-16',
|
|
9
|
+
connectionId: 'connection-8'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'cosmoshub',
|
|
13
|
+
clientId: '07-tendermint-1428',
|
|
14
|
+
connectionId: 'connection-1147'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain1: {
|
|
18
|
+
channelId: 'channel-3',
|
|
19
|
+
portId: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain2: {
|
|
22
|
+
channelId: 'channel-1420',
|
|
23
|
+
portId: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {
|
|
28
|
+
status: 'live',
|
|
29
|
+
preferred: true
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
4
34
|
$schema: '../ibc_data.schema.json',
|
|
5
35
|
chain1: {
|
|
6
36
|
chainName: 'bitbadges',
|
|
@@ -28,7 +58,8 @@ const info = [{
|
|
|
28
58
|
preferred: true
|
|
29
59
|
}
|
|
30
60
|
}]
|
|
31
|
-
},
|
|
61
|
+
},
|
|
62
|
+
{
|
|
32
63
|
$schema: '../ibc_data.schema.json',
|
|
33
64
|
chain1: {
|
|
34
65
|
chainName: 'bitbadges',
|
|
@@ -57,5 +88,6 @@ const info = [{
|
|
|
57
88
|
dex: 'osmosis'
|
|
58
89
|
}
|
|
59
90
|
}]
|
|
60
|
-
}
|
|
91
|
+
}
|
|
92
|
+
];
|
|
61
93
|
exports.default = info;
|
|
@@ -255,6 +255,35 @@ const info = [
|
|
|
255
255
|
}
|
|
256
256
|
}]
|
|
257
257
|
},
|
|
258
|
+
{
|
|
259
|
+
$schema: '../ibc_data.schema.json',
|
|
260
|
+
chain1: {
|
|
261
|
+
chainName: 'bitbadges',
|
|
262
|
+
clientId: '07-tendermint-16',
|
|
263
|
+
connectionId: 'connection-8'
|
|
264
|
+
},
|
|
265
|
+
chain2: {
|
|
266
|
+
chainName: 'cosmoshub',
|
|
267
|
+
clientId: '07-tendermint-1428',
|
|
268
|
+
connectionId: 'connection-1147'
|
|
269
|
+
},
|
|
270
|
+
channels: [{
|
|
271
|
+
chain1: {
|
|
272
|
+
channelId: 'channel-3',
|
|
273
|
+
portId: 'transfer'
|
|
274
|
+
},
|
|
275
|
+
chain2: {
|
|
276
|
+
channelId: 'channel-1420',
|
|
277
|
+
portId: 'transfer'
|
|
278
|
+
},
|
|
279
|
+
ordering: 'unordered',
|
|
280
|
+
version: 'ics20-1',
|
|
281
|
+
tags: {
|
|
282
|
+
status: 'live',
|
|
283
|
+
preferred: true
|
|
284
|
+
}
|
|
285
|
+
}]
|
|
286
|
+
},
|
|
258
287
|
{
|
|
259
288
|
$schema: '../ibc_data.schema.json',
|
|
260
289
|
chain1: {
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -117,6 +117,7 @@ const _medasdigital = __importStar(require("./medasdigital"));
|
|
|
117
117
|
const _meme = __importStar(require("./meme"));
|
|
118
118
|
const _migaloo = __importStar(require("./migaloo"));
|
|
119
119
|
const _milkyway = __importStar(require("./milkyway"));
|
|
120
|
+
const _mtgbp = __importStar(require("./mtgbp"));
|
|
120
121
|
const _neutaro = __importStar(require("./neutaro"));
|
|
121
122
|
const _neutron = __importStar(require("./neutron"));
|
|
122
123
|
const _nibiru = __importStar(require("./nibiru"));
|
|
@@ -142,6 +143,7 @@ const _provenance = __importStar(require("./provenance"));
|
|
|
142
143
|
const _pryzm = __importStar(require("./pryzm"));
|
|
143
144
|
const _pundix = __importStar(require("./pundix"));
|
|
144
145
|
const _pylons = __importStar(require("./pylons"));
|
|
146
|
+
const _qfs = __importStar(require("./qfs"));
|
|
145
147
|
const _quasar = __importStar(require("./quasar"));
|
|
146
148
|
const _quicksilver = __importStar(require("./quicksilver"));
|
|
147
149
|
const _qwoyn = __importStar(require("./qwoyn"));
|
|
@@ -280,6 +282,7 @@ const ibcData = [
|
|
|
280
282
|
..._meme.ibcData,
|
|
281
283
|
..._migaloo.ibcData,
|
|
282
284
|
..._milkyway.ibcData,
|
|
285
|
+
..._mtgbp.ibcData,
|
|
283
286
|
..._neutaro.ibcData,
|
|
284
287
|
..._neutron.ibcData,
|
|
285
288
|
..._nibiru.ibcData,
|
|
@@ -305,6 +308,7 @@ const ibcData = [
|
|
|
305
308
|
..._pryzm.ibcData,
|
|
306
309
|
..._pundix.ibcData,
|
|
307
310
|
..._pylons.ibcData,
|
|
311
|
+
..._qfs.ibcData,
|
|
308
312
|
..._quasar.ibcData,
|
|
309
313
|
..._quicksilver.ibcData,
|
|
310
314
|
..._qwoyn.ibcData,
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'mtgbp',
|
|
7
|
+
clientId: '07-tendermint-0',
|
|
8
|
+
connectionId: 'connection-0'
|
|
9
|
+
},
|
|
10
|
+
chain2: {
|
|
11
|
+
chainName: 'osmosis',
|
|
12
|
+
clientId: '07-tendermint-3531',
|
|
13
|
+
connectionId: 'connection-10772'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-0',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-105394',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true,
|
|
29
|
+
dex: 'osmosis'
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
}];
|
|
33
|
+
exports.default = info;
|
package/mainnet/mtgbp/index.d.ts
CHANGED
package/mainnet/mtgbp/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;
|
|
@@ -24829,6 +24829,92 @@ const info = {
|
|
|
24829
24829
|
primaryColorHex: '#3d3d3d'
|
|
24830
24830
|
}
|
|
24831
24831
|
}]
|
|
24832
|
+
},
|
|
24833
|
+
{
|
|
24834
|
+
denomUnits: [{
|
|
24835
|
+
denom: 'ibc/83A99F99AF326090B74CD5D17EE61776C7791B537EE6808F4951A184EDCCA0D9',
|
|
24836
|
+
exponent: 0,
|
|
24837
|
+
aliases: ['uqfs']
|
|
24838
|
+
}, {
|
|
24839
|
+
denom: 'qfs',
|
|
24840
|
+
exponent: 6,
|
|
24841
|
+
aliases: []
|
|
24842
|
+
}],
|
|
24843
|
+
typeAsset: 'ics20',
|
|
24844
|
+
base: 'ibc/83A99F99AF326090B74CD5D17EE61776C7791B537EE6808F4951A184EDCCA0D9',
|
|
24845
|
+
name: 'QFS',
|
|
24846
|
+
display: 'qfs',
|
|
24847
|
+
symbol: 'QFS',
|
|
24848
|
+
traces: [{
|
|
24849
|
+
type: 'ibc',
|
|
24850
|
+
counterparty: {
|
|
24851
|
+
chainName: 'qfs',
|
|
24852
|
+
baseDenom: 'uqfs',
|
|
24853
|
+
channelId: 'channel-0'
|
|
24854
|
+
},
|
|
24855
|
+
chain: {
|
|
24856
|
+
channelId: 'channel-105393',
|
|
24857
|
+
path: 'transfer/channel-105393/uqfs'
|
|
24858
|
+
}
|
|
24859
|
+
}],
|
|
24860
|
+
logoURIs: {
|
|
24861
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.png',
|
|
24862
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.svg'
|
|
24863
|
+
},
|
|
24864
|
+
images: [{
|
|
24865
|
+
imageSync: {
|
|
24866
|
+
chainName: 'qfs',
|
|
24867
|
+
baseDenom: 'uqfs'
|
|
24868
|
+
},
|
|
24869
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.png',
|
|
24870
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.svg',
|
|
24871
|
+
theme: {
|
|
24872
|
+
primaryColorHex: '#41918c'
|
|
24873
|
+
}
|
|
24874
|
+
}]
|
|
24875
|
+
},
|
|
24876
|
+
{
|
|
24877
|
+
denomUnits: [{
|
|
24878
|
+
denom: 'ibc/698687E700D8B255FAB6B8145CE25B12591C99296965DB5C2C5DD5FE0AB685BF',
|
|
24879
|
+
exponent: 0,
|
|
24880
|
+
aliases: ['umtgbp']
|
|
24881
|
+
}, {
|
|
24882
|
+
denom: 'mtgbp',
|
|
24883
|
+
exponent: 6,
|
|
24884
|
+
aliases: []
|
|
24885
|
+
}],
|
|
24886
|
+
typeAsset: 'ics20',
|
|
24887
|
+
base: 'ibc/698687E700D8B255FAB6B8145CE25B12591C99296965DB5C2C5DD5FE0AB685BF',
|
|
24888
|
+
name: 'MTGBP',
|
|
24889
|
+
display: 'mtgbp',
|
|
24890
|
+
symbol: 'MTGBP',
|
|
24891
|
+
traces: [{
|
|
24892
|
+
type: 'ibc',
|
|
24893
|
+
counterparty: {
|
|
24894
|
+
chainName: 'mtgbp',
|
|
24895
|
+
baseDenom: 'umtgbp',
|
|
24896
|
+
channelId: 'channel-0'
|
|
24897
|
+
},
|
|
24898
|
+
chain: {
|
|
24899
|
+
channelId: 'channel-105394',
|
|
24900
|
+
path: 'transfer/channel-105394/umtgbp'
|
|
24901
|
+
}
|
|
24902
|
+
}],
|
|
24903
|
+
logoURIs: {
|
|
24904
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.png',
|
|
24905
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.svg'
|
|
24906
|
+
},
|
|
24907
|
+
images: [{
|
|
24908
|
+
imageSync: {
|
|
24909
|
+
chainName: 'mtgbp',
|
|
24910
|
+
baseDenom: 'umtgbp'
|
|
24911
|
+
},
|
|
24912
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.png',
|
|
24913
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.svg',
|
|
24914
|
+
theme: {
|
|
24915
|
+
primaryColorHex: '#41918c'
|
|
24916
|
+
}
|
|
24917
|
+
}]
|
|
24832
24918
|
}
|
|
24833
24919
|
]
|
|
24834
24920
|
};
|
|
@@ -2891,6 +2891,36 @@ const info = [
|
|
|
2891
2891
|
}
|
|
2892
2892
|
}]
|
|
2893
2893
|
},
|
|
2894
|
+
{
|
|
2895
|
+
$schema: '../ibc_data.schema.json',
|
|
2896
|
+
chain1: {
|
|
2897
|
+
chainName: 'mtgbp',
|
|
2898
|
+
clientId: '07-tendermint-0',
|
|
2899
|
+
connectionId: 'connection-0'
|
|
2900
|
+
},
|
|
2901
|
+
chain2: {
|
|
2902
|
+
chainName: 'osmosis',
|
|
2903
|
+
clientId: '07-tendermint-3531',
|
|
2904
|
+
connectionId: 'connection-10772'
|
|
2905
|
+
},
|
|
2906
|
+
channels: [{
|
|
2907
|
+
chain1: {
|
|
2908
|
+
channelId: 'channel-0',
|
|
2909
|
+
portId: 'transfer'
|
|
2910
|
+
},
|
|
2911
|
+
chain2: {
|
|
2912
|
+
channelId: 'channel-105394',
|
|
2913
|
+
portId: 'transfer'
|
|
2914
|
+
},
|
|
2915
|
+
ordering: 'unordered',
|
|
2916
|
+
version: 'ics20-1',
|
|
2917
|
+
tags: {
|
|
2918
|
+
status: 'live',
|
|
2919
|
+
preferred: true,
|
|
2920
|
+
dex: 'osmosis'
|
|
2921
|
+
}
|
|
2922
|
+
}]
|
|
2923
|
+
},
|
|
2894
2924
|
{
|
|
2895
2925
|
$schema: '../ibc_data.schema.json',
|
|
2896
2926
|
chain1: {
|
|
@@ -3692,6 +3722,36 @@ const info = [
|
|
|
3692
3722
|
}
|
|
3693
3723
|
}]
|
|
3694
3724
|
},
|
|
3725
|
+
{
|
|
3726
|
+
$schema: '../ibc_data.schema.json',
|
|
3727
|
+
chain1: {
|
|
3728
|
+
chainName: 'osmosis',
|
|
3729
|
+
clientId: '07-tendermint-3530',
|
|
3730
|
+
connectionId: 'connection-10771'
|
|
3731
|
+
},
|
|
3732
|
+
chain2: {
|
|
3733
|
+
chainName: 'qfs',
|
|
3734
|
+
clientId: '07-tendermint-0',
|
|
3735
|
+
connectionId: 'connection-0'
|
|
3736
|
+
},
|
|
3737
|
+
channels: [{
|
|
3738
|
+
chain1: {
|
|
3739
|
+
channelId: 'channel-105393',
|
|
3740
|
+
portId: 'transfer'
|
|
3741
|
+
},
|
|
3742
|
+
chain2: {
|
|
3743
|
+
channelId: 'channel-0',
|
|
3744
|
+
portId: 'transfer'
|
|
3745
|
+
},
|
|
3746
|
+
ordering: 'unordered',
|
|
3747
|
+
version: 'ics20-1',
|
|
3748
|
+
tags: {
|
|
3749
|
+
status: 'live',
|
|
3750
|
+
preferred: true,
|
|
3751
|
+
dex: 'osmosis'
|
|
3752
|
+
}
|
|
3753
|
+
}]
|
|
3754
|
+
},
|
|
3695
3755
|
{
|
|
3696
3756
|
$schema: '../ibc_data.schema.json',
|
|
3697
3757
|
chain1: {
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
clientId: '07-tendermint-3530',
|
|
8
|
+
connectionId: 'connection-10771'
|
|
9
|
+
},
|
|
10
|
+
chain2: {
|
|
11
|
+
chainName: 'qfs',
|
|
12
|
+
clientId: '07-tendermint-0',
|
|
13
|
+
connectionId: 'connection-0'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-105393',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-0',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true,
|
|
29
|
+
dex: 'osmosis'
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
}];
|
|
33
|
+
exports.default = info;
|
package/mainnet/qfs/index.d.ts
CHANGED
package/mainnet/qfs/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/mainnet/sunrise/chain.js
CHANGED
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const info = {
|
|
4
4
|
$schema: '../chain.schema.json',
|
|
5
5
|
chainName: 'sunrise',
|
|
6
|
-
status: '
|
|
6
|
+
status: 'live',
|
|
7
7
|
networkType: 'mainnet',
|
|
8
8
|
website: 'https://sunriselayer.io/',
|
|
9
9
|
prettyName: 'Sunrise',
|
|
@@ -28,29 +28,27 @@ const info = {
|
|
|
28
28
|
denom: 'uvrise'
|
|
29
29
|
}],
|
|
30
30
|
lockDuration: {
|
|
31
|
-
time: '
|
|
31
|
+
time: '1814400s'
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
codebase: {
|
|
35
35
|
gitRepo: 'https://github.com/sunriselayer/sunrise',
|
|
36
|
-
recommendedVersion: '
|
|
37
|
-
compatibleVersions: ['
|
|
36
|
+
recommendedVersion: 'v1.0.0',
|
|
37
|
+
compatibleVersions: ['v1.0.0'],
|
|
38
38
|
binaries: {
|
|
39
|
-
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/
|
|
39
|
+
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/v1.0.0/sunrised-linux-amd64'
|
|
40
40
|
},
|
|
41
41
|
consensus: {
|
|
42
42
|
type: 'cometbft',
|
|
43
|
-
version: 'v0.
|
|
44
|
-
repo: 'https://github.com/sunriselayer/sunrise-core',
|
|
45
|
-
tag: 'v0.0.5-cmt-v0.38.2'
|
|
43
|
+
version: 'v0.38.17'
|
|
46
44
|
},
|
|
47
45
|
sdk: {
|
|
48
46
|
type: 'cosmos',
|
|
49
|
-
version: '
|
|
47
|
+
version: 'v0.53.2'
|
|
50
48
|
},
|
|
51
49
|
ibc: {
|
|
52
50
|
type: 'go',
|
|
53
|
-
version: '
|
|
51
|
+
version: 'v10.3.0'
|
|
54
52
|
}
|
|
55
53
|
},
|
|
56
54
|
logoURIs: {
|
|
@@ -58,11 +56,25 @@ const info = {
|
|
|
58
56
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg'
|
|
59
57
|
},
|
|
60
58
|
apis: {
|
|
61
|
-
rpc: [
|
|
62
|
-
|
|
63
|
-
|
|
59
|
+
rpc: [{
|
|
60
|
+
address: 'https://a.consensus.sunrise-1.sunriselayer.io',
|
|
61
|
+
provider: 'Sunrise Team'
|
|
62
|
+
}],
|
|
63
|
+
rest: [{
|
|
64
|
+
address: 'https://a.consensus.sunrise-1.sunriselayer.io:1318',
|
|
65
|
+
provider: 'Sunrise Team'
|
|
66
|
+
}],
|
|
67
|
+
grpc: [{
|
|
68
|
+
address: 'https://a.consensus.sunrise-1.sunriselayer.io:9092',
|
|
69
|
+
provider: 'Sunrise Team'
|
|
70
|
+
}]
|
|
64
71
|
},
|
|
65
|
-
explorers: [
|
|
72
|
+
explorers: [{
|
|
73
|
+
kind: 'Risescan',
|
|
74
|
+
url: 'https://risescan.sunriselayer.io',
|
|
75
|
+
txPage: 'https://risescan.sunriselayer.io/txs/${txHash}',
|
|
76
|
+
accountPage: 'https://risescan.sunriselayer.io/accounts/${accountAddress}'
|
|
77
|
+
}],
|
|
66
78
|
images: [{
|
|
67
79
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg',
|
|
68
80
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.36",
|
|
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.36"
|
|
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": "caead2bfe2de3fc9a97039711d55d29767741552"
|
|
43
43
|
}
|
|
@@ -7,7 +7,7 @@ const info = {
|
|
|
7
7
|
networkType: 'testnet',
|
|
8
8
|
prettyName: 'Sunrise Testnet',
|
|
9
9
|
chainType: 'cosmos',
|
|
10
|
-
chainId: '
|
|
10
|
+
chainId: 'dawn-1',
|
|
11
11
|
bech32Prefix: 'sunrise',
|
|
12
12
|
daemonName: 'sunrised',
|
|
13
13
|
nodeHome: '$HOME/.sunrise',
|
|
@@ -29,10 +29,10 @@ const info = {
|
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
31
|
gitRepo: 'https://github.com/sunriselayer/sunrise',
|
|
32
|
-
recommendedVersion: '
|
|
33
|
-
compatibleVersions: ['
|
|
32
|
+
recommendedVersion: 'v1.0.0',
|
|
33
|
+
compatibleVersions: ['v1.0.0'],
|
|
34
34
|
binaries: {
|
|
35
|
-
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/
|
|
35
|
+
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/v1.0.0/sunrised-linux-amd64'
|
|
36
36
|
},
|
|
37
37
|
consensus: {
|
|
38
38
|
type: 'cometbft',
|
|
@@ -44,7 +44,7 @@ const info = {
|
|
|
44
44
|
},
|
|
45
45
|
ibc: {
|
|
46
46
|
type: 'go',
|
|
47
|
-
version: 'v10.
|
|
47
|
+
version: 'v10.3.0'
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
logoURIs: {
|
|
@@ -53,19 +53,24 @@ const info = {
|
|
|
53
53
|
},
|
|
54
54
|
apis: {
|
|
55
55
|
rpc: [{
|
|
56
|
-
address: 'https://sunrise-
|
|
56
|
+
address: 'https://sunrise-dawn-1.cauchye.com',
|
|
57
57
|
provider: 'CauchyE'
|
|
58
58
|
}],
|
|
59
59
|
rest: [{
|
|
60
|
-
address: 'https://sunrise-
|
|
60
|
+
address: 'https://sunrise-dawn-1.cauchye.com:1318',
|
|
61
61
|
provider: 'CauchyE'
|
|
62
62
|
}],
|
|
63
63
|
grpc: [{
|
|
64
|
-
address: 'https://sunrise-
|
|
64
|
+
address: 'https://sunrise-dawn-1.cauchye.com:9092',
|
|
65
65
|
provider: 'CauchyE'
|
|
66
66
|
}]
|
|
67
67
|
},
|
|
68
|
-
explorers: [
|
|
68
|
+
explorers: [{
|
|
69
|
+
kind: 'Risescan',
|
|
70
|
+
url: 'https://dawn-1.risescan.sunriselayer.io',
|
|
71
|
+
txPage: 'https://dawn-1.risescan.sunriselayer.io/txs/${txHash}',
|
|
72
|
+
accountPage: 'https://dawn-1.risescan.sunriselayer.io/accounts/${accountAddress}'
|
|
73
|
+
}],
|
|
69
74
|
images: [{
|
|
70
75
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg',
|
|
71
76
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png'
|