-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CCIP Config backported from CCIP repo #15856
Conversation
e17e73f
to
d2b9ee7
Compare
AER Report: CI Core ran successfully ✅AER Report: Operator UI CI ran successfully ✅ |
d2b9ee7
to
9d86538
Compare
Quality Gate passedIssues Measures |
@@ -18,4 +18,6 @@ PriceDefault = '1 gwei' | |||
BlockHistorySize = 24 | |||
|
|||
[HeadTracker] | |||
PersistenceEnabled = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PersistenceEnabled = false
allows HeadTracker to stop persisting heads. This operation generates a significant load on the database, but it does not provide any benefits on chains with fast finality.
We should not remove the override of the flag.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, this is interesting. I've just backported the state from the CCIP repo. Exactly how it is right now on the develop branch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was reverted here smartcontractkit/ccip@c279cbb
@@ -1,5 +1,5 @@ | |||
ChainID = '59141' | |||
FinalityDepth = 900 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it ok, that we are reducing finality depth?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed with @simsonraj that comments can be addressed in a followup PRs as ccip config changes present in develop branch were not actually tested and our main goal with this PR is to sync ccip and core repos
* Moving configs directly from CCIP repo * Moving configs directly from CCIP repo
…15605) * replace f with fObserve in RMHome and RMNRemote * Update gethwrappers * rename fObserve to fSign * fix off-chain components of renaming RMN parameters * core changeset * update missing file for new parameter name * fix wrappers * fix merge conflict broken text * Update gethwrappers * attempt fix json export tag * Update gethwrappers * upgrade cl-ccip and fix test * upgrade cl-ccip@main * upgrade cl-ccip@main * fix test * upgrade cl-ccip@main * Update gethwrappers * upgrade chainlink ccip * DEVSVCS-1087: remove unused automation hardhat tests (#15847) * remove unused automation hardhat tests * freeze contracts * remove more tests * update * CCIP Config backported from CCIP repo (#15856) * Moving configs directly from CCIP repo * Moving configs directly from CCIP repo * Remove panic recovery for wsrpc (#15865) - Due to some other bug in the library, the redialled connection never becomes ready. * Added is_backfiled filed to solana's filter table (#15796) * Extract MultiNode to chainlink-framework (#15791) * Extract MultiNode * tidy * tidy * Fix generate * Add mock Subscription * lint * Fix sendonly allocation * lint * Add QueryTimeout to client * Use multinode * Update rpc_client_test.go * improve peer group dialer sync function logs (#15867) * Solana devnet spin up in memory env (A) (#15831) * Adding solchains in NewEnv * Revert "Adding solchains in NewEnv" This reverts commit aaab52e. * adding sol chains to newenv * newEnv needs to send nil * adding test env setup * adding nil for crib sol chains * adding chain selectors commit * go mod tidy * linting * chain sel update * update core/scripts go files * again * add changeset * go imports * go mod tidy * Update modgraph --------- Co-authored-by: Terry Tata <[email protected]> Co-authored-by: Blaž Hrastnik <[email protected]> * upgrade chainlink ccip fixing router binding issues in migration * upgrade chainlink ccip fixing router binding issues in migration * fix comment * gomodtidy and formatting fix * update go mod file for newest cl-ccip * update comment --------- Co-authored-by: app-token-issuer-infra-releng[bot] <120227048+app-token-issuer-infra-releng[bot]@users.noreply.github.com> Co-authored-by: Simon B.Robert <[email protected]> Co-authored-by: dimkouv <[email protected]> Co-authored-by: asoliman <[email protected]> Co-authored-by: FelixFan1992 <[email protected]> Co-authored-by: Mateusz Sekara <[email protected]> Co-authored-by: Sam <[email protected]> Co-authored-by: Dmytro Haidashenko <[email protected]> Co-authored-by: Dylan Tinianov <[email protected]> Co-authored-by: Yashvardhan Nevatia <[email protected]> Co-authored-by: Terry Tata <[email protected]> Co-authored-by: Blaž Hrastnik <[email protected]>
Requires
#15617
Based on the state from ccip ea7c200
smartcontractkit/ccip@ea7c200
Supports