-
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.
Add Monad Testnet Config and Error Mapping (#15993)
* add monad testnet * add remaining config * nit * bump down no new heads * remove redundant * update finality setting from product * fix error classification
- Loading branch information
Showing
5 changed files
with
143 additions
and
1 deletion.
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 Monad Testnet Config |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
ChainID = '10143' | ||
# finality_depth was: 0 | ||
FinalityDepth = 120 | ||
# block_time was: 1s, adding 1 second buffer | ||
LogPollInterval = '2s' | ||
# No WS Support | ||
LogBroadcasterEnabled = false | ||
FinalityTagEnabled = false | ||
# finality_depth * block_time / 60 secs = < 1 min (finality time) | ||
NoNewFinalizedHeadsThreshold = '1m' | ||
NoNewHeadsThreshold = '1m' | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = false | ||
Mode = 'FeeHistory' | ||
|
||
[GasEstimator.FeeHistory] | ||
CacheTimeout = '2s' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 100 | ||
|
||
[NodePool] | ||
NewHeadsPollInterval = '4s' |
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