chain-registry 2.0.148 → 2.0.150
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/arkeo/chain.js +18 -3
- package/esm/mainnet/asset-lists.js +2 -0
- package/esm/mainnet/babylon/chain.js +12 -0
- package/esm/mainnet/celestia/chain.js +13 -1
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/cosmoshub/ibc-data.js +6 -6
- package/esm/mainnet/divine/ibc-data.js +12 -12
- package/esm/mainnet/evmos/chain.js +0 -16
- package/esm/mainnet/juno/chain.js +4 -0
- package/esm/mainnet/lumen/asset-list.js +30 -0
- package/esm/mainnet/lumen/chain.js +148 -0
- package/esm/mainnet/lumen/index.js +4 -0
- package/esm/mainnet/nillion/chain.js +12 -0
- package/esm/mainnet/osmosis/asset-list.js +43 -0
- package/esm/mainnet/osmosis/ibc-data.js +6 -6
- package/esm/mainnet/persistence/chain.js +1 -1
- package/esm/mainnet/quicksilver/chain.js +4 -0
- package/esm/mainnet/sentinel/chain.js +12 -0
- package/esm/testnet/divinetestnet/ibc-data.js +6 -6
- package/esm/testnet/osmosistestnet/ibc-data.js +6 -6
- package/mainnet/arkeo/chain.js +18 -3
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/babylon/chain.js +12 -0
- package/mainnet/celestia/chain.js +13 -1
- package/mainnet/chains.js +2 -0
- package/mainnet/cosmoshub/ibc-data.js +6 -6
- package/mainnet/divine/ibc-data.js +12 -12
- package/mainnet/evmos/chain.js +0 -16
- package/mainnet/juno/chain.js +4 -0
- package/mainnet/lumen/asset-list.d.ts +3 -0
- package/mainnet/lumen/asset-list.js +32 -0
- package/mainnet/lumen/chain.d.ts +3 -0
- package/mainnet/lumen/chain.js +150 -0
- package/mainnet/lumen/index.d.ts +2 -0
- package/mainnet/lumen/index.js +10 -0
- package/mainnet/nillion/chain.js +12 -0
- package/mainnet/osmosis/asset-list.js +43 -0
- package/mainnet/osmosis/ibc-data.js +6 -6
- package/mainnet/persistence/chain.js +1 -1
- package/mainnet/quicksilver/chain.js +4 -0
- package/mainnet/sentinel/chain.js +12 -0
- package/package.json +3 -3
- package/testnet/divinetestnet/ibc-data.js +6 -6
- package/testnet/osmosistestnet/ibc-data.js +6 -6
|
@@ -66,6 +66,10 @@ const info = {
|
|
|
66
66
|
{
|
|
67
67
|
address: 'https://rpc.arkeo.nodestake.org',
|
|
68
68
|
provider: 'NodeStake'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
address: 'https://rpc.arkeo.validatus.com',
|
|
72
|
+
provider: 'Validatus'
|
|
69
73
|
}
|
|
70
74
|
],
|
|
71
75
|
rest: [
|
|
@@ -84,15 +88,26 @@ const info = {
|
|
|
84
88
|
{
|
|
85
89
|
address: 'https://api.arkeo.nodestake.org',
|
|
86
90
|
provider: 'NodeStake'
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
address: 'https://api.arkeo.validatus.com',
|
|
94
|
+
provider: 'Validatus'
|
|
87
95
|
}
|
|
88
96
|
],
|
|
89
|
-
grpc: [
|
|
97
|
+
grpc: [
|
|
98
|
+
{
|
|
90
99
|
address: 'grpc.arkeo.roomit.xyz:8443',
|
|
91
100
|
provider: 'Roomit'
|
|
92
|
-
},
|
|
101
|
+
},
|
|
102
|
+
{
|
|
93
103
|
address: 'https://grpc.arkeo.nodestake.org:443',
|
|
94
104
|
provider: 'NodeStake'
|
|
95
|
-
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
address: 'https://grpc.arkeo.validatus.com:443',
|
|
108
|
+
provider: 'Validatus'
|
|
109
|
+
}
|
|
110
|
+
]
|
|
96
111
|
},
|
|
97
112
|
explorers: [
|
|
98
113
|
{
|
|
@@ -117,6 +117,7 @@ import * as _lombardledger from './lombardledger';
|
|
|
117
117
|
import * as _loop from './loop';
|
|
118
118
|
import * as _lorenzo from './lorenzo';
|
|
119
119
|
import * as _loyal from './loyal';
|
|
120
|
+
import * as _lumen from './lumen';
|
|
120
121
|
import * as _lumera from './lumera';
|
|
121
122
|
import * as _lumnetwork from './lumnetwork';
|
|
122
123
|
import * as _mande from './mande';
|
|
@@ -344,6 +345,7 @@ const assetList = [
|
|
|
344
345
|
_loop.assetList,
|
|
345
346
|
_lorenzo.assetList,
|
|
346
347
|
_loyal.assetList,
|
|
348
|
+
_lumen.assetList,
|
|
347
349
|
_lumera.assetList,
|
|
348
350
|
_lumnetwork.assetList,
|
|
349
351
|
_mande.assetList,
|
|
@@ -106,6 +106,10 @@ const info = {
|
|
|
106
106
|
{
|
|
107
107
|
address: 'https://babylon-mainnet-rpc.shazoes.xyz',
|
|
108
108
|
provider: 'Shazoes'
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
address: 'https://rpc.babylon.validatus.com',
|
|
112
|
+
provider: 'Validatus'
|
|
109
113
|
}
|
|
110
114
|
],
|
|
111
115
|
rest: [
|
|
@@ -148,6 +152,10 @@ const info = {
|
|
|
148
152
|
{
|
|
149
153
|
address: 'https://babylon-mainnet-api.shazoes.xyz',
|
|
150
154
|
provider: 'Shazoes'
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
address: 'https://api.babylon.validatus.com',
|
|
158
|
+
provider: 'Validatus'
|
|
151
159
|
}
|
|
152
160
|
],
|
|
153
161
|
grpc: [
|
|
@@ -186,6 +194,10 @@ const info = {
|
|
|
186
194
|
{
|
|
187
195
|
address: 'babylon-mainnet-grpc.shazoes.xyz:30190',
|
|
188
196
|
provider: 'Shazoes'
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
address: 'grpc.babylon.validatus.com:443',
|
|
200
|
+
provider: 'Validatus'
|
|
189
201
|
}
|
|
190
202
|
]
|
|
191
203
|
},
|
|
@@ -183,6 +183,10 @@ const info = {
|
|
|
183
183
|
{
|
|
184
184
|
address: 'https://rpc.celestia.node75.org',
|
|
185
185
|
provider: 'Pro-Nodes75'
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
address: 'https://rpc.archive.celestia.validatus.com',
|
|
189
|
+
provider: 'Validatus'
|
|
186
190
|
}
|
|
187
191
|
],
|
|
188
192
|
rest: [
|
|
@@ -293,6 +297,10 @@ const info = {
|
|
|
293
297
|
{
|
|
294
298
|
address: 'https://api.celestia.node75.org',
|
|
295
299
|
provider: 'Pro-Nodes75'
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
address: 'https://api.archive.celestia.validatus.com',
|
|
303
|
+
provider: 'Validatus'
|
|
296
304
|
}
|
|
297
305
|
],
|
|
298
306
|
grpc: [
|
|
@@ -345,7 +353,7 @@ const info = {
|
|
|
345
353
|
provider: 'AM Solutions'
|
|
346
354
|
},
|
|
347
355
|
{
|
|
348
|
-
address: 'grpc.celestia.validatus.com',
|
|
356
|
+
address: 'grpc.celestia.validatus.com:443',
|
|
349
357
|
provider: 'Validatus'
|
|
350
358
|
},
|
|
351
359
|
{
|
|
@@ -387,6 +395,10 @@ const info = {
|
|
|
387
395
|
{
|
|
388
396
|
address: 'grpc.celestia.node75.org:9220',
|
|
389
397
|
provider: 'Pro-Nodes75'
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
address: 'grpc.archive.celestia.validatus.com:2125',
|
|
401
|
+
provider: 'Validatus'
|
|
390
402
|
}
|
|
391
403
|
]
|
|
392
404
|
},
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -117,6 +117,7 @@ import * as _lombardledger from './lombardledger';
|
|
|
117
117
|
import * as _loop from './loop';
|
|
118
118
|
import * as _lorenzo from './lorenzo';
|
|
119
119
|
import * as _loyal from './loyal';
|
|
120
|
+
import * as _lumen from './lumen';
|
|
120
121
|
import * as _lumera from './lumera';
|
|
121
122
|
import * as _lumnetwork from './lumnetwork';
|
|
122
123
|
import * as _mande from './mande';
|
|
@@ -344,6 +345,7 @@ const chains = [
|
|
|
344
345
|
_loop.chain,
|
|
345
346
|
_lorenzo.chain,
|
|
346
347
|
_loyal.chain,
|
|
348
|
+
_lumen.chain,
|
|
347
349
|
_lumera.chain,
|
|
348
350
|
_lumnetwork.chain,
|
|
349
351
|
_mande.chain,
|
|
@@ -642,22 +642,22 @@ const info = [
|
|
|
642
642
|
chain1: {
|
|
643
643
|
chainName: 'cosmoshub',
|
|
644
644
|
chainId: 'cosmoshub-4',
|
|
645
|
-
clientId: '07-tendermint-
|
|
646
|
-
connectionId: 'connection-
|
|
645
|
+
clientId: '07-tendermint-1467',
|
|
646
|
+
connectionId: 'connection-1205'
|
|
647
647
|
},
|
|
648
648
|
chain2: {
|
|
649
649
|
chainName: 'divine',
|
|
650
650
|
chainId: 'divine-1',
|
|
651
|
-
clientId: '07-tendermint-
|
|
652
|
-
connectionId: 'connection-
|
|
651
|
+
clientId: '07-tendermint-14',
|
|
652
|
+
connectionId: 'connection-9'
|
|
653
653
|
},
|
|
654
654
|
channels: [{
|
|
655
655
|
chain1: {
|
|
656
|
-
channelId: 'channel-
|
|
656
|
+
channelId: 'channel-1742',
|
|
657
657
|
portId: 'transfer'
|
|
658
658
|
},
|
|
659
659
|
chain2: {
|
|
660
|
-
channelId: 'channel-
|
|
660
|
+
channelId: 'channel-4',
|
|
661
661
|
portId: 'transfer'
|
|
662
662
|
},
|
|
663
663
|
ordering: 'unordered',
|
|
@@ -3,22 +3,22 @@ const info = [{
|
|
|
3
3
|
chain1: {
|
|
4
4
|
chainName: 'cosmoshub',
|
|
5
5
|
chainId: 'cosmoshub-4',
|
|
6
|
-
clientId: '07-tendermint-
|
|
7
|
-
connectionId: 'connection-
|
|
6
|
+
clientId: '07-tendermint-1467',
|
|
7
|
+
connectionId: 'connection-1205'
|
|
8
8
|
},
|
|
9
9
|
chain2: {
|
|
10
10
|
chainName: 'divine',
|
|
11
11
|
chainId: 'divine-1',
|
|
12
|
-
clientId: '07-tendermint-
|
|
13
|
-
connectionId: 'connection-
|
|
12
|
+
clientId: '07-tendermint-14',
|
|
13
|
+
connectionId: 'connection-9'
|
|
14
14
|
},
|
|
15
15
|
channels: [{
|
|
16
16
|
chain1: {
|
|
17
|
-
channelId: 'channel-
|
|
17
|
+
channelId: 'channel-1742',
|
|
18
18
|
portId: 'transfer'
|
|
19
19
|
},
|
|
20
20
|
chain2: {
|
|
21
|
-
channelId: 'channel-
|
|
21
|
+
channelId: 'channel-4',
|
|
22
22
|
portId: 'transfer'
|
|
23
23
|
},
|
|
24
24
|
ordering: 'unordered',
|
|
@@ -33,22 +33,22 @@ const info = [{
|
|
|
33
33
|
chain1: {
|
|
34
34
|
chainName: 'divine',
|
|
35
35
|
chainId: 'divine-1',
|
|
36
|
-
clientId: '07-tendermint-
|
|
37
|
-
connectionId: 'connection-
|
|
36
|
+
clientId: '07-tendermint-10',
|
|
37
|
+
connectionId: 'connection-8'
|
|
38
38
|
},
|
|
39
39
|
chain2: {
|
|
40
40
|
chainName: 'osmosis',
|
|
41
41
|
chainId: 'osmosis-1',
|
|
42
|
-
clientId: '07-tendermint-
|
|
43
|
-
connectionId: 'connection-
|
|
42
|
+
clientId: '07-tendermint-3667',
|
|
43
|
+
connectionId: 'connection-11030'
|
|
44
44
|
},
|
|
45
45
|
channels: [{
|
|
46
46
|
chain1: {
|
|
47
|
-
channelId: 'channel-
|
|
47
|
+
channelId: 'channel-3',
|
|
48
48
|
portId: 'transfer'
|
|
49
49
|
},
|
|
50
50
|
chain2: {
|
|
51
|
-
channelId: 'channel-
|
|
51
|
+
channelId: 'channel-108909',
|
|
52
52
|
portId: 'transfer'
|
|
53
53
|
},
|
|
54
54
|
ordering: 'unordered',
|
|
@@ -132,10 +132,6 @@ const info = {
|
|
|
132
132
|
address: 'https://evmos-mainnet.rpc.stakevillage.net:443',
|
|
133
133
|
provider: 'Stake Village'
|
|
134
134
|
},
|
|
135
|
-
{
|
|
136
|
-
address: 'https://rpc.evmos.validatus.com',
|
|
137
|
-
provider: 'Validatus'
|
|
138
|
-
},
|
|
139
135
|
{
|
|
140
136
|
address: 'https://rpc.evmos.bronbro.io:443',
|
|
141
137
|
provider: 'Bro_n_Bro'
|
|
@@ -214,10 +210,6 @@ const info = {
|
|
|
214
210
|
address: 'https://evmos-mainnet.api.stakevillage.net',
|
|
215
211
|
provider: 'Stake Village'
|
|
216
212
|
},
|
|
217
|
-
{
|
|
218
|
-
address: 'https://api.evmos.validatus.com',
|
|
219
|
-
provider: 'Validatus'
|
|
220
|
-
},
|
|
221
213
|
{
|
|
222
214
|
address: 'https://lcd.evmos.bronbro.io:443',
|
|
223
215
|
provider: 'Bro_n_Bro'
|
|
@@ -284,10 +276,6 @@ const info = {
|
|
|
284
276
|
address: 'evmos-mainnet.grpc.stakevillage.net:16990',
|
|
285
277
|
provider: 'Stake Village'
|
|
286
278
|
},
|
|
287
|
-
{
|
|
288
|
-
address: 'grpc.evmos.validatus.com:443',
|
|
289
|
-
provider: 'Validatus'
|
|
290
|
-
},
|
|
291
279
|
{
|
|
292
280
|
address: 'https://grpc.evmos.bronbro.io:443',
|
|
293
281
|
provider: 'Bro_n_Bro'
|
|
@@ -345,10 +333,6 @@ const info = {
|
|
|
345
333
|
{
|
|
346
334
|
address: 'https://evmos-mainnet.jsonrpc.stakevillage.net',
|
|
347
335
|
provider: 'Stake Village'
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
address: 'https://json-rpc.evmos.validatus.com',
|
|
351
|
-
provider: 'Validatus'
|
|
352
336
|
}
|
|
353
337
|
]
|
|
354
338
|
},
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'lumen',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native staking token of Lumen.',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'ulmn',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'lmn',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
base: 'ulmn',
|
|
14
|
+
name: 'Lumen',
|
|
15
|
+
display: 'lmn',
|
|
16
|
+
symbol: 'LMN',
|
|
17
|
+
images: [{
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lmn.png'
|
|
19
|
+
}],
|
|
20
|
+
socials: {
|
|
21
|
+
website: 'https://lumen-network.org/',
|
|
22
|
+
github: 'https://github.com/network-lumen/',
|
|
23
|
+
telegram: 'https://t.me/+HBWh_cUJCrZiODE0',
|
|
24
|
+
discord: 'https://discord.gg/DwK6V9shKc',
|
|
25
|
+
x: 'https://x.com/LumenStack'
|
|
26
|
+
},
|
|
27
|
+
typeAsset: 'sdk.coin'
|
|
28
|
+
}]
|
|
29
|
+
};
|
|
30
|
+
export default info;
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'lumen',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
website: 'https://lumen-network.org/',
|
|
7
|
+
prettyName: 'Lumen',
|
|
8
|
+
description: 'Lumen is a Cosmos SDK chain focused on DNS auctions, release distribution, and gateway settlement flows.',
|
|
9
|
+
chainType: 'cosmos',
|
|
10
|
+
chainId: 'lumen',
|
|
11
|
+
bech32Prefix: 'lmn',
|
|
12
|
+
daemonName: 'lumend',
|
|
13
|
+
nodeHome: '$HOME/.lumen',
|
|
14
|
+
keyAlgos: ['secp256k1'],
|
|
15
|
+
slip44: 118,
|
|
16
|
+
fees: {
|
|
17
|
+
feeTokens: [{
|
|
18
|
+
denom: 'ulmn',
|
|
19
|
+
fixedMinGasPrice: 0,
|
|
20
|
+
lowGasPrice: 0,
|
|
21
|
+
averageGasPrice: 0,
|
|
22
|
+
highGasPrice: 0
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
stakingTokens: [{
|
|
27
|
+
denom: 'ulmn'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
codebase: {
|
|
31
|
+
gitRepo: 'https://github.com/network-lumen/blockchain',
|
|
32
|
+
recommendedVersion: 'v1.4.3',
|
|
33
|
+
compatibleVersions: ['v1.4.3'],
|
|
34
|
+
genesis: {
|
|
35
|
+
genesisUrl: 'https://raw.githubusercontent.com/network-lumen/validator-kit/master/config/genesis.json'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
apis: {
|
|
39
|
+
rpc: [
|
|
40
|
+
{
|
|
41
|
+
address: 'https://lumen-rpc.linknode.org',
|
|
42
|
+
provider: 'AstroStake'
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
address: 'https://rpc.lumen.chaintools.tech',
|
|
46
|
+
provider: 'ChainTools'
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
address: 'https://lumen.blocksync.me/rpc',
|
|
50
|
+
provider: 'BlockSync'
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
address: 'https://lumen-mainnet-rpc.mekonglabs.com',
|
|
54
|
+
provider: 'MekongLabs'
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
address: 'https://rpc-lumen.onenov.xyz',
|
|
58
|
+
provider: 'OneNov'
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
rest: [
|
|
62
|
+
{
|
|
63
|
+
address: 'https://lumen-api.linknode.org',
|
|
64
|
+
provider: 'AstroStake'
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
address: 'https://api.lumen.chaintools.tech',
|
|
68
|
+
provider: 'ChainTools'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
address: 'https://lumen-mainnet-api.mekonglabs.com/',
|
|
72
|
+
provider: 'MekongLabs'
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
grpc: [
|
|
76
|
+
{
|
|
77
|
+
address: 'lumen-grpc.linknode.org:443',
|
|
78
|
+
provider: 'AstroStake'
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
address: 'lumen-grpc.blocksync.me:443',
|
|
82
|
+
provider: 'BlockSync'
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
address: 'lumen-mainnet-grpc.mekonglabs.tech:35090',
|
|
86
|
+
provider: 'MekongLabs'
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
},
|
|
90
|
+
explorers: [
|
|
91
|
+
{
|
|
92
|
+
kind: 'MekongLabs',
|
|
93
|
+
url: 'https://explorer.mekonglabs.com/lumen-mainnet'
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
kind: 'OneNov',
|
|
97
|
+
url: 'https://explorer.onenov.xyz/lumen'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
kind: 'WinSnip',
|
|
101
|
+
url: 'https://winscan.winsnip.xyz/lumen-mainnet'
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
kind: 'AstroStake',
|
|
105
|
+
url: 'https://stake.astrostake.xyz/lumen'
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
kind: 'Gombezzz',
|
|
109
|
+
url: 'https://explorer.gombezzz.xyz/lumen-mainnet'
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
kind: 'Node9x',
|
|
113
|
+
url: 'https://explorer.node9x.com/lumen'
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
kind: 'OneNov (OV)',
|
|
117
|
+
url: 'https://ov-explorer.onenov.xyz/network/lumen'
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
kind: 'UTSA',
|
|
121
|
+
url: 'https://exp.utsa.tech/lumen/staking'
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
kind: 'Stavr',
|
|
125
|
+
url: 'https://explorer.stavr.tech/Lumen-Mainnet/staking'
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
kind: 'ChainTools',
|
|
129
|
+
url: 'https://explorer.chaintools.tech/lumen'
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
kind: 'Maouam',
|
|
133
|
+
url: 'https://explorer.maouam.xyz/lumen-mainnet'
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
kind: 'Blocksync',
|
|
137
|
+
url: 'https://dashboard.blocksync.me/lumen'
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
kind: 'Indonode',
|
|
141
|
+
url: 'https://explorer.indonode.net/lumen'
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
images: [{
|
|
145
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lumen.png'
|
|
146
|
+
}]
|
|
147
|
+
};
|
|
148
|
+
export default info;
|
|
@@ -64,6 +64,10 @@ const info = {
|
|
|
64
64
|
{
|
|
65
65
|
address: 'https://nillion-mainnet-rpc.shazoes.xyz',
|
|
66
66
|
provider: 'Shazoes'
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
address: 'https://rpc.nillion.validatus.com',
|
|
70
|
+
provider: 'Validatus'
|
|
67
71
|
}
|
|
68
72
|
],
|
|
69
73
|
rest: [
|
|
@@ -82,6 +86,10 @@ const info = {
|
|
|
82
86
|
{
|
|
83
87
|
address: 'https://nillion-mainnet-api.shazoes.xyz',
|
|
84
88
|
provider: 'Shazoes'
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
address: 'https://api.nillion.validatus.com',
|
|
92
|
+
provider: 'Validatus'
|
|
85
93
|
}
|
|
86
94
|
],
|
|
87
95
|
grpc: [
|
|
@@ -100,6 +108,10 @@ const info = {
|
|
|
100
108
|
{
|
|
101
109
|
address: 'nillion-mainnet-grpc.shazoes.xyz:30890',
|
|
102
110
|
provider: 'Shazoes'
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
address: 'grpc.nillion.validatus.com:443',
|
|
114
|
+
provider: 'Validatus'
|
|
103
115
|
}
|
|
104
116
|
]
|
|
105
117
|
},
|
|
@@ -22848,6 +22848,49 @@ const info = {
|
|
|
22848
22848
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
|
|
22849
22849
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg'
|
|
22850
22850
|
}]
|
|
22851
|
+
},
|
|
22852
|
+
{
|
|
22853
|
+
denomUnits: [{
|
|
22854
|
+
denom: 'ibc/59A4A5CC7201CDDD3E9A6033E0345959B025577C10C224563B720F720895DB72',
|
|
22855
|
+
exponent: 0,
|
|
22856
|
+
aliases: ['factory/neutron17sp75wng9vl2hu3sf4ky86d7smmk3wle9gkts2gmedn9x4ut3xcqa5xp34/maxbtc']
|
|
22857
|
+
}, {
|
|
22858
|
+
denom: 'maxBTC',
|
|
22859
|
+
exponent: 8
|
|
22860
|
+
}],
|
|
22861
|
+
base: 'ibc/59A4A5CC7201CDDD3E9A6033E0345959B025577C10C224563B720F720895DB72',
|
|
22862
|
+
name: 'maxBTC',
|
|
22863
|
+
display: 'maxBTC',
|
|
22864
|
+
symbol: 'maxBTC',
|
|
22865
|
+
logoURIs: {
|
|
22866
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/maxBTC.svg'
|
|
22867
|
+
},
|
|
22868
|
+
coingeckoId: 'maxbtc',
|
|
22869
|
+
images: [{
|
|
22870
|
+
imageSync: {
|
|
22871
|
+
chainName: 'neutron',
|
|
22872
|
+
baseDenom: 'factory/neutron17sp75wng9vl2hu3sf4ky86d7smmk3wle9gkts2gmedn9x4ut3xcqa5xp34/maxbtc'
|
|
22873
|
+
},
|
|
22874
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/maxBTC.svg'
|
|
22875
|
+
}],
|
|
22876
|
+
socials: {
|
|
22877
|
+
website: 'https://www.structured.money/',
|
|
22878
|
+
telegram: 'https://t.me/StructuredFi',
|
|
22879
|
+
x: 'https://x.com/StructuredFi'
|
|
22880
|
+
},
|
|
22881
|
+
typeAsset: 'ics20',
|
|
22882
|
+
traces: [{
|
|
22883
|
+
type: 'ibc',
|
|
22884
|
+
counterparty: {
|
|
22885
|
+
chainName: 'neutron',
|
|
22886
|
+
baseDenom: 'factory/neutron17sp75wng9vl2hu3sf4ky86d7smmk3wle9gkts2gmedn9x4ut3xcqa5xp34/maxbtc',
|
|
22887
|
+
channelId: 'channel-10'
|
|
22888
|
+
},
|
|
22889
|
+
chain: {
|
|
22890
|
+
channelId: 'channel-874',
|
|
22891
|
+
path: 'transfer/channel-874/factory/neutron17sp75wng9vl2hu3sf4ky86d7smmk3wle9gkts2gmedn9x4ut3xcqa5xp34/maxbtc'
|
|
22892
|
+
}
|
|
22893
|
+
}]
|
|
22851
22894
|
}
|
|
22852
22895
|
]
|
|
22853
22896
|
};
|
|
@@ -1366,22 +1366,22 @@ const info = [
|
|
|
1366
1366
|
chain1: {
|
|
1367
1367
|
chainName: 'divine',
|
|
1368
1368
|
chainId: 'divine-1',
|
|
1369
|
-
clientId: '07-tendermint-
|
|
1370
|
-
connectionId: 'connection-
|
|
1369
|
+
clientId: '07-tendermint-10',
|
|
1370
|
+
connectionId: 'connection-8'
|
|
1371
1371
|
},
|
|
1372
1372
|
chain2: {
|
|
1373
1373
|
chainName: 'osmosis',
|
|
1374
1374
|
chainId: 'osmosis-1',
|
|
1375
|
-
clientId: '07-tendermint-
|
|
1376
|
-
connectionId: 'connection-
|
|
1375
|
+
clientId: '07-tendermint-3667',
|
|
1376
|
+
connectionId: 'connection-11030'
|
|
1377
1377
|
},
|
|
1378
1378
|
channels: [{
|
|
1379
1379
|
chain1: {
|
|
1380
|
-
channelId: 'channel-
|
|
1380
|
+
channelId: 'channel-3',
|
|
1381
1381
|
portId: 'transfer'
|
|
1382
1382
|
},
|
|
1383
1383
|
chain2: {
|
|
1384
|
-
channelId: 'channel-
|
|
1384
|
+
channelId: 'channel-108909',
|
|
1385
1385
|
portId: 'transfer'
|
|
1386
1386
|
},
|
|
1387
1387
|
ordering: 'unordered',
|
|
@@ -111,6 +111,10 @@ const info = {
|
|
|
111
111
|
{
|
|
112
112
|
address: 'https://sentinel.rpc.quasarstaking.ai:443',
|
|
113
113
|
provider: 'Quasar'
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
address: 'https://rpc.sentinel.validatus.com',
|
|
117
|
+
provider: 'Validatus'
|
|
114
118
|
}
|
|
115
119
|
],
|
|
116
120
|
rest: [
|
|
@@ -177,6 +181,10 @@ const info = {
|
|
|
177
181
|
{
|
|
178
182
|
address: 'https://sentinel.api.quasarstaking.ai:443',
|
|
179
183
|
provider: 'Quasar'
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
address: 'https://api.sentinel.validatus.com',
|
|
187
|
+
provider: 'Validatus'
|
|
180
188
|
}
|
|
181
189
|
],
|
|
182
190
|
grpc: [
|
|
@@ -231,6 +239,10 @@ const info = {
|
|
|
231
239
|
{
|
|
232
240
|
address: 'sentinel.grpc.quasarstaking.ai:80',
|
|
233
241
|
provider: 'Quasar'
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
address: 'grpc.sentinel.validatus.com:443',
|
|
245
|
+
provider: 'Validatus'
|
|
234
246
|
}
|
|
235
247
|
]
|
|
236
248
|
},
|
|
@@ -33,22 +33,22 @@ const info = [{
|
|
|
33
33
|
chain1: {
|
|
34
34
|
chainName: 'divinetestnet',
|
|
35
35
|
chainId: 'divine-testnet-1',
|
|
36
|
-
clientId: '07-tendermint-
|
|
37
|
-
connectionId: 'connection-
|
|
36
|
+
clientId: '07-tendermint-8',
|
|
37
|
+
connectionId: 'connection-5'
|
|
38
38
|
},
|
|
39
39
|
chain2: {
|
|
40
40
|
chainName: 'osmosistestnet',
|
|
41
41
|
chainId: 'osmo-test-5',
|
|
42
|
-
clientId: '07-tendermint-
|
|
43
|
-
connectionId: 'connection-
|
|
42
|
+
clientId: '07-tendermint-5024',
|
|
43
|
+
connectionId: 'connection-4386'
|
|
44
44
|
},
|
|
45
45
|
channels: [{
|
|
46
46
|
chain1: {
|
|
47
|
-
channelId: 'channel-
|
|
47
|
+
channelId: 'channel-4',
|
|
48
48
|
portId: 'transfer'
|
|
49
49
|
},
|
|
50
50
|
chain2: {
|
|
51
|
-
channelId: 'channel-
|
|
51
|
+
channelId: 'channel-11375',
|
|
52
52
|
portId: 'transfer'
|
|
53
53
|
},
|
|
54
54
|
ordering: 'unordered',
|