Skip to content

Commit

Permalink
[ship-812] enable gnosis soak (#12081)
Browse files Browse the repository at this point in the history
* Rename xdai config to gnosis

* Add Gnosis Chiado toml config

* Update config docs

* Enable Gnosis

* Enable EIP1559

* make config-docs

* Remove legacy config

* Removed cl address

* Rebase develop

* make config-docs
  • Loading branch information
davidcauchi authored and friedemannf committed Mar 12, 2024
1 parent 671de53 commit 0c32432
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 1 deletion.
11 changes: 11 additions & 0 deletions core/chains/evm/config/toml/defaults/Gnosis_Chiado.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ChainID = '10200'
# Gnoisis Finality is approx 8 minutes @ 12 blocks per minute, so 96 blocks
FinalityDepth = 100
ChainType = 'xdai'
LogPollInterval = '5s'

[GasEstimator]
EIP1559DynamicFees = true
PriceMax = '500 gwei'
# 15s delay since feeds update every minute in volatile situations
BumpThreshold = 3
83 changes: 82 additions & 1 deletion docs/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2564,7 +2564,7 @@ GasLimit = 5300000

</p></details>

<details><summary>xDai Mainnet (100)</summary><p>
<details><summary>Gnosis Mainnet (100)</summary><p>

```toml
AutoCreateKey = true
Expand Down Expand Up @@ -4021,6 +4021,87 @@ GasLimit = 6500000

</p></details>

<details><summary>Gnosis Chiado (10200)</summary><p>

```toml
AutoCreateKey = true
BlockBackfillDepth = 10
BlockBackfillSkip = false
ChainType = 'xdai'
FinalityDepth = 100
FinalityTagEnabled = false
LogBackfillBatchSize = 1000
LogPollInterval = '5s'
LogKeepBlocksDepth = 100000
MinIncomingConfirmations = 3
MinContractPayment = '0.00001 link'
NonceAutoSync = true
NoNewHeadsThreshold = '3m0s'
RPCDefaultBatchSize = 250
RPCBlockQueryDelay = 1

[Transactions]
ForwardersEnabled = false
MaxInFlight = 16
MaxQueued = 250
ReaperInterval = '1h0m0s'
ReaperThreshold = '168h0m0s'
ResendAfterThreshold = '1m0s'

[BalanceMonitor]
Enabled = true

[GasEstimator]
Mode = 'BlockHistory'
PriceDefault = '20 gwei'
PriceMax = '500 gwei'
PriceMin = '1 gwei'
LimitDefault = 500000
LimitMax = 500000
LimitMultiplier = '1'
LimitTransfer = 21000
BumpMin = '5 gwei'
BumpPercent = 20
BumpThreshold = 3
EIP1559DynamicFees = true
FeeCapDefault = '100 gwei'
TipCapDefault = '1 wei'
TipCapMin = '1 wei'

[GasEstimator.BlockHistory]
BatchSize = 25
BlockHistorySize = 8
CheckInclusionBlocks = 12
CheckInclusionPercentile = 90
TransactionPercentile = 60

[HeadTracker]
HistoryDepth = 100
MaxBufferSize = 3
SamplingInterval = '1s'

[NodePool]
PollFailureThreshold = 5
PollInterval = '10s'
SelectionMode = 'HighestHead'
SyncThreshold = 5
LeaseDuration = '0s'

[OCR]
ContractConfirmations = 4
ContractTransmitterTransmitTimeout = '10s'
DatabaseTimeout = '10s'
DeltaCOverride = '168h0m0s'
DeltaCJitterOverride = '1h0m0s'
ObservationGracePeriod = '1s'

[OCR2]
[OCR2.Automation]
GasLimit = 5400000
```

</p></details>

<details><summary>Arbitrum Mainnet (42161)</summary><p>

```toml
Expand Down

0 comments on commit 0c32432

Please sign in to comment.