-
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.
[SHIP-2208] Enable EIP-1559 Transactions on Scroll (#13687)
* Enable EIP-1559 Transactions on Scroll * docs * Update to 1 gwei bump min * Update BlockHistorySize * docs * Reduce BlockHistorySize
- Loading branch information
1 parent
d64ba3d
commit df0b06e
Showing
6 changed files
with
47 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
#added support for EIP-1559 transactions for Scroll |
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 |
---|---|---|
@@ -1,20 +1,22 @@ | ||
ChainID = '534352' | ||
FinalityDepth = 10 | ||
FinalityTagEnabled = true | ||
ChainType = 'scroll' | ||
LogPollInterval = '3s' | ||
LogPollInterval = '5s' | ||
MinIncomingConfirmations = 1 | ||
# Scroll only emits blocks when a new tx is received, so this method of liveness detection is not useful | ||
NoNewHeadsThreshold = '0' | ||
OCR.ContractConfirmations = 1 | ||
|
||
[GasEstimator] | ||
Mode = 'SuggestedPrice' | ||
# Scroll uses the SuggestedPrice estimator; we don't want to place any limits on the minimum gas price | ||
PriceMin = '0' | ||
EIP1559DynamicFees = true | ||
PriceMin = '1 wei' | ||
BumpMin = '1 gwei' | ||
|
||
[GasEstimator.BlockHistory] | ||
# Force an error if someone enables the estimator by accident; we never want to run the block history estimator on Scroll | ||
BlockHistorySize = 0 | ||
BlockHistorySize = 24 | ||
|
||
[HeadTracker] | ||
HistoryDepth = 50 | ||
|
||
[OCR] | ||
ContractConfirmations = 1 |
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 |
---|---|---|
@@ -1,20 +1,22 @@ | ||
ChainID = '534351' | ||
FinalityDepth = 10 | ||
FinalityTagEnabled = true | ||
ChainType = 'scroll' | ||
LogPollInterval = '3s' | ||
LogPollInterval = '5s' | ||
MinIncomingConfirmations = 1 | ||
# Scroll only emits blocks when a new tx is received, so this method of liveness detection is not useful | ||
NoNewHeadsThreshold = '0' | ||
OCR.ContractConfirmations = 1 | ||
|
||
[GasEstimator] | ||
Mode = 'SuggestedPrice' | ||
# Scroll uses the SuggestedPrice estimator; we don't want to place any limits on the minimum gas price | ||
PriceMin = '0' | ||
EIP1559DynamicFees = true | ||
PriceMin = '1 wei' | ||
BumpMin = '1 gwei' | ||
|
||
[GasEstimator.BlockHistory] | ||
# Force an error if someone enables the estimator by accident; we never want to run the block history estimator on Scroll | ||
BlockHistorySize = 0 | ||
BlockHistorySize = 24 | ||
|
||
[HeadTracker] | ||
HistoryDepth = 50 | ||
|
||
[OCR] | ||
ContractConfirmations = 1 |
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