Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/common/compile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func TestCompileWorkflowToWasm_TS_Success(t *testing.T) {
mainPath := filepath.Join(dir, "main.ts")
require.NoError(t, os.WriteFile(mainPath, []byte(`export async function main() { return "ok"; }
`), 0600))
require.NoError(t, os.WriteFile(filepath.Join(dir, "package.json"), []byte(`{"name":"test","dependencies":{"@chainlink/cre-sdk":"^1.7.0"}}
require.NoError(t, os.WriteFile(filepath.Join(dir, "package.json"), []byte(`{"name":"test","dependencies":{"@chainlink/cre-sdk":"^1.8.0"}}
`), 0600))
install := exec.Command("bun", "install")
install.Dir = dir
Expand Down
2 changes: 1 addition & 1 deletion cmd/workflow/convert/convert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ production-settings:
`
require.NoError(t, os.WriteFile(workflowYAML, []byte(yamlContent), 0600))
require.NoError(t, os.WriteFile(mainTS, []byte("export default function run() { return Promise.resolve({ result: \"ok\" }); }\n"), 0600))
require.NoError(t, os.WriteFile(packageJSON, []byte(`{"name":"test","private":true,"dependencies":{"@chainlink/cre-sdk":"^1.7.0"}}`), 0600))
require.NoError(t, os.WriteFile(packageJSON, []byte(`{"name":"test","private":true,"dependencies":{"@chainlink/cre-sdk":"^1.8.0"}}`), 0600))

h := newHandler(nil)
err := h.Execute(Inputs{WorkflowFolder: dir, Force: true})
Expand Down
1 change: 1 addition & 0 deletions cmd/workflow/simulate/chain/evm/supported_chains.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,5 @@ var SupportedChains = []chain.ChainConfig{

// ADI
{Selector: chainselectors.ADI_TESTNET.Selector, Forwarder: "0x9eF6468C5f37b976E57d52054c693269479A784d"},
{Selector: chainselectors.ADI_MAINNET.Selector, Forwarder: "0x6Aa382fb8762E1232936478DD9DbC04F637028f1"},
}
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ require (
github.com/smartcontractkit/chainlink-common v0.11.2-0.20260421191147-d10b9943ac71
github.com/smartcontractkit/chainlink-common/keystore v1.0.2
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20260119171452-39c98c3b33cd
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260512230622-65f10f4cd305
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260520185909-e3aaa299df11
github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20260323124644-faea187e6997
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.5
github.com/smartcontractkit/chainlink/deployment v0.0.0-20260422181348-efa818697ce5
github.com/smartcontractkit/chainlink/v2 v2.29.1-cre-beta.0.0.20260422181348-efa818697ce5
github.com/smartcontractkit/cre-sdk-go v1.9.0
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.10
github.com/smartcontractkit/cre-sdk-go v1.10.0
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.11
github.com/smartcontractkit/mcms v0.41.1
github.com/smartcontractkit/tdh2/go/tdh2 v0.0.0-20251120172354-e8ec0386b06c
github.com/spf13/cobra v1.10.2
Expand Down
12 changes: 6 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1361,8 +1361,8 @@ github.com/smartcontractkit/chainlink-protos/chainlink-ccv/message-discovery v0.
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/message-discovery v0.0.0-20251211142334-5c3421fe2c8d/go.mod h1:ATjAPIVJibHRcIfiG47rEQkUIOoYa6KDvWj3zwCAw6g=
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/verifier v0.0.0-20251211142334-5c3421fe2c8d h1:AJy55QJ/pBhXkZjc7N+ATnWfxrcjq9BI9DmdtdjwDUQ=
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/verifier v0.0.0-20251211142334-5c3421fe2c8d/go.mod h1:5JdppgngCOUS76p61zCinSCgOhPeYQ+OcDUuome5THQ=
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260512230622-65f10f4cd305 h1:SH3vSzOujXLVEzh8sBL8tDQFI3sOvDOWyne33fMm94k=
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260512230622-65f10f4cd305/go.mod h1:Jqt53s27Tr0jDl8mdBXg1xhu6F8Fci8JOuq43tgHOM8=
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260520185909-e3aaa299df11 h1:soTVlFw+eVEHLtAL/ZeSR8HcFd6z3w4c4F9K+esr7vs=
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260520185909-e3aaa299df11/go.mod h1:Jqt53s27Tr0jDl8mdBXg1xhu6F8Fci8JOuq43tgHOM8=
github.com/smartcontractkit/chainlink-protos/job-distributor v0.18.0 h1:q+VDPcxWrj5k9QizSYfUOSMnDH3Sd5HvbPguZOgfXTY=
github.com/smartcontractkit/chainlink-protos/job-distributor v0.18.0/go.mod h1:/dVVLXrsp+V0AbcYGJo3XMzKg3CkELsweA/TTopCsKE=
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b h1:QuI6SmQFK/zyUlVWEf0GMkiUYBPY4lssn26nKSd/bOM=
Expand Down Expand Up @@ -1401,10 +1401,10 @@ github.com/smartcontractkit/chainlink/deployment v0.0.0-20260422181348-efa818697
github.com/smartcontractkit/chainlink/deployment v0.0.0-20260422181348-efa818697ce5/go.mod h1:pMBypeRoT8Nnb5gbkW6kIs+fBVsc/OzUx2eR9MtyFaw=
github.com/smartcontractkit/chainlink/v2 v2.29.1-cre-beta.0.0.20260422181348-efa818697ce5 h1:G2TvBxwvzLMIU5hMPsQlVAY027mT1P/VTiWA6yegmpM=
github.com/smartcontractkit/chainlink/v2 v2.29.1-cre-beta.0.0.20260422181348-efa818697ce5/go.mod h1:8/a/Nlo4ZndgBEumXoE+gvBA5LH40BfDM+6SZa4Q89M=
github.com/smartcontractkit/cre-sdk-go v1.9.0 h1:E7Eum5XH3wZ+lNpr2j5biJRiP3lcK4NJuQbMRNXMmSE=
github.com/smartcontractkit/cre-sdk-go v1.9.0/go.mod h1:cnSxheEt2r9LhDswNv+EDyUr7GbOlKlTwHsCTa+FOtQ=
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.10 h1:Z3xh3dN4NIIlGwOsBgrKi5WLBYfex8TyuW8tSDQd0BQ=
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.10/go.mod h1:b1ZyaTde7PfEWweMe+rKwPe+auf0w9Dk48nge/JiIf0=
github.com/smartcontractkit/cre-sdk-go v1.10.0 h1:M8aLM+4450nMb0A3vQjzBIgqJtQJdLCSEgGfJPD1kjY=
github.com/smartcontractkit/cre-sdk-go v1.10.0/go.mod h1:vo7PQluFp5IWXz7p4vUxdfSLy5L8D45EMi5b3s4kBxY=
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.11 h1:JO4fuKL6inYovJBgogF4SzAwTqC7VlK3OOv1gbr46Po=
github.com/smartcontractkit/cre-sdk-go/capabilities/blockchain/evm v1.0.0-beta.11/go.mod h1:ciOILa3cmdATsOyshnySWMMwU6M4z/FQYfx1fwm2e2s=
github.com/smartcontractkit/freeport v0.1.3-0.20250828155247-add56fa28aad h1:lgHxTHuzJIF3Vj6LSMOnjhqKgRqYW+0MV2SExtCYL1Q=
github.com/smartcontractkit/freeport v0.1.3-0.20250828155247-add56fa28aad/go.mod h1:T4zH9R8R8lVWKfU7tUvYz2o2jMv1OpGCdpY2j2QZXzU=
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 h1:12ijqMM9tvYVEm+nR826WsrNi6zCKpwBhuApq127wHs=
Expand Down
4 changes: 2 additions & 2 deletions internal/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ const (
WorkflowLanguageWasm = "wasm"

// SDK dependency versions (used by generate-bindings and go module init)
SdkVersion = "v1.9.0"
EVMCapabilitiesVersion = "v1.0.0-beta.10"
SdkVersion = "v1.10.0"
EVMCapabilitiesVersion = "v1.0.0-beta.11"
HTTPCapabilitiesVersion = "v1.3.0"
CronCapabilitiesVersion = "v1.3.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"license": "UNLICENSED",
"dependencies": {
"@chainlink/cre-sdk": "^1.7.0"
"@chainlink/cre-sdk": "^1.8.0"
},
"devDependencies": {
"typescript": "5.9.3"
Expand Down
Loading