chain-registry 2.0.149 → 2.0.151
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 +4 -0
- package/esm/mainnet/babylon/chain.js +12 -0
- package/esm/mainnet/celestia/chain.js +13 -1
- package/esm/mainnet/chains.js +4 -0
- package/esm/mainnet/evmos/chain.js +0 -16
- package/esm/mainnet/gnodi/asset-list.js +23 -0
- package/esm/mainnet/gnodi/chain.js +90 -0
- package/esm/mainnet/gnodi/ibc-data.js +32 -0
- package/esm/mainnet/gnodi/index.js +6 -0
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/juno/chain.js +4 -0
- package/esm/mainnet/lumen/asset-list.js +30 -0
- package/esm/mainnet/lumen/chain.js +152 -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 +31 -0
- 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/mainnet/arkeo/chain.js +18 -3
- package/mainnet/asset-lists.js +4 -0
- package/mainnet/babylon/chain.js +12 -0
- package/mainnet/celestia/chain.js +13 -1
- package/mainnet/chains.js +4 -0
- package/mainnet/evmos/chain.js +0 -16
- package/mainnet/gnodi/asset-list.d.ts +3 -0
- package/mainnet/gnodi/asset-list.js +25 -0
- package/mainnet/gnodi/chain.d.ts +3 -0
- package/mainnet/gnodi/chain.js +92 -0
- package/mainnet/gnodi/ibc-data.d.ts +3 -0
- package/mainnet/gnodi/ibc-data.js +34 -0
- package/mainnet/gnodi/index.d.ts +3 -0
- package/mainnet/gnodi/index.js +12 -0
- package/mainnet/ibc-data.js +2 -0
- 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 +154 -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 +31 -0
- 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
|
@@ -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
|
{
|
|
@@ -80,6 +80,7 @@ import * as _gateway from './gateway';
|
|
|
80
80
|
import * as _genesisl1 from './genesisl1';
|
|
81
81
|
import * as _ggezchain from './ggezchain';
|
|
82
82
|
import * as _gitopia from './gitopia';
|
|
83
|
+
import * as _gnodi from './gnodi';
|
|
83
84
|
import * as _gonka from './gonka';
|
|
84
85
|
import * as _govgen from './govgen';
|
|
85
86
|
import * as _gravitybridge from './gravitybridge';
|
|
@@ -117,6 +118,7 @@ import * as _lombardledger from './lombardledger';
|
|
|
117
118
|
import * as _loop from './loop';
|
|
118
119
|
import * as _lorenzo from './lorenzo';
|
|
119
120
|
import * as _loyal from './loyal';
|
|
121
|
+
import * as _lumen from './lumen';
|
|
120
122
|
import * as _lumera from './lumera';
|
|
121
123
|
import * as _lumnetwork from './lumnetwork';
|
|
122
124
|
import * as _mande from './mande';
|
|
@@ -307,6 +309,7 @@ const assetList = [
|
|
|
307
309
|
_genesisl1.assetList,
|
|
308
310
|
_ggezchain.assetList,
|
|
309
311
|
_gitopia.assetList,
|
|
312
|
+
_gnodi.assetList,
|
|
310
313
|
_gonka.assetList,
|
|
311
314
|
_govgen.assetList,
|
|
312
315
|
_gravitybridge.assetList,
|
|
@@ -344,6 +347,7 @@ const assetList = [
|
|
|
344
347
|
_loop.assetList,
|
|
345
348
|
_lorenzo.assetList,
|
|
346
349
|
_loyal.assetList,
|
|
350
|
+
_lumen.assetList,
|
|
347
351
|
_lumera.assetList,
|
|
348
352
|
_lumnetwork.assetList,
|
|
349
353
|
_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
|
@@ -80,6 +80,7 @@ import * as _gateway from './gateway';
|
|
|
80
80
|
import * as _genesisl1 from './genesisl1';
|
|
81
81
|
import * as _ggezchain from './ggezchain';
|
|
82
82
|
import * as _gitopia from './gitopia';
|
|
83
|
+
import * as _gnodi from './gnodi';
|
|
83
84
|
import * as _gonka from './gonka';
|
|
84
85
|
import * as _govgen from './govgen';
|
|
85
86
|
import * as _gravitybridge from './gravitybridge';
|
|
@@ -117,6 +118,7 @@ import * as _lombardledger from './lombardledger';
|
|
|
117
118
|
import * as _loop from './loop';
|
|
118
119
|
import * as _lorenzo from './lorenzo';
|
|
119
120
|
import * as _loyal from './loyal';
|
|
121
|
+
import * as _lumen from './lumen';
|
|
120
122
|
import * as _lumera from './lumera';
|
|
121
123
|
import * as _lumnetwork from './lumnetwork';
|
|
122
124
|
import * as _mande from './mande';
|
|
@@ -307,6 +309,7 @@ const chains = [
|
|
|
307
309
|
_genesisl1.chain,
|
|
308
310
|
_ggezchain.chain,
|
|
309
311
|
_gitopia.chain,
|
|
312
|
+
_gnodi.chain,
|
|
310
313
|
_gonka.chain,
|
|
311
314
|
_govgen.chain,
|
|
312
315
|
_gravitybridge.chain,
|
|
@@ -344,6 +347,7 @@ const chains = [
|
|
|
344
347
|
_loop.chain,
|
|
345
348
|
_lorenzo.chain,
|
|
346
349
|
_loyal.chain,
|
|
350
|
+
_lumen.chain,
|
|
347
351
|
_lumera.chain,
|
|
348
352
|
_lumnetwork.chain,
|
|
349
353
|
_mande.chain,
|
|
@@ -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,23 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'gnodi',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of gnodi',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'uGNOD',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'GNOD',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
typeAsset: 'sdk.coin',
|
|
14
|
+
base: 'uGNOD',
|
|
15
|
+
name: 'GNOD',
|
|
16
|
+
display: 'GNOD',
|
|
17
|
+
symbol: 'GNOD',
|
|
18
|
+
images: [{
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gnodi/images/gnod.png'
|
|
20
|
+
}]
|
|
21
|
+
}]
|
|
22
|
+
};
|
|
23
|
+
export default info;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'gnodi',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
website: 'https://gnodiblockchain.org/',
|
|
7
|
+
prettyName: 'Gnodi',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'gnodi',
|
|
10
|
+
bech32Prefix: 'gnodi',
|
|
11
|
+
daemonName: 'gnodid',
|
|
12
|
+
nodeHome: '$HOME/.gnodi',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'uGNOD',
|
|
18
|
+
fixedMinGasPrice: 1,
|
|
19
|
+
lowGasPrice: 1,
|
|
20
|
+
averageGasPrice: 1.5,
|
|
21
|
+
highGasPrice: 2
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'uGNOD'
|
|
27
|
+
}],
|
|
28
|
+
lockDuration: {
|
|
29
|
+
time: '1814400s'
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
codebase: {
|
|
33
|
+
gitRepo: 'https://github.com/gnodi-network/gnodi',
|
|
34
|
+
genesis: {
|
|
35
|
+
name: 'v1',
|
|
36
|
+
genesisUrl: 'https://raw.githubusercontent.com/gnodi-network/genesis-mainnet/refs/heads/main/genesis.json'
|
|
37
|
+
},
|
|
38
|
+
recommendedVersion: '1.0.1',
|
|
39
|
+
compatibleVersions: ['1.0.1'],
|
|
40
|
+
consensus: {
|
|
41
|
+
type: 'cometbft',
|
|
42
|
+
version: '0.38.17',
|
|
43
|
+
repo: 'https://github.com/cometbft/cometbft',
|
|
44
|
+
tag: 'v0.38.17'
|
|
45
|
+
},
|
|
46
|
+
sdk: {
|
|
47
|
+
type: 'cosmos',
|
|
48
|
+
version: '0.53.3',
|
|
49
|
+
repo: 'https://github.com/cosmos/cosmos-sdk',
|
|
50
|
+
tag: 'v0.53.3'
|
|
51
|
+
},
|
|
52
|
+
ibc: {
|
|
53
|
+
type: 'go',
|
|
54
|
+
version: '10.2.0',
|
|
55
|
+
repo: 'https://github.com/cosmos/ibc-go',
|
|
56
|
+
tag: 'v10.2.0',
|
|
57
|
+
icsEnabled: ['ics20-1']
|
|
58
|
+
},
|
|
59
|
+
language: {
|
|
60
|
+
type: 'go',
|
|
61
|
+
version: '1.24.0'
|
|
62
|
+
},
|
|
63
|
+
tag: 'v1.0.1'
|
|
64
|
+
},
|
|
65
|
+
images: [{
|
|
66
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gnodi/images/gnod.png'
|
|
67
|
+
}],
|
|
68
|
+
description: 'The Gnodi Blockchain is a community-governed, decentralized infrastructure that empowers individuals to own their digital identity and data. Guided by principles of autonomy, transparency, and equity, it bridges today’s internet with a fair, participatory digital future.',
|
|
69
|
+
apis: {
|
|
70
|
+
rpc: [{
|
|
71
|
+
address: 'https://rpc.gnodi.zone:443',
|
|
72
|
+
provider: 'Gnodi Team'
|
|
73
|
+
}],
|
|
74
|
+
rest: [{
|
|
75
|
+
address: 'https://api.gnodi.zone:443',
|
|
76
|
+
provider: 'Gnodi Team'
|
|
77
|
+
}],
|
|
78
|
+
grpc: [{
|
|
79
|
+
address: 'grpc.gnodi.zone:443',
|
|
80
|
+
provider: 'Gnodi Team'
|
|
81
|
+
}]
|
|
82
|
+
},
|
|
83
|
+
explorers: [{
|
|
84
|
+
kind: 'Big Dipper',
|
|
85
|
+
url: 'https://explore.gnodi.org/gnodi',
|
|
86
|
+
txPage: 'https://explore.gnodi.org/gnodi/transactions',
|
|
87
|
+
accountPage: 'https://explore.gnodi.org/gnodi/accounts/${accountAddress}'
|
|
88
|
+
}]
|
|
89
|
+
};
|
|
90
|
+
export default info;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'gnodi',
|
|
5
|
+
chainId: 'gnodi',
|
|
6
|
+
clientId: '07-tendermint-1',
|
|
7
|
+
connectionId: 'connection-5'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'osmosis',
|
|
11
|
+
chainId: 'osmosis-1',
|
|
12
|
+
clientId: '07-tendermint-3665',
|
|
13
|
+
connectionId: 'connection-11024'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-0',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-108866',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true,
|
|
28
|
+
status: 'ACTIVE'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
export default info;
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -64,6 +64,7 @@ import * as _galaxy from './galaxy';
|
|
|
64
64
|
import * as _gateway from './gateway';
|
|
65
65
|
import * as _genesisl1 from './genesisl1';
|
|
66
66
|
import * as _gitopia from './gitopia';
|
|
67
|
+
import * as _gnodi from './gnodi';
|
|
67
68
|
import * as _gravitybridge from './gravitybridge';
|
|
68
69
|
import * as _haqq from './haqq';
|
|
69
70
|
import * as _hippoprotocol from './hippoprotocol';
|
|
@@ -241,6 +242,7 @@ const ibcData = [
|
|
|
241
242
|
..._gateway.ibcData,
|
|
242
243
|
..._genesisl1.ibcData,
|
|
243
244
|
..._gitopia.ibcData,
|
|
245
|
+
..._gnodi.ibcData,
|
|
244
246
|
..._gravitybridge.ibcData,
|
|
245
247
|
..._haqq.ibcData,
|
|
246
248
|
..._hippoprotocol.ibcData,
|
|
@@ -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,152 @@
|
|
|
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.onenov.xyz',
|
|
68
|
+
provider: 'OneNov'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
address: 'https://api.lumen.chaintools.tech',
|
|
72
|
+
provider: 'ChainTools'
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
address: 'https://lumen-mainnet-api.mekonglabs.com/',
|
|
76
|
+
provider: 'MekongLabs'
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
grpc: [
|
|
80
|
+
{
|
|
81
|
+
address: 'lumen-grpc.linknode.org:443',
|
|
82
|
+
provider: 'AstroStake'
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
address: 'lumen-grpc.blocksync.me:443',
|
|
86
|
+
provider: 'BlockSync'
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
address: 'lumen-mainnet-grpc.mekonglabs.tech:35090',
|
|
90
|
+
provider: 'MekongLabs'
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
explorers: [
|
|
95
|
+
{
|
|
96
|
+
kind: 'MekongLabs',
|
|
97
|
+
url: 'https://explorer.mekonglabs.com/lumen-mainnet'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
kind: 'OneNov',
|
|
101
|
+
url: 'https://explorer.onenov.xyz/lumen'
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
kind: 'WinSnip',
|
|
105
|
+
url: 'https://winscan.winsnip.xyz/lumen-mainnet'
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
kind: 'AstroStake',
|
|
109
|
+
url: 'https://stake.astrostake.xyz/lumen'
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
kind: 'Gombezzz',
|
|
113
|
+
url: 'https://explorer.gombezzz.xyz/lumen-mainnet'
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
kind: 'Node9x',
|
|
117
|
+
url: 'https://explorer.node9x.com/lumen'
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
kind: 'OneNov (OV)',
|
|
121
|
+
url: 'https://ov-explorer.onenov.xyz/network/lumen'
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
kind: 'UTSA',
|
|
125
|
+
url: 'https://exp.utsa.tech/lumen/staking'
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
kind: 'Stavr',
|
|
129
|
+
url: 'https://explorer.stavr.tech/Lumen-Mainnet/staking'
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
kind: 'ChainTools',
|
|
133
|
+
url: 'https://explorer.chaintools.tech/lumen'
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
kind: 'Maouam',
|
|
137
|
+
url: 'https://explorer.maouam.xyz/lumen-mainnet'
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
kind: 'Blocksync',
|
|
141
|
+
url: 'https://dashboard.blocksync.me/lumen'
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
kind: 'Indonode',
|
|
145
|
+
url: 'https://explorer.indonode.net/lumen'
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
images: [{
|
|
149
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lumen.png'
|
|
150
|
+
}]
|
|
151
|
+
};
|
|
152
|
+
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
|
};
|