diff --git a/core/scripts/go.mod b/core/scripts/go.mod index a62f318c641..0146b976269 100644 --- a/core/scripts/go.mod +++ b/core/scripts/go.mod @@ -34,7 +34,7 @@ require ( github.com/prometheus/client_golang v1.20.5 github.com/shopspring/decimal v1.4.0 github.com/smartcontractkit/chainlink-automation v0.8.1 - github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 + github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5 github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250213145514-41d874782c02 github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.22 diff --git a/core/scripts/go.sum b/core/scripts/go.sum index 17768b95835..8de889a35a5 100644 --- a/core/scripts/go.sum +++ b/core/scripts/go.sum @@ -1090,8 +1090,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 h1 github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4/go.mod h1:Hht/OJq/PxC+gnBCIPyzHt4Otsw6mYwUVsmtOqIvlxo= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01 h1:R3OD6Phi0ULIQ2uvHiKVWYdgpi/O1Mt46CUK1UApcXU= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 h1:/g+RaOzvHnwnjbwFQMFbnAuBZANoF5rmvG58NFqoqzY= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f h1:mcUUyDVhPsWYAAbm90aadM66vNc3uBXOwRKfwMdIM5E= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5 h1:CvDfgWoLoYPapOumE/UZCplfCu5oNmy9BuH+6V6+fJ8= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5/go.mod h1:pDZagSGjs9U+l4YIFhveDznMHqxuuz+5vRxvVgpbdr8= github.com/smartcontractkit/chainlink-feeds v0.1.1 h1:JzvUOM/OgGQA1sOqTXXl52R6AnNt+Wg64sVG+XSA49c= diff --git a/core/services/llo/cre/report_codec.go b/core/services/llo/cre/report_codec.go index 567144b1832..0d76d693eab 100644 --- a/core/services/llo/cre/report_codec.go +++ b/core/services/llo/cre/report_codec.go @@ -7,6 +7,7 @@ import ( "google.golang.org/protobuf/proto" + commonds "github.com/smartcontractkit/chainlink-common/pkg/capabilities/datastreams" capabilitiespb "github.com/smartcontractkit/chainlink-common/pkg/capabilities/pb" "github.com/smartcontractkit/chainlink-common/pkg/logger" llotypes "github.com/smartcontractkit/chainlink-common/pkg/types/llo" @@ -34,7 +35,7 @@ func (r ReportCodecCapabilityTrigger) Encode(ctx context.Context, report datastr // Not supported for now return nil, errors.New("capability trigger encoder does not currently support specimen reports") } - payload := make([]*LLOStreamDecimal, len(report.Values)) + payload := make([]*commonds.LLOStreamDecimal, len(report.Values)) for i, stream := range report.Values { var d []byte switch stream.(type) { @@ -50,12 +51,12 @@ func (r ReportCodecCapabilityTrigger) Encode(ctx context.Context, report datastr default: return nil, fmt.Errorf("only decimal StreamValues are supported, got: %T", stream) } - payload[i] = &LLOStreamDecimal{ + payload[i] = &commonds.LLOStreamDecimal{ StreamID: cd.Streams[i].StreamID, Decimal: d, } } - ste := LLOStreamsTriggerEvent{ + ste := commonds.LLOStreamsTriggerEvent{ Payload: payload, ObservationTimestampNanoseconds: uint64(report.ObservationTimestampSeconds) * 1e9, // TODO: This will be natively supported by: https://github.com/smartcontractkit/chainlink/pull/16575 } @@ -80,14 +81,3 @@ func (r ReportCodecCapabilityTrigger) Encode(ctx context.Context, report datastr func (r ReportCodecCapabilityTrigger) eventID(report datastreamsllo.Report) string { return fmt.Sprintf("streams_%d_%d", r.donID, report.ObservationTimestampSeconds) } - -type LLOStreamsTriggerEvent struct { - Payload []*LLOStreamDecimal - ObservationTimestampNanoseconds uint64 -} - -type LLOStreamDecimal struct { - StreamID uint32 - Decimal []byte - // future: may add aggregation type {MODE, MEDIAN, etc...} -} diff --git a/deployment/go.mod b/deployment/go.mod index 3922fa154e7..2d5036a9dfc 100644 --- a/deployment/go.mod +++ b/deployment/go.mod @@ -32,7 +32,7 @@ require ( github.com/smartcontractkit/chain-selectors v1.0.40 github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01 - github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 + github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250211162441-3d6cea220efb github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250213145514-41d874782c02 github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0 diff --git a/deployment/go.sum b/deployment/go.sum index 3bd39a6fc1b..f8f00ddb18b 100644 --- a/deployment/go.sum +++ b/deployment/go.sum @@ -1138,8 +1138,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 h1 github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4/go.mod h1:Hht/OJq/PxC+gnBCIPyzHt4Otsw6mYwUVsmtOqIvlxo= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01 h1:R3OD6Phi0ULIQ2uvHiKVWYdgpi/O1Mt46CUK1UApcXU= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 h1:/g+RaOzvHnwnjbwFQMFbnAuBZANoF5rmvG58NFqoqzY= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f h1:mcUUyDVhPsWYAAbm90aadM66vNc3uBXOwRKfwMdIM5E= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5 h1:CvDfgWoLoYPapOumE/UZCplfCu5oNmy9BuH+6V6+fJ8= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5/go.mod h1:pDZagSGjs9U+l4YIFhveDznMHqxuuz+5vRxvVgpbdr8= github.com/smartcontractkit/chainlink-feeds v0.1.1 h1:JzvUOM/OgGQA1sOqTXXl52R6AnNt+Wg64sVG+XSA49c= diff --git a/go.mod b/go.mod index d38729d2c90..e60f3ce9d59 100644 --- a/go.mod +++ b/go.mod @@ -78,7 +78,7 @@ require ( github.com/smartcontractkit/chainlink-automation v0.8.1 github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01 - github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 + github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5 github.com/smartcontractkit/chainlink-feeds v0.1.1 github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250207205350-420ccacab78a diff --git a/go.sum b/go.sum index 81fd4e9906f..6aae203ad7a 100644 --- a/go.sum +++ b/go.sum @@ -1022,8 +1022,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 h1 github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4/go.mod h1:Hht/OJq/PxC+gnBCIPyzHt4Otsw6mYwUVsmtOqIvlxo= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01 h1:R3OD6Phi0ULIQ2uvHiKVWYdgpi/O1Mt46CUK1UApcXU= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 h1:/g+RaOzvHnwnjbwFQMFbnAuBZANoF5rmvG58NFqoqzY= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f h1:mcUUyDVhPsWYAAbm90aadM66vNc3uBXOwRKfwMdIM5E= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5 h1:CvDfgWoLoYPapOumE/UZCplfCu5oNmy9BuH+6V6+fJ8= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5/go.mod h1:pDZagSGjs9U+l4YIFhveDznMHqxuuz+5vRxvVgpbdr8= github.com/smartcontractkit/chainlink-feeds v0.1.1 h1:JzvUOM/OgGQA1sOqTXXl52R6AnNt+Wg64sVG+XSA49c= diff --git a/integration-tests/go.mod b/integration-tests/go.mod index 6cf230cf8b3..9cfa001c8b7 100644 --- a/integration-tests/go.mod +++ b/integration-tests/go.mod @@ -47,7 +47,7 @@ require ( github.com/smartcontractkit/chain-selectors v1.0.40 github.com/smartcontractkit/chainlink-automation v0.8.1 github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 - github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 + github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250213145514-41d874782c02 github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0 github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.2 diff --git a/integration-tests/go.sum b/integration-tests/go.sum index 69a2878aae2..9244b13a1eb 100644 --- a/integration-tests/go.sum +++ b/integration-tests/go.sum @@ -1388,8 +1388,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 h1 github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4/go.mod h1:Hht/OJq/PxC+gnBCIPyzHt4Otsw6mYwUVsmtOqIvlxo= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01 h1:R3OD6Phi0ULIQ2uvHiKVWYdgpi/O1Mt46CUK1UApcXU= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 h1:/g+RaOzvHnwnjbwFQMFbnAuBZANoF5rmvG58NFqoqzY= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f h1:mcUUyDVhPsWYAAbm90aadM66vNc3uBXOwRKfwMdIM5E= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5 h1:CvDfgWoLoYPapOumE/UZCplfCu5oNmy9BuH+6V6+fJ8= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5/go.mod h1:pDZagSGjs9U+l4YIFhveDznMHqxuuz+5vRxvVgpbdr8= github.com/smartcontractkit/chainlink-feeds v0.1.1 h1:JzvUOM/OgGQA1sOqTXXl52R6AnNt+Wg64sVG+XSA49c= diff --git a/integration-tests/load/go.mod b/integration-tests/load/go.mod index 4a0fb344070..c1462bc76d8 100644 --- a/integration-tests/load/go.mod +++ b/integration-tests/load/go.mod @@ -29,7 +29,7 @@ require ( github.com/slack-go/slack v0.15.0 github.com/smartcontractkit/chain-selectors v1.0.40 github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 - github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 + github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250213145514-41d874782c02 github.com/smartcontractkit/chainlink-testing-framework/lib v1.51.0 github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.10 diff --git a/integration-tests/load/go.sum b/integration-tests/load/go.sum index 0c48a34ee9a..f87948123a4 100644 --- a/integration-tests/load/go.sum +++ b/integration-tests/load/go.sum @@ -1373,8 +1373,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 h1 github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4/go.mod h1:Hht/OJq/PxC+gnBCIPyzHt4Otsw6mYwUVsmtOqIvlxo= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01 h1:R3OD6Phi0ULIQ2uvHiKVWYdgpi/O1Mt46CUK1UApcXU= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 h1:/g+RaOzvHnwnjbwFQMFbnAuBZANoF5rmvG58NFqoqzY= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f h1:mcUUyDVhPsWYAAbm90aadM66vNc3uBXOwRKfwMdIM5E= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5 h1:CvDfgWoLoYPapOumE/UZCplfCu5oNmy9BuH+6V6+fJ8= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5/go.mod h1:pDZagSGjs9U+l4YIFhveDznMHqxuuz+5vRxvVgpbdr8= github.com/smartcontractkit/chainlink-feeds v0.1.1 h1:JzvUOM/OgGQA1sOqTXXl52R6AnNt+Wg64sVG+XSA49c= diff --git a/system-tests/lib/go.mod b/system-tests/lib/go.mod index e2f996c74e1..27c07faac88 100644 --- a/system-tests/lib/go.mod +++ b/system-tests/lib/go.mod @@ -17,7 +17,7 @@ require ( github.com/google/uuid v1.6.0 github.com/pkg/errors v0.9.1 github.com/rs/zerolog v1.33.0 - github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 + github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0 github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.4 github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.23 diff --git a/system-tests/lib/go.sum b/system-tests/lib/go.sum index 2f6ff01041b..fb69e50c512 100644 --- a/system-tests/lib/go.sum +++ b/system-tests/lib/go.sum @@ -1126,8 +1126,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 h1 github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4/go.mod h1:Hht/OJq/PxC+gnBCIPyzHt4Otsw6mYwUVsmtOqIvlxo= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01 h1:R3OD6Phi0ULIQ2uvHiKVWYdgpi/O1Mt46CUK1UApcXU= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 h1:/g+RaOzvHnwnjbwFQMFbnAuBZANoF5rmvG58NFqoqzY= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f h1:mcUUyDVhPsWYAAbm90aadM66vNc3uBXOwRKfwMdIM5E= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5 h1:CvDfgWoLoYPapOumE/UZCplfCu5oNmy9BuH+6V6+fJ8= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5/go.mod h1:pDZagSGjs9U+l4YIFhveDznMHqxuuz+5vRxvVgpbdr8= github.com/smartcontractkit/chainlink-feeds v0.1.1 h1:JzvUOM/OgGQA1sOqTXXl52R6AnNt+Wg64sVG+XSA49c= diff --git a/system-tests/tests/go.mod b/system-tests/tests/go.mod index cd32e924020..fcc05cb1272 100644 --- a/system-tests/tests/go.mod +++ b/system-tests/tests/go.mod @@ -343,7 +343,7 @@ require ( github.com/smartcontractkit/chainlink-automation v0.8.1 // indirect github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 // indirect github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01 // indirect - github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 // indirect + github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f // indirect github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.1 // indirect github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250207205350-420ccacab78a // indirect diff --git a/system-tests/tests/go.sum b/system-tests/tests/go.sum index 0d8a7085f36..452cf149706 100644 --- a/system-tests/tests/go.sum +++ b/system-tests/tests/go.sum @@ -1126,8 +1126,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4 h1 github.com/smartcontractkit/chainlink-ccip v0.0.0-20250221121938-dd0db587bff4/go.mod h1:Hht/OJq/PxC+gnBCIPyzHt4Otsw6mYwUVsmtOqIvlxo= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01 h1:R3OD6Phi0ULIQ2uvHiKVWYdgpi/O1Mt46CUK1UApcXU= github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9 h1:/g+RaOzvHnwnjbwFQMFbnAuBZANoF5rmvG58NFqoqzY= -github.com/smartcontractkit/chainlink-common v0.4.2-0.20250221192031-59d5759effb9/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f h1:mcUUyDVhPsWYAAbm90aadM66vNc3uBXOwRKfwMdIM5E= +github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227135039-1cc8c4f04c3f/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5 h1:CvDfgWoLoYPapOumE/UZCplfCu5oNmy9BuH+6V6+fJ8= github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250128203428-08031923fbe5/go.mod h1:pDZagSGjs9U+l4YIFhveDznMHqxuuz+5vRxvVgpbdr8= github.com/smartcontractkit/chainlink-feeds v0.1.1 h1:JzvUOM/OgGQA1sOqTXXl52R6AnNt+Wg64sVG+XSA49c=