Skip to content

Commit

Permalink
add toml
Browse files Browse the repository at this point in the history
  • Loading branch information
flodesi committed Dec 30, 2024
1 parent ce56547 commit bd19f0e
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ccip/config/evm/Sei_Testnet_Atlantic.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
ChainID = '1328'
# finality_depth: instant
FinalityDepth = 10
# block_time: ~0.4s, adding 1 second buffer
LogPollInterval = '2s'
# finality_depth * block_time / 60 secs = ~0.8 min (finality time)
NoNewFinalizedHeadsThreshold = '5m'
# "RPC node returned multiple missing blocks on query for block numbers [31592085 31592084] even though the WS subscription already sent us these blocks. It might help to increase EVM.RPCBlockQueryDelay (currently 1)"
RPCBlockQueryDelay = 5

[GasEstimator]
EIP1559DynamicFees = false
Mode = 'BlockHistory'

[GasEstimator.BlockHistory]
BlockHistorySize = 200
16 changes: 16 additions & 0 deletions core/chains/evm/config/toml/defaults/Sei_Testnet_Atlantic.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
ChainID = '1328'
# finality_depth: instant
FinalityDepth = 10
# block_time: ~0.4s, adding 1 second buffer
LogPollInterval = '2s'
# finality_depth * block_time / 60 secs = ~0.8 min (finality time)
NoNewFinalizedHeadsThreshold = '5m'
# "RPC node returned multiple missing blocks on query for block numbers [31592085 31592084] even though the WS subscription already sent us these blocks. It might help to increase EVM.RPCBlockQueryDelay (currently 1)"
RPCBlockQueryDelay = 5

[GasEstimator]
EIP1559DynamicFees = false
Mode = 'BlockHistory'

[GasEstimator.BlockHistory]
BlockHistorySize = 200
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[Network]
selected_networks = ["SEI_TESTNET_ATLANTIC"]

[Soak.Common]
chainlink_node_funding = 25

[Soak.OCR]
[Soak.OCR.Common]
test_duration = "24h"

[Soak.OCR.Soak]
time_between_rounds = "5m"

[OCR.Common]
number_of_contracts = 2

[Network.EVMNetworks.SEI_TESTNET_ATLANTIC]
evm_name = "sei_testnet_atlantic"
evm_chain_id = 1328
client_implementation = "Ethereum"
evm_simulated = false
evm_chainlink_transaction_limit = 5000
evm_minimum_confirmations = 1
evm_gas_estimation_buffer = 10000
evm_supports_eip1559 = false
evm_default_gas_limit = 6000000

0 comments on commit bd19f0e

Please sign in to comment.