diff --git a/core/scripts/go.mod b/core/scripts/go.mod index cfd833a880f..1de322d183b 100644 --- a/core/scripts/go.mod +++ b/core/scripts/go.mod @@ -492,7 +492,7 @@ require ( github.com/smartcontractkit/chainlink-ccip/ccv/chains/evm v0.0.0-20251127040717-30244f57ea7a // indirect github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250912190424-fd2e35d7deb5 // indirect github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5 // indirect - github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 // indirect + github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b // indirect github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250818175541-3389ac08a563 // indirect diff --git a/core/scripts/go.sum b/core/scripts/go.sum index 428e269c48e..a4036f067cb 100644 --- a/core/scripts/go.sum +++ b/core/scripts/go.sum @@ -1632,8 +1632,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250 github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e h1:hQEOz6nRQgIQf0HS3EsjS22cAwejLa6q4nCyFGYrb/s= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e/go.mod h1:IaoLCQE1miX3iUlQNxOPcVrXrshcO/YsFpxnFuhG9DM= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 h1:sdBNurxM3XEsclOJVSqyqM+WKV/rw/2ykgCeIox4YT0= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1/go.mod h1:Dspcf1LYGPDvgUKO09kqfexFvnOFbKfoGz02VwHpuw4= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b h1:+GnP8VoRndysmH3JYLUveeDmNTNrfhyUhfAeOs6WHPI= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b/go.mod h1:Ysd/qkofD0bepk29RS7Q4ZlVDd4yAHXucYsp5gAy6AE= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4 h1:2LHrlWAStA2oRcDKrJ9lKOShC9an2Pkis2BwY8J7gDw= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4/go.mod h1:uRnGLHKo56QYaPk93z0NRAIgv115lh72rzG40CiE1Mk= github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 h1:FJAFgXS9oqASnkS03RE1HQwYQQxrO4l46O5JSzxqLgg= diff --git a/core/services/ccv/ccvcommitteeverifier/delegate.go b/core/services/ccv/ccvcommitteeverifier/delegate.go index 853e5bfc029..2c4f09cd3f6 100644 --- a/core/services/ccv/ccvcommitteeverifier/delegate.go +++ b/core/services/ccv/ccvcommitteeverifier/delegate.go @@ -16,7 +16,7 @@ import ( "github.com/smartcontractkit/chainlink-ccv/integration/pkg/constructors" "github.com/smartcontractkit/chainlink-ccv/protocol" "github.com/smartcontractkit/chainlink-ccv/protocol/common/hmac" - "github.com/smartcontractkit/chainlink-ccv/verifier" + "github.com/smartcontractkit/chainlink-ccv/verifier/commit" commontypes "github.com/smartcontractkit/chainlink-common/pkg/types" "github.com/smartcontractkit/chainlink/v2/core/config" "github.com/smartcontractkit/chainlink/v2/core/logger" @@ -61,7 +61,7 @@ func (d *Delegate) BeforeJobCreated(spec job.Job) { func (d *Delegate) ServicesForSpec(ctx context.Context, spec job.Job) (services []job.ServiceCtx, err error) { d.delegateLogger.Infow("Creating services for CCV committee verifier job", "jobID", spec.ID) - var decodedCfg verifier.Config + var decodedCfg commit.Config err = toml.Unmarshal([]byte(spec.CCVCommitteeVerifierSpec.CommitteeVerifierConfig), &decodedCfg) if err != nil { return nil, fmt.Errorf("failed to unmarshal committeeVerifierConfig into the verifier config struct: %w", err) diff --git a/core/services/ccv/ccvcommitteeverifier/validate.go b/core/services/ccv/ccvcommitteeverifier/validate.go index 064b355ab28..950154ca2f3 100644 --- a/core/services/ccv/ccvcommitteeverifier/validate.go +++ b/core/services/ccv/ccvcommitteeverifier/validate.go @@ -6,7 +6,7 @@ import ( "github.com/pelletier/go-toml" - "github.com/smartcontractkit/chainlink-ccv/verifier" + "github.com/smartcontractkit/chainlink-ccv/verifier/commit" "github.com/smartcontractkit/chainlink/v2/core/services/job" ) @@ -35,7 +35,7 @@ func ValidatedCCVCommitteeVerifierSpec(tomlString string) (jb job.Job, err error return job.Job{}, errors.New("committeeVerifierConfig must be set") } - var cfg verifier.Config + var cfg commit.Config err = toml.Unmarshal([]byte(jb.CCVCommitteeVerifierSpec.CommitteeVerifierConfig), &cfg) if err != nil { return job.Job{}, fmt.Errorf("failed to unmarshal committeeVerifierConfig into the verifier config struct: %w", err) diff --git a/deployment/go.mod b/deployment/go.mod index 129ab4b2f01..350cc883b42 100644 --- a/deployment/go.mod +++ b/deployment/go.mod @@ -414,7 +414,7 @@ require ( github.com/smartcontractkit/chainlink-automation v0.8.1 // indirect github.com/smartcontractkit/chainlink-ccip/ccv/chains/evm v0.0.0-20251127040717-30244f57ea7a // indirect github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e // indirect - github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 // indirect + github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b // indirect github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 // indirect github.com/smartcontractkit/chainlink-data-streams v0.1.6 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect diff --git a/deployment/go.sum b/deployment/go.sum index 0145c7e6871..08fa1a763d2 100644 --- a/deployment/go.sum +++ b/deployment/go.sum @@ -1356,8 +1356,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250 github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e h1:hQEOz6nRQgIQf0HS3EsjS22cAwejLa6q4nCyFGYrb/s= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e/go.mod h1:IaoLCQE1miX3iUlQNxOPcVrXrshcO/YsFpxnFuhG9DM= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 h1:sdBNurxM3XEsclOJVSqyqM+WKV/rw/2ykgCeIox4YT0= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1/go.mod h1:Dspcf1LYGPDvgUKO09kqfexFvnOFbKfoGz02VwHpuw4= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b h1:+GnP8VoRndysmH3JYLUveeDmNTNrfhyUhfAeOs6WHPI= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b/go.mod h1:Ysd/qkofD0bepk29RS7Q4ZlVDd4yAHXucYsp5gAy6AE= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4 h1:2LHrlWAStA2oRcDKrJ9lKOShC9an2Pkis2BwY8J7gDw= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4/go.mod h1:uRnGLHKo56QYaPk93z0NRAIgv115lh72rzG40CiE1Mk= github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 h1:FJAFgXS9oqASnkS03RE1HQwYQQxrO4l46O5JSzxqLgg= diff --git a/go.mod b/go.mod index ce5e62042c2..4650274f566 100644 --- a/go.mod +++ b/go.mod @@ -84,7 +84,7 @@ require ( github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20251128020529-88d93b01d749 github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250912190424-fd2e35d7deb5 github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5 - github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 + github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4 github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 github.com/smartcontractkit/chainlink-data-streams v0.1.6 diff --git a/go.sum b/go.sum index fe989287c61..a7e757c3f87 100644 --- a/go.sum +++ b/go.sum @@ -1124,8 +1124,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250912190424-f github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250912190424-fd2e35d7deb5/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5 h1:Z4t2ZY+ZyGWxtcXvPr11y4o3CGqhg3frJB5jXkCSvWA= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 h1:sdBNurxM3XEsclOJVSqyqM+WKV/rw/2ykgCeIox4YT0= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1/go.mod h1:Dspcf1LYGPDvgUKO09kqfexFvnOFbKfoGz02VwHpuw4= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b h1:+GnP8VoRndysmH3JYLUveeDmNTNrfhyUhfAeOs6WHPI= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b/go.mod h1:Ysd/qkofD0bepk29RS7Q4ZlVDd4yAHXucYsp5gAy6AE= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4 h1:2LHrlWAStA2oRcDKrJ9lKOShC9an2Pkis2BwY8J7gDw= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4/go.mod h1:uRnGLHKo56QYaPk93z0NRAIgv115lh72rzG40CiE1Mk= github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 h1:FJAFgXS9oqASnkS03RE1HQwYQQxrO4l46O5JSzxqLgg= diff --git a/integration-tests/go.mod b/integration-tests/go.mod index 5cef235142f..7f3869be881 100644 --- a/integration-tests/go.mod +++ b/integration-tests/go.mod @@ -496,7 +496,7 @@ require ( github.com/smartcontractkit/ccip-owner-contracts v0.1.0 // indirect github.com/smartcontractkit/chainlink-ccip/ccv/chains/evm v0.0.0-20251127040717-30244f57ea7a // indirect github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e // indirect - github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 // indirect + github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b // indirect github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 // indirect github.com/smartcontractkit/chainlink-data-streams v0.1.6 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect diff --git a/integration-tests/go.sum b/integration-tests/go.sum index b9cb18efaa4..0b120389990 100644 --- a/integration-tests/go.sum +++ b/integration-tests/go.sum @@ -1599,8 +1599,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250 github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e h1:hQEOz6nRQgIQf0HS3EsjS22cAwejLa6q4nCyFGYrb/s= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e/go.mod h1:IaoLCQE1miX3iUlQNxOPcVrXrshcO/YsFpxnFuhG9DM= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 h1:sdBNurxM3XEsclOJVSqyqM+WKV/rw/2ykgCeIox4YT0= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1/go.mod h1:Dspcf1LYGPDvgUKO09kqfexFvnOFbKfoGz02VwHpuw4= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b h1:+GnP8VoRndysmH3JYLUveeDmNTNrfhyUhfAeOs6WHPI= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b/go.mod h1:Ysd/qkofD0bepk29RS7Q4ZlVDd4yAHXucYsp5gAy6AE= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4 h1:2LHrlWAStA2oRcDKrJ9lKOShC9an2Pkis2BwY8J7gDw= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4/go.mod h1:uRnGLHKo56QYaPk93z0NRAIgv115lh72rzG40CiE1Mk= github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 h1:FJAFgXS9oqASnkS03RE1HQwYQQxrO4l46O5JSzxqLgg= diff --git a/integration-tests/load/go.mod b/integration-tests/load/go.mod index 54ee0d5fb74..eaf515b352c 100644 --- a/integration-tests/load/go.mod +++ b/integration-tests/load/go.mod @@ -481,7 +481,7 @@ require ( github.com/smartcontractkit/chainlink-automation v0.8.1 // indirect github.com/smartcontractkit/chainlink-ccip/ccv/chains/evm v0.0.0-20251127040717-30244f57ea7a // indirect github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e // indirect - github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 // indirect + github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b // indirect github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 // indirect github.com/smartcontractkit/chainlink-data-streams v0.1.6 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect diff --git a/integration-tests/load/go.sum b/integration-tests/load/go.sum index a27f0142126..e0f1e31d8d1 100644 --- a/integration-tests/load/go.sum +++ b/integration-tests/load/go.sum @@ -1578,8 +1578,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250 github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e h1:hQEOz6nRQgIQf0HS3EsjS22cAwejLa6q4nCyFGYrb/s= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e/go.mod h1:IaoLCQE1miX3iUlQNxOPcVrXrshcO/YsFpxnFuhG9DM= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 h1:sdBNurxM3XEsclOJVSqyqM+WKV/rw/2ykgCeIox4YT0= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1/go.mod h1:Dspcf1LYGPDvgUKO09kqfexFvnOFbKfoGz02VwHpuw4= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b h1:+GnP8VoRndysmH3JYLUveeDmNTNrfhyUhfAeOs6WHPI= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b/go.mod h1:Ysd/qkofD0bepk29RS7Q4ZlVDd4yAHXucYsp5gAy6AE= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4 h1:2LHrlWAStA2oRcDKrJ9lKOShC9an2Pkis2BwY8J7gDw= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4/go.mod h1:uRnGLHKo56QYaPk93z0NRAIgv115lh72rzG40CiE1Mk= github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 h1:FJAFgXS9oqASnkS03RE1HQwYQQxrO4l46O5JSzxqLgg= diff --git a/system-tests/lib/go.mod b/system-tests/lib/go.mod index abdecb20956..0c0ea582bae 100644 --- a/system-tests/lib/go.mod +++ b/system-tests/lib/go.mod @@ -455,7 +455,7 @@ require ( github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20251128020529-88d93b01d749 // indirect github.com/smartcontractkit/chainlink-ccip/ccv/chains/evm v0.0.0-20251127040717-30244f57ea7a // indirect github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5 // indirect - github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 // indirect + github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b // indirect github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 // indirect github.com/smartcontractkit/chainlink-data-streams v0.1.6 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect diff --git a/system-tests/lib/go.sum b/system-tests/lib/go.sum index ad09e9726fe..e93dad85b71 100644 --- a/system-tests/lib/go.sum +++ b/system-tests/lib/go.sum @@ -1595,8 +1595,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250 github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e h1:hQEOz6nRQgIQf0HS3EsjS22cAwejLa6q4nCyFGYrb/s= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e/go.mod h1:IaoLCQE1miX3iUlQNxOPcVrXrshcO/YsFpxnFuhG9DM= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 h1:sdBNurxM3XEsclOJVSqyqM+WKV/rw/2ykgCeIox4YT0= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1/go.mod h1:Dspcf1LYGPDvgUKO09kqfexFvnOFbKfoGz02VwHpuw4= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b h1:+GnP8VoRndysmH3JYLUveeDmNTNrfhyUhfAeOs6WHPI= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b/go.mod h1:Ysd/qkofD0bepk29RS7Q4ZlVDd4yAHXucYsp5gAy6AE= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4 h1:2LHrlWAStA2oRcDKrJ9lKOShC9an2Pkis2BwY8J7gDw= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4/go.mod h1:uRnGLHKo56QYaPk93z0NRAIgv115lh72rzG40CiE1Mk= github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 h1:FJAFgXS9oqASnkS03RE1HQwYQQxrO4l46O5JSzxqLgg= diff --git a/system-tests/tests/go.mod b/system-tests/tests/go.mod index b47b64c0e2b..37b8eb7e33e 100644 --- a/system-tests/tests/go.mod +++ b/system-tests/tests/go.mod @@ -86,7 +86,7 @@ require ( github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect github.com/influxdata/tdigest v0.0.2-0.20210216194612-fc98d27c9e8b // indirect github.com/smartcontractkit/chainlink-ccip/ccv/chains/evm v0.0.0-20251127040717-30244f57ea7a // indirect - github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 // indirect + github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b // indirect github.com/smartcontractkit/chainlink-protos/chainlink-ccv/go v0.0.0-20251126123859-d079d6815edb // indirect ) diff --git a/system-tests/tests/go.sum b/system-tests/tests/go.sum index be9ab23d65f..936f898e04c 100644 --- a/system-tests/tests/go.sum +++ b/system-tests/tests/go.sum @@ -1792,8 +1792,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250 github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e h1:hQEOz6nRQgIQf0HS3EsjS22cAwejLa6q4nCyFGYrb/s= github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20251027185542-babb09e5363e/go.mod h1:IaoLCQE1miX3iUlQNxOPcVrXrshcO/YsFpxnFuhG9DM= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1 h1:sdBNurxM3XEsclOJVSqyqM+WKV/rw/2ykgCeIox4YT0= -github.com/smartcontractkit/chainlink-ccv v0.0.0-20251201171152-bd4501ddf2b1/go.mod h1:Dspcf1LYGPDvgUKO09kqfexFvnOFbKfoGz02VwHpuw4= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b h1:+GnP8VoRndysmH3JYLUveeDmNTNrfhyUhfAeOs6WHPI= +github.com/smartcontractkit/chainlink-ccv v0.0.0-20251205143623-4948c857101b/go.mod h1:Ysd/qkofD0bepk29RS7Q4ZlVDd4yAHXucYsp5gAy6AE= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4 h1:2LHrlWAStA2oRcDKrJ9lKOShC9an2Pkis2BwY8J7gDw= github.com/smartcontractkit/chainlink-common v0.9.6-0.20251125103916-0b41e73b80c4/go.mod h1:uRnGLHKo56QYaPk93z0NRAIgv115lh72rzG40CiE1Mk= github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 h1:FJAFgXS9oqASnkS03RE1HQwYQQxrO4l46O5JSzxqLgg=