Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add blackwing tomcat-1 #887

Merged
merged 5 commits into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Features

- [#887](https://github.com/alleslabs/celatone-frontend/pull/887) Add blackwing devnet 1 network
- [#880](https://github.com/alleslabs/celatone-frontend/pull/880) Add resolved voting power for proposals
- [#878](https://github.com/alleslabs/celatone-frontend/pull/878) Support searching proposal id and validator address on the main search
- [#875](https://github.com/alleslabs/celatone-frontend/pull/875) Add Amplitude tracking to validator details page
Expand Down
47 changes: 47 additions & 0 deletions src/config/chain/initia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,53 @@ export const INITIA_CHAIN_CONFIGS: ChainConfigs = {
isValidatorExternalLink: null,
},
},
"tomcat-1": {
chain: "initia",
registryChainName: "blackwingdevnet1",
prettyName: "Blackwing Devnet 1",
lcd: "https://maze-rest-c64ef367-a391-4e71-901e-87951e5e9030.ue1-prod.newmetric.xyz",
rpc: "https://maze-rpc-c64ef367-a391-4e71-901e-87951e5e9030.ue1-prod.newmetric.xyz",
indexer: "https://tomcat-1-graphql.alleslabs.dev/v1/graphql",
wallets: [...initiaWallets, ...keplrWallets],
features: {
faucet: {
enabled: false,
},
wasm: {
enabled: false,
},
move: {
enabled: true,
moduleMaxFileSize: 1_048_576,
decodeApi: INITIA_DECODER,
verify: "",
},
pool: {
enabled: false,
},
publicProject: {
enabled: true,
},
gov: {
enabled: false,
},
nft: {
enabled: true,
},
},
gas: {
gasPrice: {
tokenPerGas: 0.151,
denom:
"l2/ad2344d0c17127cc6bce67e360f43cd6c5fa09a7b5f6f9b7b80f9dc3e0c4876e",
},
gasAdjustment: 1.5,
maxGasLimit: 25_000_000,
},
extra: {
isValidatorExternalLink: null,
},
},
"miniwasm-2": {
chain: "initia",
registryChainName: "minitiawasmdevnet2",
Expand Down
68 changes: 68 additions & 0 deletions src/lib/chain-registry/initiatestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,50 @@ export const initiatestnet: Chain[] = [
],
},
},
{
$schema: CHAIN_SCHEMA,
chain_name: "blackwingdevnet1",
status: "live",
network_type: "devnet",
pretty_name: "Blackwing Devnet 1",
chain_id: "tomcat-1",
bech32_prefix: "init",
daemon_name: "minitiad",
node_home: NODE_HOME,
key_algos: ["secp256k1"],
slip44: 118,
fees: {
fee_tokens: [
{
denom:
"l2/ad2344d0c17127cc6bce67e360f43cd6c5fa09a7b5f6f9b7b80f9dc3e0c4876e",
fixed_min_gas_price: 0,
low_gas_price: 0.151,
average_gas_price: 0.151,
high_gas_price: 0.151,
},
],
},
staking: undefined,
logo_URIs: {
png: "",
svg: "",
},
apis: {
rpc: [
{
address:
"https://maze-rpc-c64ef367-a391-4e71-901e-87951e5e9030.ue1-prod.newmetric.xyz",
},
],
rest: [
{
address:
"https://maze-rest-c64ef367-a391-4e71-901e-87951e5e9030.ue1-prod.newmetric.xyz",
},
],
},
},
{
$schema: CHAIN_SCHEMA,
chain_name: "minitiawasmdevnet2",
Expand Down Expand Up @@ -235,6 +279,30 @@ export const initiatestnetAssets: AssetList[] = [
},
],
},
{
$schema: ASSETLIST_SCHEMA,
chain_name: "blackwingdevnet1",
assets: [
{
description: "The native staking token of Initia.",
denom_units: [
{
denom:
"l2/ad2344d0c17127cc6bce67e360f43cd6c5fa09a7b5f6f9b7b80f9dc3e0c4876e",
exponent: 0,
},
{
denom: "init",
exponent: 6,
},
],
base: "l2/ad2344d0c17127cc6bce67e360f43cd6c5fa09a7b5f6f9b7b80f9dc3e0c4876e",
name: "Init",
display: "init",
symbol: "INIT",
},
],
},
{
$schema: ASSETLIST_SCHEMA,
chain_name: "minitiawasmdevnet2",
Expand Down
Loading