diff --git a/README.md b/README.md index cec6b0a854..96389e3033 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ sh setup/state-sync.sh This script assumes that you are currently operating on the Evmos fork of GenesisL1 (repo: [`genesis-ethermint`](https://github.com/zenodeapp/genesis-ethermint)) and the node synced till height: `insert_height_here` which caused it to panic. > [!IMPORTANT] -> This should only be used if you run a **full-node** and have to perform the **"plan_cronos"**-upgrade. +> This should only be used if you run a **full-node** and have to perform the **"plan_crypto"**-upgrade. ``` sh setup/upgrade.sh diff --git a/app/upgrades.go b/app/upgrades.go index a75ade5c42..f3dc60cae3 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -28,7 +28,7 @@ func UpgradeV1( evm *evmkeeper.Keeper, ) UpgradeInfo { return UpgradeInfo{ - Name: "plan_cronos", + Name: "plan_crypto", Info: `'{"binaries":{"darwin/amd64":"","darwin/x86_64":"","linux/arm64":"","linux/amd64":"","windows/x86_64":""}}'`, Handler: func(ctx sdk.Context, _ upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) { m, err := mm.RunMigrations(ctx, configurator, fromVM) @@ -38,10 +38,10 @@ func UpgradeV1( // Override feemarket parameters fmParams := fm.GetParams(ctx) - fmParams.BaseFeeChangeDenominator = 300 - fmParams.ElasticityMultiplier = 4 - fmParams.BaseFee = sdk.NewInt(10000000000000) - fmParams.MinGasPrice = sdk.NewDec(10000000000000) + fmParams.BaseFeeChangeDenominator = 8 + fmParams.ElasticityMultiplier = 2 + fmParams.BaseFee = sdk.NewInt(50000000000) + fmParams.MinGasPrice = sdk.NewDec(50000000000) fm.SetParams(ctx, fmParams) // clear extra_eips from evm parameters @@ -98,4 +98,4 @@ func (app *App) RegisterUpgradeHandlers(experimental bool) { // configure store loader that checks if version == upgradeHeight and applies store upgrades app.SetStoreLoader(upgradetypes.UpgradeStoreLoader(upgradeInfo.Height, storeUpgrades)) } -} \ No newline at end of file +} diff --git a/setup/README.md b/setup/README.md index b981d59bfe..e5ceb85026 100644 --- a/setup/README.md +++ b/setup/README.md @@ -7,7 +7,7 @@ This script installs all the dependencies (and system configurations) that are n ## upgrade.sh > [!WARNING] -> This script should only be used if you run a full-node and have to perform the **"plan_cronos"**-upgrade! +> This script should only be used if you run a full-node and have to perform the **"plan_crypto"**-upgrade! > > This means that you are currently operating on the Evmos fork of GenesisL1 (repo: [`genesis-ethermint`](https://github.com/zenodeapp/genesis-ethermint)) and the node synced till height: `insert_height_here` which caused it to panic. diff --git a/setup/upgrade.sh b/setup/upgrade.sh index 06036f0220..97caa2dae7 100644 --- a/setup/upgrade.sh +++ b/setup/upgrade.sh @@ -14,7 +14,7 @@ cat <<"EOF" EOF echo "" -echo "This script should only be used if you run a full-node and have to perform the plan_cronos" +echo "This script should only be used if you run a full-node and have to perform the plan_crypto" echo "upgrade! This means you are currently operating on the Evmos fork of GenesisL1 and the node" echo "synced till the height that caused it to panic." echo ""