-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BCI-2199] Enable Arbitrum on demand soaks (#10993)
* Enable Arbitrum on demand soaks * Update testing branch * Add Arbiturm Sepolia config * Update docs
- Loading branch information
1 parent
e740c8c
commit d9afbbd
Showing
5 changed files
with
110 additions
and
3 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
26 changes: 26 additions & 0 deletions
26
core/chains/evm/config/toml/defaults/Arbitrum_Sepolia.toml
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,26 @@ | ||
ChainID = '421614' | ||
ChainType = 'arbitrum' | ||
NoNewHeadsThreshold = '0' | ||
OCR.ContractConfirmations = 1 | ||
LogPollInterval = '1s' | ||
|
||
[GasEstimator] | ||
Mode = 'Arbitrum' | ||
LimitMax = 1_000_000_000 | ||
# Arbitrum uses the suggested gas price, so we don't want to place any limits on the minimum | ||
PriceMin = '0' | ||
PriceDefault = '0.1 gwei' | ||
PriceMax = '115792089237316195423570985008687907853269984665.640564039457584007913129639935 tether' | ||
FeeCapDefault = '1000 gwei' | ||
# Disable gas bumping on arbitrum | ||
BumpThreshold = 0 | ||
|
||
[GasEstimator.BlockHistory] | ||
# Force an error if someone set GAS_UPDATER_ENABLED=true by accident; we never want to run the block history estimator on arbitrum | ||
BlockHistorySize = 0 | ||
|
||
[NodePool] | ||
SyncThreshold = 10 | ||
|
||
[OCR2.Automation] | ||
GasLimit = 14500000 |
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