Created
November 10, 2024 08:41
-
-
Save cyborgshead/ace1c8a83fa1c40e590e131d99d5436c to your computer and use it in GitHub Desktop.
celatone_config.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable sonarjs/no-duplicate-string */ | |
import type { ChainConfig } from "@alleslabs/shared"; | |
export const devChainConfigs: ChainConfig[] = [ | |
// Write your chain config here. | |
{ | |
tier: "lite", | |
chainId: "bostrom", | |
chain: "bostrom", | |
registryChainName: "bostrom", | |
prettyName: "Bostrom", | |
lcd: "https://lcd.bostrom.cybernode.ai:443", | |
rpc: "https://rpc.bostrom.cybernode.ai:443", | |
wallets: ["keplr"], | |
features: { | |
wasm: { | |
enabled: true, | |
storeCodeMaxFileSize: 1_048_576, | |
clearAdminGas: 1_048_576, | |
}, | |
move: { | |
enabled: false, | |
}, | |
evm: { | |
enabled: false, | |
}, | |
pool: { | |
enabled: false, | |
}, | |
publicProject: { | |
enabled: false, | |
}, | |
gov: { | |
enabled: true, | |
version: "v1", | |
hideOpenProposal: true, | |
}, | |
nft: { | |
enabled: false, | |
}, | |
}, | |
gas: { | |
gasAdjustment: 1.5, | |
maxGasLimit: 20_000_000, | |
}, | |
extra: { | |
layer: "1", | |
}, | |
network_type: "mainnet", | |
logo_URIs: { | |
png: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/initia/images/INIT.png", | |
svg: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/initia/images/INIT.svg", | |
}, | |
fees: { | |
fee_tokens: [ | |
{ | |
denom: "boot", | |
fixed_min_gas_price: 0.2, | |
low_gas_price: 0.2, | |
average_gas_price: 0.2, | |
high_gas_price: 0.5, | |
}, | |
], | |
}, | |
registry: { | |
bech32_prefix: "bostrom", | |
slip44: 118, | |
staking: { | |
staking_tokens: [ | |
{ | |
denom: "boot", | |
}, | |
], | |
}, | |
assets: [ | |
{ | |
description: "The native token of Bostrom", | |
denom_units: [ | |
{ | |
denom: "boot", | |
exponent: 0, | |
}, | |
], | |
base: "boot", | |
display: "BOOT", | |
name: "BOSTROM Native Token", | |
symbol: "BOOT", | |
images: [ | |
{ | |
png: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/initia/images/INIT.png", | |
svg: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/initia/images/INIT.svg", | |
}, | |
], | |
logo_URIs: { | |
png: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/initia/images/INIT.png", | |
svg: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/initia/images/INIT.svg", | |
}, | |
}, | |
], | |
}, | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment