Skip to content

Commit 5aa0aca

Browse files
authored
Add Pharos Atlantic support (#300)
Added Pharos Atlantic support
1 parent b2e2ea6 commit 5aa0aca

4 files changed

Lines changed: 12 additions & 13 deletions

File tree

cmd/workflow/simulate/simulator_utils.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ var SupportedEVM = []ChainConfig{
6767
{Selector: chainselectors.JOVAY_MAINNET.Selector, Forwarder: "0x2B3068C4B288A2CD1f8B3613b8f33ef7cEecadC4"},
6868

6969
// Pharos
70-
// Integration not ready yet
71-
// {Selector: chainselectors.PHAROS_ATLANTIC_TESTNET.Selector, Forwarder: "0x6E9EE680ef59ef64Aa8C7371279c27E496b5eDc1"},
70+
{Selector: chainselectors.PHAROS_ATLANTIC_TESTNET.Selector, Forwarder: "0x6E9EE680ef59ef64Aa8C7371279c27E496b5eDc1"},
7271
{Selector: chainselectors.PHAROS_MAINNET.Selector, Forwarder: "0x2B3068C4B288A2CD1f8B3613b8f33ef7cEecadC4"},
7372

7473
// Worldchain

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ require (
2727
github.com/smartcontractkit/chainlink-common v0.10.1-0.20260217160002-b56cb5356cc7
2828
github.com/smartcontractkit/chainlink-common/keystore v1.0.2
2929
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20251222115927-36a18321243c
30-
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260227170625-e0e1c4094174
30+
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260304171818-4962d40dc235
3131
github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20260217043601-5cc966896c4f
3232
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.3
3333
github.com/smartcontractkit/chainlink/deployment v0.0.0-20260224120304-949cf5d66bc6
3434
github.com/smartcontractkit/chainlink/v2 v2.29.1-cre-beta.0.0.20260224120304-949cf5d66bc6
35-
github.com/smartcontractkit/cre-sdk-go v1.4.0
36-
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.6
35+
github.com/smartcontractkit/cre-sdk-go v1.5.0
36+
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.7
3737
github.com/smartcontractkit/mcms v0.35.1-0.20260209175626-b68b54b6e8d0
3838
github.com/smartcontractkit/tdh2/go/tdh2 v0.0.0-20251120172354-e8ec0386b06c
3939
github.com/spf13/cobra v1.10.1

go.sum

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1177,8 +1177,8 @@ github.com/smartcontractkit/chainlink-protos/chainlink-ccv/message-discovery v0.
11771177
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/message-discovery v0.0.0-20251211142334-5c3421fe2c8d/go.mod h1:ATjAPIVJibHRcIfiG47rEQkUIOoYa6KDvWj3zwCAw6g=
11781178
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/verifier v0.0.0-20251211142334-5c3421fe2c8d h1:AJy55QJ/pBhXkZjc7N+ATnWfxrcjq9BI9DmdtdjwDUQ=
11791179
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/verifier v0.0.0-20251211142334-5c3421fe2c8d/go.mod h1:5JdppgngCOUS76p61zCinSCgOhPeYQ+OcDUuome5THQ=
1180-
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260227170625-e0e1c4094174 h1:FEyNf4k8c7Tqe26fJg7BlC2U3pjUAu41yJes+ZmiQrU=
1181-
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260227170625-e0e1c4094174/go.mod h1:Jqt53s27Tr0jDl8mdBXg1xhu6F8Fci8JOuq43tgHOM8=
1180+
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260304171818-4962d40dc235 h1:tWckyqO1Fw/9nTOdUfDgaVzMCSdZTEU7nfpe6kWqNCE=
1181+
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260304171818-4962d40dc235/go.mod h1:Jqt53s27Tr0jDl8mdBXg1xhu6F8Fci8JOuq43tgHOM8=
11821182
github.com/smartcontractkit/chainlink-protos/job-distributor v0.17.0 h1:xHPmFDhff7QpeFxKsZfk+24j4AlnQiFjjRh5O87Peu4=
11831183
github.com/smartcontractkit/chainlink-protos/job-distributor v0.17.0/go.mod h1:/dVVLXrsp+V0AbcYGJo3XMzKg3CkELsweA/TTopCsKE=
11841184
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b h1:QuI6SmQFK/zyUlVWEf0GMkiUYBPY4lssn26nKSd/bOM=
@@ -1217,10 +1217,10 @@ github.com/smartcontractkit/chainlink/deployment v0.0.0-20260224120304-949cf5d66
12171217
github.com/smartcontractkit/chainlink/deployment v0.0.0-20260224120304-949cf5d66bc6/go.mod h1:uVwlLk9yxBBAoqL3FVL6iC9p2qtKRZKCLoluWEbilTo=
12181218
github.com/smartcontractkit/chainlink/v2 v2.29.1-cre-beta.0.0.20260224120304-949cf5d66bc6 h1:U3r1D3bSCNWS0bKzN0jEqNHwivs+GlnTaYRp62pPYrE=
12191219
github.com/smartcontractkit/chainlink/v2 v2.29.1-cre-beta.0.0.20260224120304-949cf5d66bc6/go.mod h1:pwOp5AnTaKiod+TXJ1VCsYiGMSPzI4kyZYH8MrzUiQ8=
1220-
github.com/smartcontractkit/cre-sdk-go v1.4.0 h1:r7/N67wd8kALcBjxUpz8PV3yCnXHmPAeEemGE5VImfA=
1221-
github.com/smartcontractkit/cre-sdk-go v1.4.0/go.mod h1:yYrQFz1UH7hhRbPO0q4fgo1tfsJNd4yXnI3oCZE0RzM=
1222-
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.6 h1:k4P1xe7B7I5meqK00wBK4kXVyrBvl+wFdR75yeMNiGA=
1223-
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.6/go.mod h1:YBTcZGQ5GNNet0wCFsv247b4dposgTX+poYQuAVjCTg=
1220+
github.com/smartcontractkit/cre-sdk-go v1.5.0 h1:kepW3QDKARrOOHjXwWAZ9j5KLk6bxLzvi6OMrLsFwVo=
1221+
github.com/smartcontractkit/cre-sdk-go v1.5.0/go.mod h1:yYrQFz1UH7hhRbPO0q4fgo1tfsJNd4yXnI3oCZE0RzM=
1222+
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.7 h1:MmYBEOr+hFJeEUY3N0lD93Qx6NtfGtS6BrOWz5xAW2I=
1223+
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.7/go.mod h1:VS7CLLJ7GgQP+TxrQ0YCN6Vs9TmnBi9F1dPriEE0TO8=
12241224
github.com/smartcontractkit/freeport v0.1.3-0.20250716200817-cb5dfd0e369e h1:Hv9Mww35LrufCdM9wtS9yVi/rEWGI1UnjHbcKKU0nVY=
12251225
github.com/smartcontractkit/freeport v0.1.3-0.20250716200817-cb5dfd0e369e/go.mod h1:T4zH9R8R8lVWKfU7tUvYz2o2jMv1OpGCdpY2j2QZXzU=
12261226
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 h1:12ijqMM9tvYVEm+nR826WsrNi6zCKpwBhuApq127wHs=

internal/constants/constants.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ const (
5656
WorkflowLanguageWasm = "wasm"
5757

5858
// SDK dependency versions (used by generate-bindings and go module init)
59-
SdkVersion = "v1.4.0"
60-
EVMCapabilitiesVersion = "v1.0.0-beta.6"
59+
SdkVersion = "v1.5.0"
60+
EVMCapabilitiesVersion = "v1.0.0-beta.7"
6161
HTTPCapabilitiesVersion = "v1.0.0-beta.0"
6262
CronCapabilitiesVersion = "v1.0.0-beta.0"
6363

0 commit comments

Comments
 (0)