-
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 fix/ccip_misc_fixes
- Loading branch information
Showing
288 changed files
with
10,282 additions
and
9,580 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": patch | ||
--- | ||
|
||
#bugfix fix non-idempotent loopp registry.Register |
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 | ||
--- | ||
|
||
#added Lens Sepolia 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 | ||
--- | ||
|
||
Add error handling for Arbitrum RPC server timeouts. #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 | ||
--- | ||
|
||
#internal refactor update nodes changeset to support mcms |
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 | ||
--- | ||
|
||
#bugfix fix: duplicate chain id in chain config dialog |
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 | ||
--- | ||
|
||
Switching CCIP to observed ChainReader for HomeChainReader #internal |
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 | ||
--- | ||
|
||
Added new fatal error cases for transactions to the Solana TXM. #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,61 @@ | ||
name: Setup CI Core Tests | ||
description: | | ||
Shared setup steps for ci-core. | ||
Note: Other actions should not be called from this action. There is | ||
weird behavior when nesting reusable actions. | ||
inputs: | ||
|
||
go-mod-download-directory: | ||
description: | | ||
The directory to run go mod download in. If not provided, it will not run go mod download. | ||
required: false | ||
default: "" | ||
|
||
db-url: | ||
description: | | ||
The expected database URL | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Touching core/web/assets/index.html | ||
shell: bash | ||
run: mkdir -p core/web/assets && touch core/web/assets/index.html | ||
|
||
- name: Download Go vendor packages | ||
shell: bash | ||
run: go mod download | ||
|
||
- name: Go Mod Download (optional) | ||
if: ${{ inputs.go-mod-download-directory != '' }} | ||
shell: bash | ||
working-directory: ${{ inputs.go-mod-download-directory }} | ||
run: go mod download | ||
|
||
- name: Build binary | ||
shell: bash | ||
run: go build -o chainlink.test . | ||
|
||
- name: Setup DB | ||
shell: bash | ||
run: ./chainlink.test local db preparetest | ||
env: | ||
CL_DATABASE_URL: ${{ inputs.db-url }} | ||
|
||
- name: Install LOOP Plugins | ||
shell: bash | ||
run: | | ||
pushd $(go list -m -f "{{.Dir}}" github.com/smartcontractkit/chainlink-feeds) | ||
go install ./cmd/chainlink-feeds | ||
popd | ||
pushd $(go list -m -f "{{.Dir}}" github.com/smartcontractkit/chainlink-data-streams) | ||
go install ./mercury/cmd/chainlink-mercury | ||
popd | ||
pushd $(go list -m -f "{{.Dir}}" github.com/smartcontractkit/chainlink-solana) | ||
go install ./pkg/solana/cmd/chainlink-solana | ||
popd | ||
pushd $(go list -m -f "{{.Dir}}" github.com/smartcontractkit/chainlink-starknet/relayer) | ||
go install ./pkg/chainlink/cmd/chainlink-starknet | ||
popd | ||
Oops, something went wrong.