-
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.
- Loading branch information
1 parent
0a18b72
commit ded11f0
Showing
5 changed files
with
512 additions
and
0 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 default configs for new chains |
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,11 @@ | ||
ChainID = '21000001' | ||
FinalityTagEnabled = true | ||
ChainType = 'arbitrum' | ||
|
||
[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 = '1000 gwei' |
38 changes: 38 additions & 0 deletions
38
core/chains/evm/config/toml/defaults/Shibarium_Mainnet.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,38 @@ | ||
ChainID = '109' | ||
FinalityTagEnabled = true | ||
LinkContractAddress = '0x71052BAe71C25C78E37fD12E5ff1101A71d9018F' | ||
LogPollInterval = '1s' | ||
MinIncomingConfirmations = 5 | ||
NoNewHeadsThreshold = '30s' | ||
RPCBlockQueryDelay = 10 | ||
RPCDefaultBatchSize = 100 | ||
|
||
[Transactions] | ||
ResendAfterThreshold = '1m' | ||
|
||
[BalanceMonitor] | ||
Enabled = true | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = true | ||
PriceDefault = '10 gwei' | ||
PriceMin = '2 gwei' | ||
BumpMin = '5 gwei' | ||
BumpThreshold = 5 | ||
PriceMax = '10000 gwei' | ||
LimitDefault = 8000000 | ||
FeeCapDefault = '10000 gwei' | ||
|
||
[GasEstimator.BlockHistory] | ||
# Default is 24, which leads to bumpy gas prices. In CCIP | ||
# we want to smooth out the gas prices, so we increase the sample size. | ||
BlockHistorySize = 200 | ||
|
||
[HeadTracker] | ||
HistoryDepth = 300 | ||
SamplingInterval = '1s' | ||
|
||
[NodePool] | ||
PollFailureThreshold = 2 | ||
PollInterval = '3s' | ||
SyncThreshold = 10 |
38 changes: 38 additions & 0 deletions
38
core/chains/evm/config/toml/defaults/Shibarium_Testnet.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,38 @@ | ||
ChainID = '157' | ||
FinalityTagEnabled = true | ||
LinkContractAddress = '0x44637eEfD71A090990f89faEC7022fc74B2969aD' | ||
LogPollInterval = '1s' | ||
MinIncomingConfirmations = 5 | ||
NoNewHeadsThreshold = '30s' | ||
RPCBlockQueryDelay = 10 | ||
RPCDefaultBatchSize = 100 | ||
|
||
[Transactions] | ||
ResendAfterThreshold = '1m' | ||
|
||
[BalanceMonitor] | ||
Enabled = true | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = true | ||
PriceDefault = '10 gwei' | ||
PriceMin = '2 gwei' | ||
BumpMin = '5 gwei' | ||
BumpThreshold = 5 | ||
PriceMax = '10000 gwei' | ||
LimitDefault = 8000000 | ||
FeeCapDefault = '10000 gwei' | ||
|
||
[GasEstimator.BlockHistory] | ||
# Default is 24, which leads to bumpy gas prices. In CCIP | ||
# we want to smooth out the gas prices, so we increase the sample size. | ||
BlockHistorySize = 200 | ||
|
||
[HeadTracker] | ||
HistoryDepth = 300 | ||
SamplingInterval = '1s' | ||
|
||
[NodePool] | ||
PollFailureThreshold = 2 | ||
PollInterval = '3s' | ||
SyncThreshold = 10 |
Oops, something went wrong.