-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into task/CAPPL-67/custom-compute-beholder
- Loading branch information
Showing
320 changed files
with
10,521 additions
and
7,184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": minor | ||
--- | ||
|
||
update plugin and evm chainwriter to remove evmConfig dependency #updated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
#updated Operator UI to support StreamSpec job definition |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Merge raw configs correctly #bugfix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": minor | ||
--- | ||
|
||
Add CSA authentication support to Beholder #added |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
#updated celo alfajores config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Enable AutoPurge feature on all affected chains #nops |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,7 @@ runs: | |
- uses: actions/cache/[email protected] | ||
name: Cache Go Build Outputs (restore) | ||
# For certain events, we don't necessarily want to create a build cache, but we will benefit from restoring from one. | ||
if: ${{ inputs.only-modules == 'false' && (github.event == 'merge_group' || inputs.restore-build-cache-only == 'true') }} | ||
if: ${{ inputs.only-modules == 'false' && (github.event_name == 'merge_group' || inputs.restore-build-cache-only == 'true') }} | ||
with: | ||
path: | | ||
${{ steps.go-cache-dir.outputs.gobuildcache }} | ||
|
@@ -98,7 +98,7 @@ runs: | |
- uses: actions/[email protected] | ||
# don't save cache on merge queue events | ||
if: ${{ inputs.only-modules == 'false' && (github.event != 'merge_group' && inputs.restore-build-cache-only == 'false') }} | ||
if: ${{ inputs.only-modules == 'false' && (github.event_name != 'merge_group' && inputs.restore-build-cache-only == 'false') }} | ||
name: Cache Go Build Outputs | ||
with: | ||
path: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Cleanup Caches | ||
|
||
# See: | ||
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/caching-dependencies-to-speed-up-workflows#force-deleting-cache-entries | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
cleanup-branch-caches: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
# `actions:write` permission is required to delete caches | ||
# See also: https://docs.github.com/en/rest/actions/cache?apiVersion=2022-11-28#delete-a-github-actions-cache-for-a-repository-using-a-cache-id | ||
actions: write | ||
contents: read | ||
steps: | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
|
||
- name: Cleanup Branch Caches | ||
run: | | ||
gh extension install actions/gh-actions-cache | ||
REPO=${{ github.repository }} | ||
BRANCH=refs/pull/${{ github.event.pull_request.number }}/merge | ||
echo "Fetching list of cache key" | ||
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH | cut -f 1 ) | ||
## Setting this to not fail the workflow while deleting cache keys. | ||
set +e | ||
echo "Deleting caches..." | ||
for cacheKey in $cacheKeysForPR | ||
do | ||
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm | ||
done | ||
echo "Done" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,6 +178,7 @@ golangci-lint: ## Run golangci-lint for all issues. | |
|
||
.PHONY: modgraph | ||
modgraph: | ||
go install github.com/jmank88/[email protected] | ||
./tools/bin/modgraph > go.md | ||
|
||
.PHONY: test-short | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,30 @@ | ||
ChainID = '44787' | ||
ChainType = 'celo' | ||
FinalityDepth = 10 | ||
LogPollInterval = '5s' | ||
MinIncomingConfirmations = 1 | ||
FinalityTagEnabled = true | ||
FinalityDepth = 2750 # mean finality time of ~37 minutes + 500 block buffer | ||
LogPollInterval = '1s' # 1 sec block rate | ||
NoNewHeadsThreshold = '1m' | ||
OCR.ContractConfirmations = 1 | ||
NoNewFinalizedHeadsThreshold = '1m' | ||
MinIncomingConfirmations = 1 | ||
NoNewFinalizedHeadsThreshold = '45m' # Set slightly higher than mean finality time | ||
|
||
[GasEstimator] | ||
PriceDefault = '5 gwei' | ||
PriceMax = '500 gwei' | ||
PriceMin = '5 gwei' | ||
BumpMin = '2 gwei' | ||
EIP1559DynamicFees = true | ||
PriceMin = '5 gwei' # Mean gas price around 5 gwei and celo txns are extremely cheap at ~0.00088 CELO per txn ($0.000058) | ||
PriceMax = '1000 gwei' # DS&A recommendation | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 24 | ||
# Default is 8, which leads to bumpy gas prices. In CCIP | ||
# we want to smooth out the gas prices, so we increase the sample size. | ||
BlockHistorySize = 200 | ||
|
||
[Transactions] | ||
ResendAfterThreshold = '30s' | ||
|
||
[HeadTracker] | ||
HistoryDepth = 50 | ||
PersistenceEnabled = false | ||
HistoryDepth = 300 | ||
|
||
[NodePool] | ||
SyncThreshold = 10 # recommended for OP stack chains | ||
|
||
[OCR] | ||
ContractConfirmations = 1 # recommended for OP stack chains |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,7 @@ BlockHistorySize = 12 | |
|
||
[HeadTracker] | ||
HistoryDepth = 2000 | ||
|
||
[Transactions.AutoPurge] | ||
Enabled = true | ||
MinAttempts = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,7 @@ BlockHistorySize = 12 | |
|
||
[HeadTracker] | ||
HistoryDepth = 2000 | ||
|
||
[Transactions.AutoPurge] | ||
Enabled = true | ||
MinAttempts = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,7 @@ BlockHistorySize = 12 | |
|
||
[HeadTracker] | ||
HistoryDepth = 2000 | ||
|
||
[Transactions.AutoPurge] | ||
Enabled = true | ||
MinAttempts = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
ChainID = '48900' | ||
ChainType = 'optimismBedrock' | ||
FinalityTagEnabled = true | ||
FinalityDepth = 1000 | ||
LinkContractAddress = '0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a' | ||
LogPollInterval = "2s" | ||
NoNewHeadsThreshold = "40s" | ||
NoNewFinalizedHeadsThreshold = "15m" | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = true | ||
PriceMin = '1 wei' | ||
BumpMin = '100 wei' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 24 | ||
|
||
[Transactions] | ||
ResendAfterThreshold = '30s' | ||
|
||
[HeadTracker] | ||
HistoryDepth = 2000 | ||
|
||
[NodePool] | ||
SyncThreshold = 10 | ||
|
||
[OCR] | ||
ContractConfirmations = 1 | ||
|
||
[OCR2.Automation] | ||
GasLimit = 6500000 | ||
|
||
[Transactions.AutoPurge] | ||
Enabled = true | ||
Threshold = 90 # 90 blocks at 2s block time ~3 minutes | ||
MinAttempts = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
ChainID = '48899' | ||
ChainType = 'optimismBedrock' | ||
FinalityTagEnabled = true | ||
FinalityDepth = 1000 | ||
LinkContractAddress = '0xDEE94506570cA186BC1e3516fCf4fd719C312cCD' | ||
LogPollInterval = "2s" | ||
NoNewHeadsThreshold = "40s" | ||
NoNewFinalizedHeadsThreshold = "15m" | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = true | ||
PriceMin = '1 wei' | ||
BumpMin = '100 wei' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 60 | ||
|
||
[Transactions] | ||
ResendAfterThreshold = '30s' | ||
|
||
[HeadTracker] | ||
HistoryDepth = 2000 | ||
|
||
[NodePool] | ||
SyncThreshold = 10 | ||
|
||
[OCR] | ||
ContractConfirmations = 1 | ||
|
||
[OCR2.Automation] | ||
GasLimit = 6500000 | ||
|
||
[Transactions.AutoPurge] | ||
Enabled = true | ||
Threshold = 90 # 90 blocks at 2s block time ~3 minutes | ||
MinAttempts = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
'@chainlink/contracts': minor | ||
--- | ||
|
||
#internal CCIP test restructuring | ||
|
||
PR issue: CCIP-4116 | ||
|
||
Solidity Review issue: CCIP-3966 |
Oops, something went wrong.