Skip to content
This repository was archived by the owner on Mar 14, 2025. It is now read-only.

Commit b276d4d

Browse files
authored
set FinalityTagBypass=false for chains with FinalityDepth<1k (#1526)
## Motivation https://chainlink-core.slack.com/archives/C07RA1B58CC/p1730983397689179?thread_ts=1730908333.814809&cid=C07RA1B58CC ## Solution
1 parent 001a2a4 commit b276d4d

File tree

101 files changed

+434
-85
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+434
-85
lines changed

ccip/config/evm/Astar_Mainnet.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@ LogPollInterval = '6s'
66
[GasEstimator]
77
EIP1559DynamicFees = false
88
PriceMax = '100000 gwei'
9-
LimitDefault = 8000000
9+
LimitDefault = 8000000
10+
11+
[HeadTracker]
12+
# FinalityDepth < 1k => FinalityTagBypass = false
13+
# https://smartcontract-it.atlassian.net/browse/SHIP-4078
14+
FinalityTagBypass = false

ccip/config/evm/Astar_Shibuya.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@ LogPollInterval = '6s'
66
[GasEstimator]
77
EIP1559DynamicFees = false
88
PriceMax = '100000 gwei'
9-
LimitDefault = 8000000
9+
LimitDefault = 8000000
10+
11+
[HeadTracker]
12+
# FinalityDepth < 1k => FinalityTagBypass = false
13+
# https://smartcontract-it.atlassian.net/browse/SHIP-4078
14+
FinalityTagBypass = false

ccip/config/evm/Avalanche_ANZ_testnet.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@ PriceMin = '25 gwei'
1717

1818
[GasEstimator.BlockHistory]
1919
BlockHistorySize = 24
20+
21+
[HeadTracker]
22+
# FinalityDepth < 1k => FinalityTagBypass = false
23+
# https://smartcontract-it.atlassian.net/browse/SHIP-4078
24+
FinalityTagBypass = false

ccip/config/evm/Avalanche_Mainnet.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@ PriceMin = '25 gwei'
1717
[GasEstimator.BlockHistory]
1818
# Average block time of 2s
1919
BlockHistorySize = 24
20+
21+
[HeadTracker]
22+
# FinalityDepth < 1k => FinalityTagBypass = false
23+
# https://smartcontract-it.atlassian.net/browse/SHIP-4078
24+
FinalityTagBypass = false

ccip/config/evm/BSC_Mainnet.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ ObservationGracePeriod = '500ms'
2626

2727
[NodePool]
2828
SyncThreshold = 10
29+
30+
[HeadTracker]
31+
# FinalityDepth < 1k => FinalityTagBypass = false
32+
# https://smartcontract-it.atlassian.net/browse/SHIP-4078
33+
FinalityTagBypass = false

ccip/config/evm/Base_Mainnet.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ ResendAfterThreshold = '30s'
2020

2121
[HeadTracker]
2222
HistoryDepth = 300
23+
# FinalityDepth < 1k => FinalityTagBypass = false
24+
# https://smartcontract-it.atlassian.net/browse/SHIP-4078
25+
FinalityTagBypass = false
2326

2427
[NodePool]
2528
SyncThreshold = 10

ccip/config/evm/Base_Sepolia.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ ResendAfterThreshold = '30s'
2121

2222
[HeadTracker]
2323
HistoryDepth = 300
24+
# FinalityDepth < 1k => FinalityTagBypass = false
25+
# https://smartcontract-it.atlassian.net/browse/SHIP-4078
26+
FinalityTagBypass = false
2427

2528
[NodePool]
2629
SyncThreshold = 10

ccip/config/evm/Blast_Mainnet.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ EIP1559FeeCapBufferBlocks = 0
2626

2727
[HeadTracker]
2828
HistoryDepth = 300
29+
# FinalityDepth < 1k => FinalityTagBypass = false
30+
# https://smartcontract-it.atlassian.net/browse/SHIP-4078
31+
FinalityTagBypass = false
2932

3033
[NodePool]
3134
# 4 block sync time between nodes to ensure they aren't labelled unreachable too soon

ccip/config/evm/Blast_Sepolia.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ EIP1559FeeCapBufferBlocks = 0
2626

2727
[HeadTracker]
2828
HistoryDepth = 300
29+
# FinalityDepth < 1k => FinalityTagBypass = false
30+
# https://smartcontract-it.atlassian.net/browse/SHIP-4078
31+
FinalityTagBypass = false
2932

3033
[NodePool]
3134
# 4 block sync time between nodes to ensure they aren't labelled unreachable too soon

ccip/config/evm/Celo_Mainnet.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,6 @@ BlockHistorySize = 12
1818

1919
[HeadTracker]
2020
HistoryDepth = 50
21+
# FinalityDepth < 1k => FinalityTagBypass = false
22+
# https://smartcontract-it.atlassian.net/browse/SHIP-4078
23+
FinalityTagBypass = false

0 commit comments

Comments
 (0)