chain-registry 2.0.131 → 2.0.133
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 +0 -14
- package/esm/testnet/asset-lists.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/monolythiumsprintnet/asset-list.js +26 -0
- package/esm/testnet/monolythiumsprintnet/chain.js +59 -0
- package/esm/testnet/monolythiumsprintnet/index.js +4 -0
- package/mainnet/arkeo/chain.js +0 -14
- package/package.json +3 -3
- package/testnet/asset-lists.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/monolythiumsprintnet/asset-list.d.ts +3 -0
- package/testnet/monolythiumsprintnet/asset-list.js +28 -0
- package/testnet/monolythiumsprintnet/chain.d.ts +3 -0
- package/testnet/monolythiumsprintnet/chain.js +61 -0
- package/testnet/monolythiumsprintnet/index.d.ts +2 -0
- package/testnet/monolythiumsprintnet/index.js +10 -0
|
@@ -63,10 +63,6 @@ const info = {
|
|
|
63
63
|
address: 'https://rpc.arkeo.roomit.xyz',
|
|
64
64
|
provider: 'Roomit'
|
|
65
65
|
},
|
|
66
|
-
{
|
|
67
|
-
address: 'https://arkeo_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
68
|
-
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
69
|
-
},
|
|
70
66
|
{
|
|
71
67
|
address: 'https://rpc.arkeo.nodestake.org',
|
|
72
68
|
provider: 'NodeStake'
|
|
@@ -85,10 +81,6 @@ const info = {
|
|
|
85
81
|
address: 'https://api.arkeo.roomit.xyz',
|
|
86
82
|
provider: 'Roomit'
|
|
87
83
|
},
|
|
88
|
-
{
|
|
89
|
-
address: 'https://arkeo_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
90
|
-
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
91
|
-
},
|
|
92
84
|
{
|
|
93
85
|
address: 'https://api.arkeo.nodestake.org',
|
|
94
86
|
provider: 'NodeStake'
|
|
@@ -121,12 +113,6 @@ const info = {
|
|
|
121
113
|
txPage: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet/transactions/${txHash}',
|
|
122
114
|
accountPage: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet/account/${accountAddress}'
|
|
123
115
|
},
|
|
124
|
-
{
|
|
125
|
-
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
126
|
-
url: 'https://explorer.whenmoonwhenlambo.money/arkeo',
|
|
127
|
-
txPage: 'https://explorer.whenmoonwhenlambo.money/arkeo/tx/${txHash}',
|
|
128
|
-
accountPage: 'https://explorer.whenmoonwhenlambo.money/arkeo/account/${accountAddress}'
|
|
129
|
-
},
|
|
130
116
|
{
|
|
131
117
|
kind: 'NodeStake',
|
|
132
118
|
url: 'https://explorer.nodestake.org/arkeo',
|
|
@@ -73,6 +73,7 @@ import * as _mantrachaintestnet2 from './mantrachaintestnet2';
|
|
|
73
73
|
import * as _marstestnet from './marstestnet';
|
|
74
74
|
import * as _metanovaversetestnet from './metanovaversetestnet';
|
|
75
75
|
import * as _migalootestnet from './migalootestnet';
|
|
76
|
+
import * as _monolythiumsprintnet from './monolythiumsprintnet';
|
|
76
77
|
import * as _neuratestnet from './neuratestnet';
|
|
77
78
|
import * as _neutrontestnet from './neutrontestnet';
|
|
78
79
|
import * as _nibirutestnet from './nibirutestnet';
|
|
@@ -214,6 +215,7 @@ const assetList = [
|
|
|
214
215
|
_marstestnet.assetList,
|
|
215
216
|
_metanovaversetestnet.assetList,
|
|
216
217
|
_migalootestnet.assetList,
|
|
218
|
+
_monolythiumsprintnet.assetList,
|
|
217
219
|
_neuratestnet.assetList,
|
|
218
220
|
_neutrontestnet.assetList,
|
|
219
221
|
_nibirutestnet.assetList,
|
package/esm/testnet/chains.js
CHANGED
|
@@ -73,6 +73,7 @@ import * as _mantrachaintestnet2 from './mantrachaintestnet2';
|
|
|
73
73
|
import * as _marstestnet from './marstestnet';
|
|
74
74
|
import * as _metanovaversetestnet from './metanovaversetestnet';
|
|
75
75
|
import * as _migalootestnet from './migalootestnet';
|
|
76
|
+
import * as _monolythiumsprintnet from './monolythiumsprintnet';
|
|
76
77
|
import * as _neuratestnet from './neuratestnet';
|
|
77
78
|
import * as _neutrontestnet from './neutrontestnet';
|
|
78
79
|
import * as _nibirutestnet from './nibirutestnet';
|
|
@@ -214,6 +215,7 @@ const chains = [
|
|
|
214
215
|
_marstestnet.chain,
|
|
215
216
|
_metanovaversetestnet.chain,
|
|
216
217
|
_migalootestnet.chain,
|
|
218
|
+
_monolythiumsprintnet.chain,
|
|
217
219
|
_neuratestnet.chain,
|
|
218
220
|
_neutrontestnet.chain,
|
|
219
221
|
_nibirutestnet.chain,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chainName: 'monolythiumsprintnet',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native staking and gas token of Monolythium Sprintnet.',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'alyth',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'lyth',
|
|
11
|
+
exponent: 18
|
|
12
|
+
}],
|
|
13
|
+
typeAsset: 'sdk.coin',
|
|
14
|
+
base: 'alyth',
|
|
15
|
+
name: 'Monolythium Sprintnet',
|
|
16
|
+
display: 'lyth',
|
|
17
|
+
symbol: 'LYTH',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
|
|
20
|
+
},
|
|
21
|
+
images: [{
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
|
|
23
|
+
}]
|
|
24
|
+
}]
|
|
25
|
+
};
|
|
26
|
+
export default info;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chainName: 'monolythiumsprintnet',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'testnet',
|
|
6
|
+
prettyName: 'Monolythium Sprintnet',
|
|
7
|
+
chainType: 'cosmos',
|
|
8
|
+
chainId: 'mono-sprint-1',
|
|
9
|
+
bech32Prefix: 'mono',
|
|
10
|
+
daemonName: 'monod',
|
|
11
|
+
nodeHome: '$HOME/.monod',
|
|
12
|
+
keyAlgos: ['ethsecp256k1'],
|
|
13
|
+
slip44: 60,
|
|
14
|
+
fees: {
|
|
15
|
+
feeTokens: [{
|
|
16
|
+
denom: 'alyth',
|
|
17
|
+
fixedMinGasPrice: 0,
|
|
18
|
+
lowGasPrice: 0,
|
|
19
|
+
averageGasPrice: 0,
|
|
20
|
+
highGasPrice: 1000000000
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
stakingTokens: [{
|
|
25
|
+
denom: 'alyth'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {
|
|
29
|
+
gitRepo: 'https://github.com/monolythium/mono-core'
|
|
30
|
+
},
|
|
31
|
+
logoURIs: {
|
|
32
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
|
|
33
|
+
},
|
|
34
|
+
description: 'Monolythium is a high-performance Layer-1 blockchain built with Cosmos SDK and CometBFT finality, featuring a first-class EVM. Sprintnet is the accelerated testnet for rapid end-to-end testing and upgrade rehearsals.',
|
|
35
|
+
apis: {
|
|
36
|
+
rpc: [{
|
|
37
|
+
address: 'https://rpc.sprintnet.mononodes.xyz',
|
|
38
|
+
provider: 'Monolythium'
|
|
39
|
+
}],
|
|
40
|
+
rest: [{
|
|
41
|
+
address: 'https://api.sprintnet.mononodes.xyz',
|
|
42
|
+
provider: 'Monolythium'
|
|
43
|
+
}],
|
|
44
|
+
evmHttpJsonrpc: [{
|
|
45
|
+
address: 'https://evm.sprintnet.mononodes.xyz',
|
|
46
|
+
provider: 'Monolythium'
|
|
47
|
+
}]
|
|
48
|
+
},
|
|
49
|
+
explorers: [{
|
|
50
|
+
kind: 'Monoscan',
|
|
51
|
+
url: 'https://monoscan.xyz/sprintnet',
|
|
52
|
+
txPage: 'https://monoscan.xyz/sprintnet/tx/${txHash}',
|
|
53
|
+
accountPage: 'https://monoscan.xyz/sprintnet/address/${accountAddress}'
|
|
54
|
+
}],
|
|
55
|
+
images: [{
|
|
56
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
|
|
57
|
+
}]
|
|
58
|
+
};
|
|
59
|
+
export default info;
|
package/mainnet/arkeo/chain.js
CHANGED
|
@@ -65,10 +65,6 @@ const info = {
|
|
|
65
65
|
address: 'https://rpc.arkeo.roomit.xyz',
|
|
66
66
|
provider: 'Roomit'
|
|
67
67
|
},
|
|
68
|
-
{
|
|
69
|
-
address: 'https://arkeo_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
70
|
-
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
71
|
-
},
|
|
72
68
|
{
|
|
73
69
|
address: 'https://rpc.arkeo.nodestake.org',
|
|
74
70
|
provider: 'NodeStake'
|
|
@@ -87,10 +83,6 @@ const info = {
|
|
|
87
83
|
address: 'https://api.arkeo.roomit.xyz',
|
|
88
84
|
provider: 'Roomit'
|
|
89
85
|
},
|
|
90
|
-
{
|
|
91
|
-
address: 'https://arkeo_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
92
|
-
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
93
|
-
},
|
|
94
86
|
{
|
|
95
87
|
address: 'https://api.arkeo.nodestake.org',
|
|
96
88
|
provider: 'NodeStake'
|
|
@@ -123,12 +115,6 @@ const info = {
|
|
|
123
115
|
txPage: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet/transactions/${txHash}',
|
|
124
116
|
accountPage: 'https://explorer.tendermint.roomit.xyz/arkeo-mainnet/account/${accountAddress}'
|
|
125
117
|
},
|
|
126
|
-
{
|
|
127
|
-
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
128
|
-
url: 'https://explorer.whenmoonwhenlambo.money/arkeo',
|
|
129
|
-
txPage: 'https://explorer.whenmoonwhenlambo.money/arkeo/tx/${txHash}',
|
|
130
|
-
accountPage: 'https://explorer.whenmoonwhenlambo.money/arkeo/account/${accountAddress}'
|
|
131
|
-
},
|
|
132
118
|
{
|
|
133
119
|
kind: 'NodeStake',
|
|
134
120
|
url: 'https://explorer.nodestake.org/arkeo',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.133",
|
|
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.133"
|
|
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": "44110af64426c7185b974541380abba9ea4b63f6"
|
|
43
43
|
}
|
package/testnet/asset-lists.js
CHANGED
|
@@ -98,6 +98,7 @@ const _mantrachaintestnet2 = __importStar(require("./mantrachaintestnet2"));
|
|
|
98
98
|
const _marstestnet = __importStar(require("./marstestnet"));
|
|
99
99
|
const _metanovaversetestnet = __importStar(require("./metanovaversetestnet"));
|
|
100
100
|
const _migalootestnet = __importStar(require("./migalootestnet"));
|
|
101
|
+
const _monolythiumsprintnet = __importStar(require("./monolythiumsprintnet"));
|
|
101
102
|
const _neuratestnet = __importStar(require("./neuratestnet"));
|
|
102
103
|
const _neutrontestnet = __importStar(require("./neutrontestnet"));
|
|
103
104
|
const _nibirutestnet = __importStar(require("./nibirutestnet"));
|
|
@@ -239,6 +240,7 @@ const assetList = [
|
|
|
239
240
|
_marstestnet.assetList,
|
|
240
241
|
_metanovaversetestnet.assetList,
|
|
241
242
|
_migalootestnet.assetList,
|
|
243
|
+
_monolythiumsprintnet.assetList,
|
|
242
244
|
_neuratestnet.assetList,
|
|
243
245
|
_neutrontestnet.assetList,
|
|
244
246
|
_nibirutestnet.assetList,
|
package/testnet/chains.js
CHANGED
|
@@ -98,6 +98,7 @@ const _mantrachaintestnet2 = __importStar(require("./mantrachaintestnet2"));
|
|
|
98
98
|
const _marstestnet = __importStar(require("./marstestnet"));
|
|
99
99
|
const _metanovaversetestnet = __importStar(require("./metanovaversetestnet"));
|
|
100
100
|
const _migalootestnet = __importStar(require("./migalootestnet"));
|
|
101
|
+
const _monolythiumsprintnet = __importStar(require("./monolythiumsprintnet"));
|
|
101
102
|
const _neuratestnet = __importStar(require("./neuratestnet"));
|
|
102
103
|
const _neutrontestnet = __importStar(require("./neutrontestnet"));
|
|
103
104
|
const _nibirutestnet = __importStar(require("./nibirutestnet"));
|
|
@@ -239,6 +240,7 @@ const chains = [
|
|
|
239
240
|
_marstestnet.chain,
|
|
240
241
|
_metanovaversetestnet.chain,
|
|
241
242
|
_migalootestnet.chain,
|
|
243
|
+
_monolythiumsprintnet.chain,
|
|
242
244
|
_neuratestnet.chain,
|
|
243
245
|
_neutrontestnet.chain,
|
|
244
246
|
_nibirutestnet.chain,
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../assetlist.schema.json',
|
|
5
|
+
chainName: 'monolythiumsprintnet',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native staking and gas token of Monolythium Sprintnet.',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'alyth',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'lyth',
|
|
13
|
+
exponent: 18
|
|
14
|
+
}],
|
|
15
|
+
typeAsset: 'sdk.coin',
|
|
16
|
+
base: 'alyth',
|
|
17
|
+
name: 'Monolythium Sprintnet',
|
|
18
|
+
display: 'lyth',
|
|
19
|
+
symbol: 'LYTH',
|
|
20
|
+
logoURIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
|
|
22
|
+
},
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
|
|
25
|
+
}]
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
exports.default = info;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../chain.schema.json',
|
|
5
|
+
chainName: 'monolythiumsprintnet',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'testnet',
|
|
8
|
+
prettyName: 'Monolythium Sprintnet',
|
|
9
|
+
chainType: 'cosmos',
|
|
10
|
+
chainId: 'mono-sprint-1',
|
|
11
|
+
bech32Prefix: 'mono',
|
|
12
|
+
daemonName: 'monod',
|
|
13
|
+
nodeHome: '$HOME/.monod',
|
|
14
|
+
keyAlgos: ['ethsecp256k1'],
|
|
15
|
+
slip44: 60,
|
|
16
|
+
fees: {
|
|
17
|
+
feeTokens: [{
|
|
18
|
+
denom: 'alyth',
|
|
19
|
+
fixedMinGasPrice: 0,
|
|
20
|
+
lowGasPrice: 0,
|
|
21
|
+
averageGasPrice: 0,
|
|
22
|
+
highGasPrice: 1000000000
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
stakingTokens: [{
|
|
27
|
+
denom: 'alyth'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
codebase: {
|
|
31
|
+
gitRepo: 'https://github.com/monolythium/mono-core'
|
|
32
|
+
},
|
|
33
|
+
logoURIs: {
|
|
34
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
|
|
35
|
+
},
|
|
36
|
+
description: 'Monolythium is a high-performance Layer-1 blockchain built with Cosmos SDK and CometBFT finality, featuring a first-class EVM. Sprintnet is the accelerated testnet for rapid end-to-end testing and upgrade rehearsals.',
|
|
37
|
+
apis: {
|
|
38
|
+
rpc: [{
|
|
39
|
+
address: 'https://rpc.sprintnet.mononodes.xyz',
|
|
40
|
+
provider: 'Monolythium'
|
|
41
|
+
}],
|
|
42
|
+
rest: [{
|
|
43
|
+
address: 'https://api.sprintnet.mononodes.xyz',
|
|
44
|
+
provider: 'Monolythium'
|
|
45
|
+
}],
|
|
46
|
+
evmHttpJsonrpc: [{
|
|
47
|
+
address: 'https://evm.sprintnet.mononodes.xyz',
|
|
48
|
+
provider: 'Monolythium'
|
|
49
|
+
}]
|
|
50
|
+
},
|
|
51
|
+
explorers: [{
|
|
52
|
+
kind: 'Monoscan',
|
|
53
|
+
url: 'https://monoscan.xyz/sprintnet',
|
|
54
|
+
txPage: 'https://monoscan.xyz/sprintnet/tx/${txHash}',
|
|
55
|
+
accountPage: 'https://monoscan.xyz/sprintnet/address/${accountAddress}'
|
|
56
|
+
}],
|
|
57
|
+
images: [{
|
|
58
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
|
|
59
|
+
}]
|
|
60
|
+
};
|
|
61
|
+
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;
|