Skip to content

Commit 98fa28d

Browse files
authored
Bump common (#17600)
1 parent 5dca080 commit 98fa28d

File tree

16 files changed

+27
-26
lines changed

16 files changed

+27
-26
lines changed

core/scripts/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ require (
3333
github.com/shopspring/decimal v1.4.0
3434
github.com/smartcontractkit/chainlink-automation v0.8.1
3535
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa
36-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529
36+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511
3737
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049
3838
github.com/smartcontractkit/chainlink-deployments-framework v0.0.10
3939
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c

core/scripts/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1191,8 +1191,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa h1
11911191
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa/go.mod h1:Jb05WL6lj5H89XGcaaOinxTf4Gdj+vXO4TcUhqTgqIM=
11921192
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7 h1:j6Vo/NX2ABsPdGxETC5pfQLcz/h6iLJu/Yx+8AhPa34=
11931193
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7/go.mod h1:k3/Z6AvwurPUlfuDFEonRbkkiTSgNSrtVNhJEWNlUZA=
1194-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529 h1:p8r+orlisPcD4BAqmSCFhkPRfU4vwd0Gl55s4i5+l/M=
1195-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
1194+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511 h1:QFkJ2MVmt0ly0W0BnfobicUknn4Qr8u0VCs1WYYo2E0=
1195+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
11961196
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
11971197
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
11981198
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=

core/services/workflows/v2/engine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/smartcontractkit/chainlink-common/pkg/capabilities"
1313
"github.com/smartcontractkit/chainlink-common/pkg/services"
1414

15-
wasmpb "github.com/smartcontractkit/chainlink-common/pkg/workflows/wasm/pb"
15+
wasmpb "github.com/smartcontractkit/chainlink-common/pkg/workflows/wasm/v2/pb"
1616
"github.com/smartcontractkit/chainlink/v2/core/services/workflows/internal"
1717
"github.com/smartcontractkit/chainlink/v2/core/services/workflows/types"
1818
)

core/services/workflows/v2/engine_test.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ import (
1010

1111
"github.com/smartcontractkit/chainlink-common/pkg/capabilities"
1212
regmocks "github.com/smartcontractkit/chainlink-common/pkg/types/core/mocks"
13+
sdkpb "github.com/smartcontractkit/chainlink-common/pkg/workflows/sdk/v2/pb"
1314
modulemocks "github.com/smartcontractkit/chainlink-common/pkg/workflows/wasm/host/mocks"
14-
wasmpb "github.com/smartcontractkit/chainlink-common/pkg/workflows/wasm/pb"
15+
wasmpb "github.com/smartcontractkit/chainlink-common/pkg/workflows/wasm/v2/pb"
1516
capmocks "github.com/smartcontractkit/chainlink/v2/core/capabilities/mocks"
1617
"github.com/smartcontractkit/chainlink/v2/core/logger"
1718
"github.com/smartcontractkit/chainlink/v2/core/services/workflows/syncerlimiter"
@@ -198,17 +199,17 @@ func TestEngine_TriggerSubscriptions(t *testing.T) {
198199
}
199200

200201
func newTriggerSubs(n int) *wasmpb.ExecutionResult {
201-
subs := make([]*wasmpb.TriggerSubscription, 0, n)
202+
subs := make([]*sdkpb.TriggerSubscription, 0, n)
202203
for i := range n {
203-
subs = append(subs, &wasmpb.TriggerSubscription{
204+
subs = append(subs, &sdkpb.TriggerSubscription{
204205
ExecId: fmt.Sprintf("execId_%d", i),
205206
Id: fmt.Sprintf("id_%d", i),
206207
Method: "method",
207208
})
208209
}
209210
return &wasmpb.ExecutionResult{
210211
Result: &wasmpb.ExecutionResult_TriggerSubscriptions{
211-
TriggerSubscriptions: &wasmpb.TriggerSubscriptionRequest{
212+
TriggerSubscriptions: &sdkpb.TriggerSubscriptionRequest{
212213
Subscriptions: subs,
213214
},
214215
},

deployment/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ require (
3434
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250414155853-651b4e583ee9
3535
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa
3636
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7
37-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529
37+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511
3838
github.com/smartcontractkit/chainlink-deployments-framework v0.0.10
3939
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c
4040
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250502210357-2df484128afa

deployment/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1240,8 +1240,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa h1
12401240
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa/go.mod h1:Jb05WL6lj5H89XGcaaOinxTf4Gdj+vXO4TcUhqTgqIM=
12411241
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7 h1:j6Vo/NX2ABsPdGxETC5pfQLcz/h6iLJu/Yx+8AhPa34=
12421242
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7/go.mod h1:k3/Z6AvwurPUlfuDFEonRbkkiTSgNSrtVNhJEWNlUZA=
1243-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529 h1:p8r+orlisPcD4BAqmSCFhkPRfU4vwd0Gl55s4i5+l/M=
1244-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
1243+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511 h1:QFkJ2MVmt0ly0W0BnfobicUknn4Qr8u0VCs1WYYo2E0=
1244+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
12451245
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
12461246
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
12471247
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ require (
7676
github.com/smartcontractkit/chainlink-automation v0.8.1
7777
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa
7878
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7
79-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529
79+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511
8080
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049
8181
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c
8282
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1052,8 +1052,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa h1
10521052
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa/go.mod h1:Jb05WL6lj5H89XGcaaOinxTf4Gdj+vXO4TcUhqTgqIM=
10531053
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7 h1:j6Vo/NX2ABsPdGxETC5pfQLcz/h6iLJu/Yx+8AhPa34=
10541054
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7/go.mod h1:k3/Z6AvwurPUlfuDFEonRbkkiTSgNSrtVNhJEWNlUZA=
1055-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529 h1:p8r+orlisPcD4BAqmSCFhkPRfU4vwd0Gl55s4i5+l/M=
1056-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
1055+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511 h1:QFkJ2MVmt0ly0W0BnfobicUknn4Qr8u0VCs1WYYo2E0=
1056+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
10571057
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
10581058
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
10591059
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=

integration-tests/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ require (
4747
github.com/smartcontractkit/chainlink-automation v0.8.1
4848
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa
4949
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7
50-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529
50+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511
5151
github.com/smartcontractkit/chainlink-deployments-framework v0.0.10
5252
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c
5353
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0

integration-tests/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1474,8 +1474,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa h1
14741474
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa/go.mod h1:Jb05WL6lj5H89XGcaaOinxTf4Gdj+vXO4TcUhqTgqIM=
14751475
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7 h1:j6Vo/NX2ABsPdGxETC5pfQLcz/h6iLJu/Yx+8AhPa34=
14761476
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7/go.mod h1:k3/Z6AvwurPUlfuDFEonRbkkiTSgNSrtVNhJEWNlUZA=
1477-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529 h1:p8r+orlisPcD4BAqmSCFhkPRfU4vwd0Gl55s4i5+l/M=
1478-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
1477+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511 h1:QFkJ2MVmt0ly0W0BnfobicUknn4Qr8u0VCs1WYYo2E0=
1478+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
14791479
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
14801480
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
14811481
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=

integration-tests/load/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ require (
2929
github.com/smartcontractkit/chain-selectors v1.0.55
3030
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa
3131
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7
32-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529
32+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511
3333
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c
3434
github.com/smartcontractkit/chainlink-testing-framework/framework v0.7.4
3535
github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.5

integration-tests/load/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1455,8 +1455,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa h1
14551455
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa/go.mod h1:Jb05WL6lj5H89XGcaaOinxTf4Gdj+vXO4TcUhqTgqIM=
14561456
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7 h1:j6Vo/NX2ABsPdGxETC5pfQLcz/h6iLJu/Yx+8AhPa34=
14571457
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7/go.mod h1:k3/Z6AvwurPUlfuDFEonRbkkiTSgNSrtVNhJEWNlUZA=
1458-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529 h1:p8r+orlisPcD4BAqmSCFhkPRfU4vwd0Gl55s4i5+l/M=
1459-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
1458+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511 h1:QFkJ2MVmt0ly0W0BnfobicUknn4Qr8u0VCs1WYYo2E0=
1459+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
14601460
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
14611461
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
14621462
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=

system-tests/lib/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ require (
2121
github.com/pkg/errors v0.9.1
2222
github.com/rs/zerolog v1.33.0
2323
github.com/smartcontractkit/chain-selectors v1.0.55
24-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529
24+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511
2525
github.com/smartcontractkit/chainlink-deployments-framework v0.0.10
2626
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c
2727
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0

system-tests/lib/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,8 +1228,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa h1
12281228
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa/go.mod h1:Jb05WL6lj5H89XGcaaOinxTf4Gdj+vXO4TcUhqTgqIM=
12291229
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7 h1:j6Vo/NX2ABsPdGxETC5pfQLcz/h6iLJu/Yx+8AhPa34=
12301230
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7/go.mod h1:k3/Z6AvwurPUlfuDFEonRbkkiTSgNSrtVNhJEWNlUZA=
1231-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529 h1:p8r+orlisPcD4BAqmSCFhkPRfU4vwd0Gl55s4i5+l/M=
1232-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
1231+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511 h1:QFkJ2MVmt0ly0W0BnfobicUknn4Qr8u0VCs1WYYo2E0=
1232+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
12331233
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
12341234
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
12351235
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=

system-tests/tests/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ require (
2525
github.com/pkg/errors v0.9.1
2626
github.com/rs/zerolog v1.33.0
2727
github.com/shopspring/decimal v1.4.0
28-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529
28+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511
2929
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049
3030
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c
3131
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0

system-tests/tests/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1430,8 +1430,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa h1
14301430
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250430132510-be8d09930aaa/go.mod h1:Jb05WL6lj5H89XGcaaOinxTf4Gdj+vXO4TcUhqTgqIM=
14311431
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7 h1:j6Vo/NX2ABsPdGxETC5pfQLcz/h6iLJu/Yx+8AhPa34=
14321432
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7/go.mod h1:k3/Z6AvwurPUlfuDFEonRbkkiTSgNSrtVNhJEWNlUZA=
1433-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529 h1:p8r+orlisPcD4BAqmSCFhkPRfU4vwd0Gl55s4i5+l/M=
1434-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250502144500-77c113986529/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
1433+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511 h1:QFkJ2MVmt0ly0W0BnfobicUknn4Qr8u0VCs1WYYo2E0=
1434+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511/go.mod h1:uNF6+noody47ZdmRwymDZAnQ7eKTXLzMKvl41LA63lo=
14351435
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
14361436
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
14371437
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=

0 commit comments

Comments
 (0)