Skip to content

Commit 8f28a9f

Browse files
Set IncludeReverted on ExecutionStateChanged event in ccip cfg (#16834)
* Set IncludeReverted option on ExecutionStateChanged event def in ccip cr config * Update Solana
1 parent f2442c8 commit 8f28a9f

File tree

15 files changed

+26
-22
lines changed

15 files changed

+26
-22
lines changed

core/capabilities/ccip/configs/solana/contract_reader.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ func DestContractReaderConfig() (config.ContractReader, error) {
4646
return config.ContractReader{}, fmt.Errorf("unexpected error: invalid CCIP Router IDL, error: %w", err)
4747
}
4848

49+
trueVal := true
50+
4951
locationFirst := codec.ElementExtractorLocationFirst
5052
return config.ContractReader{
5153
AddressShareGroups: [][]string{{consts.ContractNameRouter, consts.ContractNameNonceManager}},
@@ -57,7 +59,9 @@ func DestContractReaderConfig() (config.ContractReader, error) {
5759
ChainSpecificName: consts.EventNameExecutionStateChanged,
5860
ReadType: config.Event,
5961
EventDefinitions: &config.EventDefinitions{
60-
PollingFilter: &config.PollingFilter{},
62+
PollingFilter: &config.PollingFilter{
63+
IncludeReverted: &trueVal,
64+
},
6165
IndexedField0: &config.IndexedField{
6266
OffChainPath: consts.EventAttributeSourceChain,
6367
OnChainPath: consts.EventAttributeSourceChain,

core/scripts/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ require (
352352
github.com/smartcontractkit/chainlink-protos/orchestrator v0.5.0 // indirect
353353
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6 // indirect
354354
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 // indirect
355-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 // indirect
355+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a // indirect
356356
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.3 // indirect
357357
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 // indirect
358358
github.com/smartcontractkit/mcms v0.14.0 // indirect

core/scripts/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,8 +1142,8 @@ github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-1
11421142
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6/go.mod h1:FRwzI3hGj4CJclNS733gfcffmqQ62ONCkbGi49s658w=
11431143
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+vOwbM+Hnx8tIN2xCPG8H4o=
11441144
github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo=
1145-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 h1:jqYO7JWiZRes2ChAtNb+g+act8RcU+M/PUfHdJqNrQI=
1146-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
1145+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a h1:W38s/khf8DEPwzZTdixk38ufk6MjfT8zToV+7t6Wqec=
1146+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
11471147
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.3 h1:CeZqFz/si4YBnYE1118mtc4FBLs2Za1qohYAeLZTI+o=
11481148
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.3/go.mod h1:9b5ugzYeKkwbxZ9yMOoxUaPiONDLC/QLCncarDFnhwk=
11491149
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.22 h1:W3doYLVoZN8VwJb/kAZsbDjW+6cgZPgNTcQHJUH9JrA=

deployment/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ require (
3838
github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250317165050-f8c18e1f415e
3939
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0
4040
github.com/smartcontractkit/chainlink-protos/orchestrator v0.5.0
41-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908
41+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a
4242
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.3
4343
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.22
4444
github.com/smartcontractkit/libocr v0.0.0-20250220133800-f3b940c4f298

deployment/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1188,8 +1188,8 @@ github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-1
11881188
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6/go.mod h1:FRwzI3hGj4CJclNS733gfcffmqQ62ONCkbGi49s658w=
11891189
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+vOwbM+Hnx8tIN2xCPG8H4o=
11901190
github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo=
1191-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 h1:jqYO7JWiZRes2ChAtNb+g+act8RcU+M/PUfHdJqNrQI=
1192-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
1191+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a h1:W38s/khf8DEPwzZTdixk38ufk6MjfT8zToV+7t6Wqec=
1192+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
11931193
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.3 h1:CeZqFz/si4YBnYE1118mtc4FBLs2Za1qohYAeLZTI+o=
11941194
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.3/go.mod h1:9b5ugzYeKkwbxZ9yMOoxUaPiONDLC/QLCncarDFnhwk=
11951195
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.22 h1:W3doYLVoZN8VwJb/kAZsbDjW+6cgZPgNTcQHJUH9JrA=

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ require (
8484
github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250317165050-f8c18e1f415e
8585
github.com/smartcontractkit/chainlink-protos/orchestrator v0.5.0
8686
github.com/smartcontractkit/chainlink-protos/svr v1.1.0
87-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908
87+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a
8888
github.com/smartcontractkit/libocr v0.0.0-20250220133800-f3b940c4f298
8989
github.com/smartcontractkit/tdh2/go/ocr2/decryptionplugin v0.0.0-20241009055228-33d0c0bf38de
9090
github.com/smartcontractkit/tdh2/go/tdh2 v0.0.0-20241009055228-33d0c0bf38de

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,8 +1027,8 @@ github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-1
10271027
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6/go.mod h1:FRwzI3hGj4CJclNS733gfcffmqQ62ONCkbGi49s658w=
10281028
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+vOwbM+Hnx8tIN2xCPG8H4o=
10291029
github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo=
1030-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 h1:jqYO7JWiZRes2ChAtNb+g+act8RcU+M/PUfHdJqNrQI=
1031-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
1030+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a h1:W38s/khf8DEPwzZTdixk38ufk6MjfT8zToV+7t6Wqec=
1031+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
10321032
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 h1:12ijqMM9tvYVEm+nR826WsrNi6zCKpwBhuApq127wHs=
10331033
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7/go.mod h1:FX7/bVdoep147QQhsOPkYsPEXhGZjeYx6lBSaSXtZOA=
10341034
github.com/smartcontractkit/libocr v0.0.0-20250220133800-f3b940c4f298 h1:PKiqnVOTChlH4a4ljJKL3OKGRgYfIpJS4YD1daAIKks=

integration-tests/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ require (
447447
github.com/smartcontractkit/chainlink-protos/orchestrator v0.5.0 // indirect
448448
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6 // indirect
449449
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 // indirect
450-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 // indirect
450+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a // indirect
451451
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.8-0.20250225210020-fc215b29321e // indirect
452452
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 // indirect
453453
github.com/smartcontractkit/mcms v0.14.0 // indirect

integration-tests/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1450,8 +1450,8 @@ github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-1
14501450
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6/go.mod h1:FRwzI3hGj4CJclNS733gfcffmqQ62ONCkbGi49s658w=
14511451
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+vOwbM+Hnx8tIN2xCPG8H4o=
14521452
github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo=
1453-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 h1:jqYO7JWiZRes2ChAtNb+g+act8RcU+M/PUfHdJqNrQI=
1454-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
1453+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a h1:W38s/khf8DEPwzZTdixk38ufk6MjfT8zToV+7t6Wqec=
1454+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
14551455
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.8-0.20250225210020-fc215b29321e h1:6poVaumg1KZYW/K8Aeip2VN2k9TnSjK6ujwfxJnIsoY=
14561456
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.8-0.20250225210020-fc215b29321e/go.mod h1:tnyujVNgajqe67i2/0iwS4Y3mvbA30XBQWLEAArpwfw=
14571457
github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.5 h1:S5HND0EDtlA+xp2E+mD11DlUTp2wD6uojwixye8ZB/k=

integration-tests/load/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ require (
440440
github.com/smartcontractkit/chainlink-protos/orchestrator v0.5.0 // indirect
441441
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6 // indirect
442442
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 // indirect
443-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 // indirect
443+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a // indirect
444444
github.com/smartcontractkit/chainlink-testing-framework/lib/grafana v1.51.0 // indirect
445445
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 // indirect
446446
github.com/smartcontractkit/libocr v0.0.0-20250220133800-f3b940c4f298 // indirect

integration-tests/load/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1431,8 +1431,8 @@ github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-1
14311431
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6/go.mod h1:FRwzI3hGj4CJclNS733gfcffmqQ62ONCkbGi49s658w=
14321432
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+vOwbM+Hnx8tIN2xCPG8H4o=
14331433
github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo=
1434-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 h1:jqYO7JWiZRes2ChAtNb+g+act8RcU+M/PUfHdJqNrQI=
1435-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
1434+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a h1:W38s/khf8DEPwzZTdixk38ufk6MjfT8zToV+7t6Wqec=
1435+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
14361436
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.8-0.20250225210020-fc215b29321e h1:6poVaumg1KZYW/K8Aeip2VN2k9TnSjK6ujwfxJnIsoY=
14371437
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.8-0.20250225210020-fc215b29321e/go.mod h1:tnyujVNgajqe67i2/0iwS4Y3mvbA30XBQWLEAArpwfw=
14381438
github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.5 h1:S5HND0EDtlA+xp2E+mD11DlUTp2wD6uojwixye8ZB/k=

system-tests/lib/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ require (
350350
github.com/smartcontractkit/chainlink-protos/orchestrator v0.5.0 // indirect
351351
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6 // indirect
352352
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 // indirect
353-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 // indirect
353+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a // indirect
354354
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 // indirect
355355
github.com/smartcontractkit/libocr v0.0.0-20250220133800-f3b940c4f298 // indirect
356356
github.com/smartcontractkit/mcms v0.14.0 // indirect

system-tests/lib/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,8 +1176,8 @@ github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-1
11761176
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6/go.mod h1:FRwzI3hGj4CJclNS733gfcffmqQ62ONCkbGi49s658w=
11771177
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+vOwbM+Hnx8tIN2xCPG8H4o=
11781178
github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo=
1179-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 h1:jqYO7JWiZRes2ChAtNb+g+act8RcU+M/PUfHdJqNrQI=
1180-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
1179+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a h1:W38s/khf8DEPwzZTdixk38ufk6MjfT8zToV+7t6Wqec=
1180+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
11811181
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.8 h1:WZkQt31AsUtnsTSBsH5UdOXrXTfulq0DnuVfHKLaBto=
11821182
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.8/go.mod h1:tnyujVNgajqe67i2/0iwS4Y3mvbA30XBQWLEAArpwfw=
11831183
github.com/smartcontractkit/chainlink-testing-framework/lib v1.52.0 h1:rNjLZrwY3TcrANHVz/JUm55vufzoeRogSlgjAH7plvU=

system-tests/tests/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ require (
354354
github.com/smartcontractkit/chainlink-protos/orchestrator v0.5.0 // indirect
355355
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6 // indirect
356356
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 // indirect
357-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 // indirect
357+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a // indirect
358358
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 // indirect
359359
github.com/smartcontractkit/libocr v0.0.0-20250220133800-f3b940c4f298 // indirect
360360
github.com/smartcontractkit/mcms v0.14.0 // indirect

system-tests/tests/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,8 +1176,8 @@ github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-1
11761176
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6/go.mod h1:FRwzI3hGj4CJclNS733gfcffmqQ62ONCkbGi49s658w=
11771177
github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+vOwbM+Hnx8tIN2xCPG8H4o=
11781178
github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo=
1179-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908 h1:jqYO7JWiZRes2ChAtNb+g+act8RcU+M/PUfHdJqNrQI=
1180-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250324062818-f3e2fd199908/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
1179+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a h1:W38s/khf8DEPwzZTdixk38ufk6MjfT8zToV+7t6Wqec=
1180+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250325104625-225cb5a9190a/go.mod h1:RvLgjTCXEPIqLqyprxc2u3Hj6gvUxpt+s44z4F8ppeU=
11811181
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.8 h1:WZkQt31AsUtnsTSBsH5UdOXrXTfulq0DnuVfHKLaBto=
11821182
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.8/go.mod h1:tnyujVNgajqe67i2/0iwS4Y3mvbA30XBQWLEAArpwfw=
11831183
github.com/smartcontractkit/chainlink-testing-framework/lib v1.52.0 h1:rNjLZrwY3TcrANHVz/JUm55vufzoeRogSlgjAH7plvU=

0 commit comments

Comments
 (0)