Skip to content

Commit 820b9e9

Browse files
committed
build 🛠 build-20260106-024607
1 parent 6242c2b commit 820b9e9

File tree

5 files changed

+96
-0
lines changed

5 files changed

+96
-0
lines changed

v2/packages/chain-registry/src/testnet/asset-lists.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ import * as _mantrachaintestnet2 from './mantrachaintestnet2';
7575
import * as _marstestnet from './marstestnet';
7676
import * as _metanovaversetestnet from './metanovaversetestnet';
7777
import * as _migalootestnet from './migalootestnet';
78+
import * as _monolythiumsprintnet from './monolythiumsprintnet';
7879
import * as _neuratestnet from './neuratestnet';
7980
import * as _neutrontestnet from './neutrontestnet';
8081
import * as _nibirutestnet from './nibirutestnet';
@@ -217,6 +218,7 @@ const assetList: AssetList[] = [
217218
_marstestnet.assetList,
218219
_metanovaversetestnet.assetList,
219220
_migalootestnet.assetList,
221+
_monolythiumsprintnet.assetList,
220222
_neuratestnet.assetList,
221223
_neutrontestnet.assetList,
222224
_nibirutestnet.assetList,

v2/packages/chain-registry/src/testnet/chains.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ import * as _mantrachaintestnet2 from './mantrachaintestnet2';
7575
import * as _marstestnet from './marstestnet';
7676
import * as _metanovaversetestnet from './metanovaversetestnet';
7777
import * as _migalootestnet from './migalootestnet';
78+
import * as _monolythiumsprintnet from './monolythiumsprintnet';
7879
import * as _neuratestnet from './neuratestnet';
7980
import * as _neutrontestnet from './neutrontestnet';
8081
import * as _nibirutestnet from './nibirutestnet';
@@ -217,6 +218,7 @@ const chains: Chain[] = [
217218
_marstestnet.chain,
218219
_metanovaversetestnet.chain,
219220
_migalootestnet.chain,
221+
_monolythiumsprintnet.chain,
220222
_neuratestnet.chain,
221223
_neutrontestnet.chain,
222224
_nibirutestnet.chain,
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import { AssetList } from '@chain-registry/types';
2+
const info: AssetList = {
3+
$schema: '../../assetlist.schema.json',
4+
chainName: 'monolythiumsprintnet',
5+
assets: [{
6+
description: 'The native staking and gas token of Monolythium Sprintnet.',
7+
denomUnits: [{
8+
denom: 'alyth',
9+
exponent: 0
10+
}, {
11+
denom: 'lyth',
12+
exponent: 18
13+
}],
14+
typeAsset: 'sdk.coin',
15+
base: 'alyth',
16+
name: 'Monolythium Sprintnet',
17+
display: 'lyth',
18+
symbol: 'LYTH',
19+
logoURIs: {
20+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
21+
},
22+
images: [{
23+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
24+
}]
25+
}]
26+
};
27+
export default info;
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import { Chain } from '@chain-registry/types';
2+
const info: Chain = {
3+
$schema: '../../chain.schema.json',
4+
chainName: 'monolythiumsprintnet',
5+
status: 'live',
6+
networkType: 'testnet',
7+
prettyName: 'Monolythium Sprintnet',
8+
chainType: 'cosmos',
9+
chainId: 'mono-sprint-1',
10+
bech32Prefix: 'mono',
11+
daemonName: 'monod',
12+
nodeHome: '$HOME/.monod',
13+
keyAlgos: ['ethsecp256k1'],
14+
slip44: 60,
15+
fees: {
16+
feeTokens: [{
17+
denom: 'alyth',
18+
fixedMinGasPrice: 0,
19+
lowGasPrice: 0,
20+
averageGasPrice: 0,
21+
highGasPrice: 1000000000
22+
}]
23+
},
24+
staking: {
25+
stakingTokens: [{
26+
denom: 'alyth'
27+
}]
28+
},
29+
codebase: {
30+
gitRepo: 'https://github.com/monolythium/mono-core'
31+
},
32+
logoURIs: {
33+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
34+
},
35+
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.',
36+
apis: {
37+
rpc: [{
38+
address: 'https://rpc.sprintnet.mononodes.xyz',
39+
provider: 'Monolythium'
40+
}],
41+
rest: [{
42+
address: 'https://api.sprintnet.mononodes.xyz',
43+
provider: 'Monolythium'
44+
}],
45+
evmHttpJsonrpc: [{
46+
address: 'https://evm.sprintnet.mononodes.xyz',
47+
provider: 'Monolythium'
48+
}]
49+
},
50+
explorers: [{
51+
kind: 'Monoscan',
52+
url: 'https://monoscan.xyz/sprintnet',
53+
txPage: 'https://monoscan.xyz/sprintnet/tx/${txHash}',
54+
accountPage: 'https://monoscan.xyz/sprintnet/address/${accountAddress}'
55+
}],
56+
images: [{
57+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/monolythiumsprintnet/images/lyth.png'
58+
}]
59+
};
60+
export default info;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import _assetList from './asset-list';
2+
import _chain from './chain';
3+
4+
export const assetList = _assetList;
5+
export const chain = _chain;

0 commit comments

Comments
 (0)