From 37aa934eb837571bfa46336c8c584298b2f5e729 Mon Sep 17 00:00:00 2001 From: joaoluisam Date: Tue, 3 Dec 2024 14:19:07 +0000 Subject: [PATCH] add roning configs --- .../evm/config/toml/defaults/Ronin_Mainnet.toml | 16 ++++++++++++++++ .../evm/config/toml/defaults/Ronin_Saigon.toml | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 core/chains/evm/config/toml/defaults/Ronin_Mainnet.toml create mode 100644 core/chains/evm/config/toml/defaults/Ronin_Saigon.toml diff --git a/core/chains/evm/config/toml/defaults/Ronin_Mainnet.toml b/core/chains/evm/config/toml/defaults/Ronin_Mainnet.toml new file mode 100644 index 00000000000..11e798fb9ed --- /dev/null +++ b/core/chains/evm/config/toml/defaults/Ronin_Mainnet.toml @@ -0,0 +1,16 @@ +ChainID = '2020' +FinalityDepth = 2 +FinalityTagEnabled = true +NoNewHeadsThreshold = "10m" +LogPollInterval = "6s" + +[GasEstimator] +EIP1559DynamicFees = false +PriceMax = "100000 gwei" +PriceDefault = "21 gwei" +FeeCapDefault = "20 gwei" +LimitDefault = 10000000 +PriceMin = "20 gwei" + +[HeadTracker] +HistoryDepth = 2000 diff --git a/core/chains/evm/config/toml/defaults/Ronin_Saigon.toml b/core/chains/evm/config/toml/defaults/Ronin_Saigon.toml new file mode 100644 index 00000000000..86f02642727 --- /dev/null +++ b/core/chains/evm/config/toml/defaults/Ronin_Saigon.toml @@ -0,0 +1,16 @@ +ChainID = '2021' +FinalityDepth = 2 +FinalityTagEnabled = true +NoNewHeadsThreshold = "10m" +LogPollInterval = "6s" + +[GasEstimator] +EIP1559DynamicFees = false +PriceMax = "100000 gwei" +PriceDefault = "21 gwei" +FeeCapDefault = "20 gwei" +LimitDefault = 10000000 +PriceMin = "20 gwei" + +[HeadTracker] +HistoryDepth = 2000