Skip to content
Draft
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
4 changes: 2 additions & 2 deletions core/scripts/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ require (
github.com/smartcontractkit/chainlink-common v0.11.2-0.20260504171535-31bb37ff18d5
github.com/smartcontractkit/chainlink-common/keystore v1.1.0
github.com/smartcontractkit/chainlink-data-streams v0.1.14-0.20260504075031-e5aae8c82e91
github.com/smartcontractkit/chainlink-deployments-framework v0.98.0
github.com/smartcontractkit/chainlink-deployments-framework v0.99.0
github.com/smartcontractkit/chainlink-evm v0.3.4-0.20260504070828-3216bb63d886
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20260421142741-9c7fbaf7c828
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260420204255-a3f3bdd56877
Expand Down Expand Up @@ -523,7 +523,7 @@ require (
github.com/smartcontractkit/chainlink-ton v0.0.0-20260423161209-5ce1dba9785e // indirect
github.com/smartcontractkit/chainlink-ton/deployment v0.0.0-20260423161209-5ce1dba9785e // indirect
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20260408092456-3c6369888d4a // indirect
github.com/smartcontractkit/cld-changesets v0.0.0-20260427210718-b873c54e8d22 // indirect
github.com/smartcontractkit/cld-changesets v0.0.0-20260430124953-6d9010c9fc9c // indirect
github.com/smartcontractkit/freeport v0.1.3-0.20250828155247-add56fa28aad // indirect
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 // indirect
github.com/smartcontractkit/mcms v0.41.1 // indirect
Expand Down
8 changes: 4 additions & 4 deletions core/scripts/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

165 changes: 0 additions & 165 deletions deployment/common/changeset/mcms_firedrill.go

This file was deleted.

7 changes: 5 additions & 2 deletions deployment/common/changeset/mcms_firedrill_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
"github.com/smartcontractkit/chainlink-common/pkg/logger"

cldf "github.com/smartcontractkit/chainlink-deployments-framework/deployment"
cldfproposalutils "github.com/smartcontractkit/chainlink-deployments-framework/engine/cld/mcms/proposalutils"
"github.com/smartcontractkit/chainlink-deployments-framework/engine/test/environment"
"github.com/smartcontractkit/chainlink-deployments-framework/engine/test/runtime"

Expand All @@ -21,6 +22,8 @@ import (
commontypes "github.com/smartcontractkit/chainlink/deployment/common/types"
"github.com/smartcontractkit/chainlink/deployment/internal/soltestutils"
"github.com/smartcontractkit/chainlink/deployment/utils/solutils"

cldmcmschangesets "github.com/smartcontractkit/cld-changesets/mcms/changesets"
)

func TestMCMSSignFireDrillChangeset(t *testing.T) {
Expand Down Expand Up @@ -69,9 +72,9 @@ func TestMCMSSignFireDrillChangeset(t *testing.T) {
require.NoError(t, err)

err = rt.Exec(
runtime.ChangesetTask(cldf.CreateLegacyChangeSet(commonchangeset.MCMSSignFireDrillChangeset), commonchangeset.FireDrillConfig{
runtime.ChangesetTask(cldmcmschangesets.MCMSSignFireDrillChangeset{}, cldmcmschangesets.FireDrillConfig{
Selectors: []uint64{evmSelector1, evmSelector2, solSelector},
TimelockCfg: proposalutils.TimelockConfig{
TimelockCfg: cldfproposalutils.TimelockConfig{
MCMSAction: mcmsTypes.TimelockActionBypass,
},
}),
Expand Down
4 changes: 2 additions & 2 deletions deployment/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ require (
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260428205619-2db1389501a1
github.com/smartcontractkit/chainlink-common v0.11.2-0.20260504171535-31bb37ff18d5
github.com/smartcontractkit/chainlink-common/keystore v1.1.0
github.com/smartcontractkit/chainlink-deployments-framework v0.98.0
github.com/smartcontractkit/chainlink-deployments-framework v0.99.0
github.com/smartcontractkit/chainlink-evm v0.3.4-0.20260504070828-3216bb63d886
github.com/smartcontractkit/chainlink-evm/contracts/cre/gobindings v0.0.0-20260403151002-2c91155b5501
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20260421142741-9c7fbaf7c828
Expand All @@ -59,7 +59,7 @@ require (
github.com/smartcontractkit/chainlink-testing-framework/lib v1.54.5
github.com/smartcontractkit/chainlink-ton v0.0.0-20260423161209-5ce1dba9785e
github.com/smartcontractkit/chainlink-ton/deployment v0.0.0-20260423161209-5ce1dba9785e
github.com/smartcontractkit/cld-changesets v0.0.0-20260427210718-b873c54e8d22
github.com/smartcontractkit/cld-changesets v0.0.0-20260430124953-6d9010c9fc9c
github.com/smartcontractkit/freeport v0.1.3-0.20250828155247-add56fa28aad
github.com/smartcontractkit/libocr v0.0.0-20260403184524-b6409238958d
github.com/smartcontractkit/mcms v0.41.1
Expand Down
8 changes: 4 additions & 4 deletions deployment/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions integration-tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ require (
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20260415165642-49f23e4d76cc
github.com/smartcontractkit/chainlink-common v0.11.2-0.20260504171535-31bb37ff18d5
github.com/smartcontractkit/chainlink-common/keystore v1.1.0
github.com/smartcontractkit/chainlink-deployments-framework v0.98.0
github.com/smartcontractkit/chainlink-deployments-framework v0.99.0
github.com/smartcontractkit/chainlink-evm v0.3.4-0.20260504070828-3216bb63d886
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20260421142741-9c7fbaf7c828
github.com/smartcontractkit/chainlink-protos/job-distributor v0.18.0
Expand All @@ -44,7 +44,7 @@ require (
github.com/smartcontractkit/chainlink-ton/deployment v0.0.0-20260423161209-5ce1dba9785e
github.com/smartcontractkit/chainlink/deployment v0.0.0-00010101000000-000000000000
github.com/smartcontractkit/chainlink/v2 v2.29.0
github.com/smartcontractkit/cld-changesets v0.0.0-20260427210718-b873c54e8d22
github.com/smartcontractkit/cld-changesets v0.0.0-20260430124953-6d9010c9fc9c
github.com/smartcontractkit/libocr v0.0.0-20260403184524-b6409238958d
github.com/smartcontractkit/mcms v0.41.1
github.com/smartcontractkit/quarantine v0.0.0-20250909213106-ece491bef618
Expand Down
8 changes: 4 additions & 4 deletions integration-tests/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading