Skip to content

Commit

Permalink
Sonic, HashKey toml config (#1568)
Browse files Browse the repository at this point in the history
## Motivation


## Solution
  • Loading branch information
stackman27 authored Jan 7, 2025
1 parent 3785c03 commit ea7c200
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ccip/config/evm/Hashkey_Mainnet.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
ChainID = '177'
ChainType = 'optimismBedrock'
FinalityTagEnabled = true

[GasEstimator]
PriceMax = '1000 gwei'
LimitDefault = 8000000
FeeCapDefault = '1000 gwei'

[NodePool]
PollFailureThreshold = 2
PollInterval = '8s'

[GasEstimator.DAOracle]
OracleType = 'opstack'
OracleAddress = '0x420000000000000000000000000000000000000F'
16 changes: 16 additions & 0 deletions ccip/config/evm/Hashkey_Testnet.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
ChainID = '133'
ChainType = 'optimismBedrock'
FinalityTagEnabled = true

[GasEstimator]
PriceMax = '1000 gwei'
LimitDefault = 8000000
FeeCapDefault = '1000 gwei'

[NodePool]
PollFailureThreshold = 2
PollInterval = '8s'

[GasEstimator.DAOracle]
OracleType = 'opstack'
OracleAddress = '0x420000000000000000000000000000000000000F'
28 changes: 28 additions & 0 deletions ccip/config/evm/Sonic_Mainnet.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
ChainId = '146'
FinalityDepth = 10
FinalityTagEnabled = false
LogPollInterval = "1s" #1s block rate
MinIncomingConfirmations = 5
RPCBlockQueryDelay = 10
RPCDefaultBatchSize = 100

[GasEstimator]
Mode = 'FeeHistory'
EIP1559DynamicFees = true
BumpPercent = 10
LimitDefault = 8000000 # default ccip value

[GasEstimator.FeeHistory]
CacheTimeout = '2s'

[GasEstimator.BlockHistory]
BlockHistorySize = 100

[HeadTracker]
HistoryDepth = 50

[NodePool]
SyncThreshold = 10

[Transactions]
MaxQueued = 500
28 changes: 28 additions & 0 deletions ccip/config/evm/Sonic_Testnet.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
ChainId = '57054'
FinalityDepth = 10
FinalityTagEnabled = false
LogPollInterval = "1s" #1s block rate
MinIncomingConfirmations = 5
RPCBlockQueryDelay = 10
RPCDefaultBatchSize = 100

[GasEstimator]
Mode = 'FeeHistory'
EIP1559DynamicFees = true
BumpPercent = 10
LimitDefault = 8000000 # default ccip value

[GasEstimator.FeeHistory]
CacheTimeout = '2s'

[GasEstimator.BlockHistory]
BlockHistorySize = 100

[HeadTracker]
HistoryDepth = 50

[NodePool]
SyncThreshold = 10

[Transactions]
MaxQueued = 500

0 comments on commit ea7c200

Please sign in to comment.