From 9d88a6c52de61e7b66fd7d50c0b96ee5991b56d6 Mon Sep 17 00:00:00 2001 From: ZENODE Date: Thu, 1 Feb 2024 00:30:22 +0100 Subject: [PATCH 1/4] Update upgrades.go Signed-off-by: ZENODE --- app/upgrades.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 +} From 9513354754831cf094183e27c1c39c7752c830dc Mon Sep 17 00:00:00 2001 From: ZENODE Date: Thu, 1 Feb 2024 00:31:01 +0100 Subject: [PATCH 2/4] Update README.md Signed-off-by: ZENODE --- setup/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. From 97aa7bd3a1ef8cfdc8d580b91a481c2477d703f4 Mon Sep 17 00:00:00 2001 From: ZENODE Date: Thu, 1 Feb 2024 00:31:18 +0100 Subject: [PATCH 3/4] Update README.md Signed-off-by: ZENODE --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From a678d5d6dae7ca6db318c276c1a102b17fc76e1e Mon Sep 17 00:00:00 2001 From: ZENODE Date: Thu, 1 Feb 2024 00:31:38 +0100 Subject: [PATCH 4/4] Update upgrade.sh Signed-off-by: ZENODE --- setup/upgrade.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ""