chain-registry 2.0.149 → 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/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/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 +2 -0
- package/mainnet/babylon/chain.js +12 -0
- package/mainnet/celestia/chain.js +13 -1
- package/mainnet/chains.js +2 -0
- 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/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
|
{
|
|
@@ -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,
|
|
@@ -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
|
};
|
|
@@ -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
|
},
|
package/mainnet/arkeo/chain.js
CHANGED
|
@@ -68,6 +68,10 @@ const info = {
|
|
|
68
68
|
{
|
|
69
69
|
address: 'https://rpc.arkeo.nodestake.org',
|
|
70
70
|
provider: 'NodeStake'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
address: 'https://rpc.arkeo.validatus.com',
|
|
74
|
+
provider: 'Validatus'
|
|
71
75
|
}
|
|
72
76
|
],
|
|
73
77
|
rest: [
|
|
@@ -86,15 +90,26 @@ const info = {
|
|
|
86
90
|
{
|
|
87
91
|
address: 'https://api.arkeo.nodestake.org',
|
|
88
92
|
provider: 'NodeStake'
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
address: 'https://api.arkeo.validatus.com',
|
|
96
|
+
provider: 'Validatus'
|
|
89
97
|
}
|
|
90
98
|
],
|
|
91
|
-
grpc: [
|
|
99
|
+
grpc: [
|
|
100
|
+
{
|
|
92
101
|
address: 'grpc.arkeo.roomit.xyz:8443',
|
|
93
102
|
provider: 'Roomit'
|
|
94
|
-
},
|
|
103
|
+
},
|
|
104
|
+
{
|
|
95
105
|
address: 'https://grpc.arkeo.nodestake.org:443',
|
|
96
106
|
provider: 'NodeStake'
|
|
97
|
-
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
address: 'https://grpc.arkeo.validatus.com:443',
|
|
110
|
+
provider: 'Validatus'
|
|
111
|
+
}
|
|
112
|
+
]
|
|
98
113
|
},
|
|
99
114
|
explorers: [
|
|
100
115
|
{
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -142,6 +142,7 @@ const _lombardledger = __importStar(require("./lombardledger"));
|
|
|
142
142
|
const _loop = __importStar(require("./loop"));
|
|
143
143
|
const _lorenzo = __importStar(require("./lorenzo"));
|
|
144
144
|
const _loyal = __importStar(require("./loyal"));
|
|
145
|
+
const _lumen = __importStar(require("./lumen"));
|
|
145
146
|
const _lumera = __importStar(require("./lumera"));
|
|
146
147
|
const _lumnetwork = __importStar(require("./lumnetwork"));
|
|
147
148
|
const _mande = __importStar(require("./mande"));
|
|
@@ -369,6 +370,7 @@ const assetList = [
|
|
|
369
370
|
_loop.assetList,
|
|
370
371
|
_lorenzo.assetList,
|
|
371
372
|
_loyal.assetList,
|
|
373
|
+
_lumen.assetList,
|
|
372
374
|
_lumera.assetList,
|
|
373
375
|
_lumnetwork.assetList,
|
|
374
376
|
_mande.assetList,
|
package/mainnet/babylon/chain.js
CHANGED
|
@@ -108,6 +108,10 @@ const info = {
|
|
|
108
108
|
{
|
|
109
109
|
address: 'https://babylon-mainnet-rpc.shazoes.xyz',
|
|
110
110
|
provider: 'Shazoes'
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
address: 'https://rpc.babylon.validatus.com',
|
|
114
|
+
provider: 'Validatus'
|
|
111
115
|
}
|
|
112
116
|
],
|
|
113
117
|
rest: [
|
|
@@ -150,6 +154,10 @@ const info = {
|
|
|
150
154
|
{
|
|
151
155
|
address: 'https://babylon-mainnet-api.shazoes.xyz',
|
|
152
156
|
provider: 'Shazoes'
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
address: 'https://api.babylon.validatus.com',
|
|
160
|
+
provider: 'Validatus'
|
|
153
161
|
}
|
|
154
162
|
],
|
|
155
163
|
grpc: [
|
|
@@ -188,6 +196,10 @@ const info = {
|
|
|
188
196
|
{
|
|
189
197
|
address: 'babylon-mainnet-grpc.shazoes.xyz:30190',
|
|
190
198
|
provider: 'Shazoes'
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
address: 'grpc.babylon.validatus.com:443',
|
|
202
|
+
provider: 'Validatus'
|
|
191
203
|
}
|
|
192
204
|
]
|
|
193
205
|
},
|
|
@@ -185,6 +185,10 @@ const info = {
|
|
|
185
185
|
{
|
|
186
186
|
address: 'https://rpc.celestia.node75.org',
|
|
187
187
|
provider: 'Pro-Nodes75'
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
address: 'https://rpc.archive.celestia.validatus.com',
|
|
191
|
+
provider: 'Validatus'
|
|
188
192
|
}
|
|
189
193
|
],
|
|
190
194
|
rest: [
|
|
@@ -295,6 +299,10 @@ const info = {
|
|
|
295
299
|
{
|
|
296
300
|
address: 'https://api.celestia.node75.org',
|
|
297
301
|
provider: 'Pro-Nodes75'
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
address: 'https://api.archive.celestia.validatus.com',
|
|
305
|
+
provider: 'Validatus'
|
|
298
306
|
}
|
|
299
307
|
],
|
|
300
308
|
grpc: [
|
|
@@ -347,7 +355,7 @@ const info = {
|
|
|
347
355
|
provider: 'AM Solutions'
|
|
348
356
|
},
|
|
349
357
|
{
|
|
350
|
-
address: 'grpc.celestia.validatus.com',
|
|
358
|
+
address: 'grpc.celestia.validatus.com:443',
|
|
351
359
|
provider: 'Validatus'
|
|
352
360
|
},
|
|
353
361
|
{
|
|
@@ -389,6 +397,10 @@ const info = {
|
|
|
389
397
|
{
|
|
390
398
|
address: 'grpc.celestia.node75.org:9220',
|
|
391
399
|
provider: 'Pro-Nodes75'
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
address: 'grpc.archive.celestia.validatus.com:2125',
|
|
403
|
+
provider: 'Validatus'
|
|
392
404
|
}
|
|
393
405
|
]
|
|
394
406
|
},
|
package/mainnet/chains.js
CHANGED
|
@@ -142,6 +142,7 @@ const _lombardledger = __importStar(require("./lombardledger"));
|
|
|
142
142
|
const _loop = __importStar(require("./loop"));
|
|
143
143
|
const _lorenzo = __importStar(require("./lorenzo"));
|
|
144
144
|
const _loyal = __importStar(require("./loyal"));
|
|
145
|
+
const _lumen = __importStar(require("./lumen"));
|
|
145
146
|
const _lumera = __importStar(require("./lumera"));
|
|
146
147
|
const _lumnetwork = __importStar(require("./lumnetwork"));
|
|
147
148
|
const _mande = __importStar(require("./mande"));
|
|
@@ -369,6 +370,7 @@ const chains = [
|
|
|
369
370
|
_loop.chain,
|
|
370
371
|
_lorenzo.chain,
|
|
371
372
|
_loyal.chain,
|
|
373
|
+
_lumen.chain,
|
|
372
374
|
_lumera.chain,
|
|
373
375
|
_lumnetwork.chain,
|
|
374
376
|
_mande.chain,
|
package/mainnet/evmos/chain.js
CHANGED
|
@@ -134,10 +134,6 @@ const info = {
|
|
|
134
134
|
address: 'https://evmos-mainnet.rpc.stakevillage.net:443',
|
|
135
135
|
provider: 'Stake Village'
|
|
136
136
|
},
|
|
137
|
-
{
|
|
138
|
-
address: 'https://rpc.evmos.validatus.com',
|
|
139
|
-
provider: 'Validatus'
|
|
140
|
-
},
|
|
141
137
|
{
|
|
142
138
|
address: 'https://rpc.evmos.bronbro.io:443',
|
|
143
139
|
provider: 'Bro_n_Bro'
|
|
@@ -216,10 +212,6 @@ const info = {
|
|
|
216
212
|
address: 'https://evmos-mainnet.api.stakevillage.net',
|
|
217
213
|
provider: 'Stake Village'
|
|
218
214
|
},
|
|
219
|
-
{
|
|
220
|
-
address: 'https://api.evmos.validatus.com',
|
|
221
|
-
provider: 'Validatus'
|
|
222
|
-
},
|
|
223
215
|
{
|
|
224
216
|
address: 'https://lcd.evmos.bronbro.io:443',
|
|
225
217
|
provider: 'Bro_n_Bro'
|
|
@@ -286,10 +278,6 @@ const info = {
|
|
|
286
278
|
address: 'evmos-mainnet.grpc.stakevillage.net:16990',
|
|
287
279
|
provider: 'Stake Village'
|
|
288
280
|
},
|
|
289
|
-
{
|
|
290
|
-
address: 'grpc.evmos.validatus.com:443',
|
|
291
|
-
provider: 'Validatus'
|
|
292
|
-
},
|
|
293
281
|
{
|
|
294
282
|
address: 'https://grpc.evmos.bronbro.io:443',
|
|
295
283
|
provider: 'Bro_n_Bro'
|
|
@@ -347,10 +335,6 @@ const info = {
|
|
|
347
335
|
{
|
|
348
336
|
address: 'https://evmos-mainnet.jsonrpc.stakevillage.net',
|
|
349
337
|
provider: 'Stake Village'
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
address: 'https://json-rpc.evmos.validatus.com',
|
|
353
|
-
provider: 'Validatus'
|
|
354
338
|
}
|
|
355
339
|
]
|
|
356
340
|
},
|
package/mainnet/juno/chain.js
CHANGED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'lumen',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native staking token of Lumen.',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'ulmn',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'lmn',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
base: 'ulmn',
|
|
16
|
+
name: 'Lumen',
|
|
17
|
+
display: 'lmn',
|
|
18
|
+
symbol: 'LMN',
|
|
19
|
+
images: [{
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lmn.png'
|
|
21
|
+
}],
|
|
22
|
+
socials: {
|
|
23
|
+
website: 'https://lumen-network.org/',
|
|
24
|
+
github: 'https://github.com/network-lumen/',
|
|
25
|
+
telegram: 'https://t.me/+HBWh_cUJCrZiODE0',
|
|
26
|
+
discord: 'https://discord.gg/DwK6V9shKc',
|
|
27
|
+
x: 'https://x.com/LumenStack'
|
|
28
|
+
},
|
|
29
|
+
typeAsset: 'sdk.coin'
|
|
30
|
+
}]
|
|
31
|
+
};
|
|
32
|
+
exports.default = info;
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'lumen',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
website: 'https://lumen-network.org/',
|
|
9
|
+
prettyName: 'Lumen',
|
|
10
|
+
description: 'Lumen is a Cosmos SDK chain focused on DNS auctions, release distribution, and gateway settlement flows.',
|
|
11
|
+
chainType: 'cosmos',
|
|
12
|
+
chainId: 'lumen',
|
|
13
|
+
bech32Prefix: 'lmn',
|
|
14
|
+
daemonName: 'lumend',
|
|
15
|
+
nodeHome: '$HOME/.lumen',
|
|
16
|
+
keyAlgos: ['secp256k1'],
|
|
17
|
+
slip44: 118,
|
|
18
|
+
fees: {
|
|
19
|
+
feeTokens: [{
|
|
20
|
+
denom: 'ulmn',
|
|
21
|
+
fixedMinGasPrice: 0,
|
|
22
|
+
lowGasPrice: 0,
|
|
23
|
+
averageGasPrice: 0,
|
|
24
|
+
highGasPrice: 0
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
staking: {
|
|
28
|
+
stakingTokens: [{
|
|
29
|
+
denom: 'ulmn'
|
|
30
|
+
}]
|
|
31
|
+
},
|
|
32
|
+
codebase: {
|
|
33
|
+
gitRepo: 'https://github.com/network-lumen/blockchain',
|
|
34
|
+
recommendedVersion: 'v1.4.3',
|
|
35
|
+
compatibleVersions: ['v1.4.3'],
|
|
36
|
+
genesis: {
|
|
37
|
+
genesisUrl: 'https://raw.githubusercontent.com/network-lumen/validator-kit/master/config/genesis.json'
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
apis: {
|
|
41
|
+
rpc: [
|
|
42
|
+
{
|
|
43
|
+
address: 'https://lumen-rpc.linknode.org',
|
|
44
|
+
provider: 'AstroStake'
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
address: 'https://rpc.lumen.chaintools.tech',
|
|
48
|
+
provider: 'ChainTools'
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
address: 'https://lumen.blocksync.me/rpc',
|
|
52
|
+
provider: 'BlockSync'
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
address: 'https://lumen-mainnet-rpc.mekonglabs.com',
|
|
56
|
+
provider: 'MekongLabs'
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
address: 'https://rpc-lumen.onenov.xyz',
|
|
60
|
+
provider: 'OneNov'
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
rest: [
|
|
64
|
+
{
|
|
65
|
+
address: 'https://lumen-api.linknode.org',
|
|
66
|
+
provider: 'AstroStake'
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
address: 'https://api.lumen.chaintools.tech',
|
|
70
|
+
provider: 'ChainTools'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
address: 'https://lumen-mainnet-api.mekonglabs.com/',
|
|
74
|
+
provider: 'MekongLabs'
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
grpc: [
|
|
78
|
+
{
|
|
79
|
+
address: 'lumen-grpc.linknode.org:443',
|
|
80
|
+
provider: 'AstroStake'
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
address: 'lumen-grpc.blocksync.me:443',
|
|
84
|
+
provider: 'BlockSync'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
address: 'lumen-mainnet-grpc.mekonglabs.tech:35090',
|
|
88
|
+
provider: 'MekongLabs'
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
explorers: [
|
|
93
|
+
{
|
|
94
|
+
kind: 'MekongLabs',
|
|
95
|
+
url: 'https://explorer.mekonglabs.com/lumen-mainnet'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
kind: 'OneNov',
|
|
99
|
+
url: 'https://explorer.onenov.xyz/lumen'
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
kind: 'WinSnip',
|
|
103
|
+
url: 'https://winscan.winsnip.xyz/lumen-mainnet'
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
kind: 'AstroStake',
|
|
107
|
+
url: 'https://stake.astrostake.xyz/lumen'
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
kind: 'Gombezzz',
|
|
111
|
+
url: 'https://explorer.gombezzz.xyz/lumen-mainnet'
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
kind: 'Node9x',
|
|
115
|
+
url: 'https://explorer.node9x.com/lumen'
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
kind: 'OneNov (OV)',
|
|
119
|
+
url: 'https://ov-explorer.onenov.xyz/network/lumen'
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
kind: 'UTSA',
|
|
123
|
+
url: 'https://exp.utsa.tech/lumen/staking'
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
kind: 'Stavr',
|
|
127
|
+
url: 'https://explorer.stavr.tech/Lumen-Mainnet/staking'
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
kind: 'ChainTools',
|
|
131
|
+
url: 'https://explorer.chaintools.tech/lumen'
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
kind: 'Maouam',
|
|
135
|
+
url: 'https://explorer.maouam.xyz/lumen-mainnet'
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
kind: 'Blocksync',
|
|
139
|
+
url: 'https://dashboard.blocksync.me/lumen'
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
kind: 'Indonode',
|
|
143
|
+
url: 'https://explorer.indonode.net/lumen'
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
images: [{
|
|
147
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lumen.png'
|
|
148
|
+
}]
|
|
149
|
+
};
|
|
150
|
+
exports.default = info;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.chain = exports.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assetList = asset_list_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
package/mainnet/nillion/chain.js
CHANGED
|
@@ -66,6 +66,10 @@ const info = {
|
|
|
66
66
|
{
|
|
67
67
|
address: 'https://nillion-mainnet-rpc.shazoes.xyz',
|
|
68
68
|
provider: 'Shazoes'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
address: 'https://rpc.nillion.validatus.com',
|
|
72
|
+
provider: 'Validatus'
|
|
69
73
|
}
|
|
70
74
|
],
|
|
71
75
|
rest: [
|
|
@@ -84,6 +88,10 @@ const info = {
|
|
|
84
88
|
{
|
|
85
89
|
address: 'https://nillion-mainnet-api.shazoes.xyz',
|
|
86
90
|
provider: 'Shazoes'
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
address: 'https://api.nillion.validatus.com',
|
|
94
|
+
provider: 'Validatus'
|
|
87
95
|
}
|
|
88
96
|
],
|
|
89
97
|
grpc: [
|
|
@@ -102,6 +110,10 @@ const info = {
|
|
|
102
110
|
{
|
|
103
111
|
address: 'nillion-mainnet-grpc.shazoes.xyz:30890',
|
|
104
112
|
provider: 'Shazoes'
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
address: 'grpc.nillion.validatus.com:443',
|
|
116
|
+
provider: 'Validatus'
|
|
105
117
|
}
|
|
106
118
|
]
|
|
107
119
|
},
|
|
@@ -22850,6 +22850,49 @@ const info = {
|
|
|
22850
22850
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
|
|
22851
22851
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg'
|
|
22852
22852
|
}]
|
|
22853
|
+
},
|
|
22854
|
+
{
|
|
22855
|
+
denomUnits: [{
|
|
22856
|
+
denom: 'ibc/59A4A5CC7201CDDD3E9A6033E0345959B025577C10C224563B720F720895DB72',
|
|
22857
|
+
exponent: 0,
|
|
22858
|
+
aliases: ['factory/neutron17sp75wng9vl2hu3sf4ky86d7smmk3wle9gkts2gmedn9x4ut3xcqa5xp34/maxbtc']
|
|
22859
|
+
}, {
|
|
22860
|
+
denom: 'maxBTC',
|
|
22861
|
+
exponent: 8
|
|
22862
|
+
}],
|
|
22863
|
+
base: 'ibc/59A4A5CC7201CDDD3E9A6033E0345959B025577C10C224563B720F720895DB72',
|
|
22864
|
+
name: 'maxBTC',
|
|
22865
|
+
display: 'maxBTC',
|
|
22866
|
+
symbol: 'maxBTC',
|
|
22867
|
+
logoURIs: {
|
|
22868
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/maxBTC.svg'
|
|
22869
|
+
},
|
|
22870
|
+
coingeckoId: 'maxbtc',
|
|
22871
|
+
images: [{
|
|
22872
|
+
imageSync: {
|
|
22873
|
+
chainName: 'neutron',
|
|
22874
|
+
baseDenom: 'factory/neutron17sp75wng9vl2hu3sf4ky86d7smmk3wle9gkts2gmedn9x4ut3xcqa5xp34/maxbtc'
|
|
22875
|
+
},
|
|
22876
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/maxBTC.svg'
|
|
22877
|
+
}],
|
|
22878
|
+
socials: {
|
|
22879
|
+
website: 'https://www.structured.money/',
|
|
22880
|
+
telegram: 'https://t.me/StructuredFi',
|
|
22881
|
+
x: 'https://x.com/StructuredFi'
|
|
22882
|
+
},
|
|
22883
|
+
typeAsset: 'ics20',
|
|
22884
|
+
traces: [{
|
|
22885
|
+
type: 'ibc',
|
|
22886
|
+
counterparty: {
|
|
22887
|
+
chainName: 'neutron',
|
|
22888
|
+
baseDenom: 'factory/neutron17sp75wng9vl2hu3sf4ky86d7smmk3wle9gkts2gmedn9x4ut3xcqa5xp34/maxbtc',
|
|
22889
|
+
channelId: 'channel-10'
|
|
22890
|
+
},
|
|
22891
|
+
chain: {
|
|
22892
|
+
channelId: 'channel-874',
|
|
22893
|
+
path: 'transfer/channel-874/factory/neutron17sp75wng9vl2hu3sf4ky86d7smmk3wle9gkts2gmedn9x4ut3xcqa5xp34/maxbtc'
|
|
22894
|
+
}
|
|
22895
|
+
}]
|
|
22853
22896
|
}
|
|
22854
22897
|
]
|
|
22855
22898
|
};
|
|
@@ -113,6 +113,10 @@ const info = {
|
|
|
113
113
|
{
|
|
114
114
|
address: 'https://sentinel.rpc.quasarstaking.ai:443',
|
|
115
115
|
provider: 'Quasar'
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
address: 'https://rpc.sentinel.validatus.com',
|
|
119
|
+
provider: 'Validatus'
|
|
116
120
|
}
|
|
117
121
|
],
|
|
118
122
|
rest: [
|
|
@@ -179,6 +183,10 @@ const info = {
|
|
|
179
183
|
{
|
|
180
184
|
address: 'https://sentinel.api.quasarstaking.ai:443',
|
|
181
185
|
provider: 'Quasar'
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
address: 'https://api.sentinel.validatus.com',
|
|
189
|
+
provider: 'Validatus'
|
|
182
190
|
}
|
|
183
191
|
],
|
|
184
192
|
grpc: [
|
|
@@ -233,6 +241,10 @@ const info = {
|
|
|
233
241
|
{
|
|
234
242
|
address: 'sentinel.grpc.quasarstaking.ai:80',
|
|
235
243
|
provider: 'Quasar'
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
address: 'grpc.sentinel.validatus.com:443',
|
|
247
|
+
provider: 'Validatus'
|
|
236
248
|
}
|
|
237
249
|
]
|
|
238
250
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.150",
|
|
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.150"
|
|
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": "20bcd8e7ffc125182f58c3d1f128a6d795795f80"
|
|
43
43
|
}
|