-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1177 from alleslabs/release/v1.9.3
Cut release v1.9.3
- Loading branch information
Showing
17 changed files
with
376 additions
and
105 deletions.
There are no files selected for viewing
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import type { ChainConfig } from "@alleslabs/shared"; | ||
|
||
export const DEFAULT_WASM_CONFIG: ChainConfig["features"]["wasm"] = { | ||
enabled: true, | ||
storeCodeMaxFileSize: 1024 * 1024 * 2, | ||
clearAdminGas: 1000000, | ||
}; | ||
|
||
export const DEFAULT_MOVE_CONFIG: ChainConfig["features"]["move"] = { | ||
enabled: true, | ||
moduleMaxFileSize: 1024 * 1024, | ||
}; | ||
|
||
export const DEFAULT_POOL_CONFIG: ChainConfig["features"]["pool"] = { | ||
enabled: false, | ||
}; | ||
|
||
export const DEFAULT_PUBLIC_PROJECT_CONFIG: ChainConfig["features"]["publicProject"] = | ||
{ | ||
enabled: true, | ||
}; | ||
|
||
export const DEFAULT_GOV_CONFIG: ChainConfig["features"]["gov"] = { | ||
enabled: false, | ||
}; | ||
|
||
export const DEFAULT_WALLET_CONFIG: ChainConfig["wallets"] = [ | ||
"initia", | ||
"keplr", | ||
]; | ||
|
||
export const DEFAULT_BECH32_PREFIX = "init"; | ||
|
||
export const DEFAULT_GAS = { | ||
gasPrice: 0.15, | ||
fixed_min_gas_price: 0.15, | ||
low_gas_price: 0.15, | ||
average_gas_price: 0.15, | ||
high_gas_price: 0.15, | ||
gasAdjustment: 1.5, | ||
maxGasLimit: 25000000, | ||
}; | ||
|
||
export const DEFAULT_SLIP44 = 118; | ||
|
||
export const DEFAULT_DENOM = "umin"; | ||
|
||
export const DEFAULT_CUSTOM_MINITIA_NETWORK: Pick< | ||
ChainConfig, | ||
"tier" | "chain" | "network_type" | "extra" | ||
> = { | ||
tier: "sequencer", | ||
chain: "initia", | ||
network_type: "local", | ||
extra: { | ||
isValidatorExternalLink: null, | ||
layer: "2", | ||
}, | ||
}; |
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
Oops, something went wrong.