Skip to content

Commit 2275559

Browse files
committed
alias CR/CW types to pkg/types/solana
1 parent 112165c commit 2275559

File tree

16 files changed

+409
-942
lines changed

16 files changed

+409
-942
lines changed

go.mod

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ require (
99
github.com/gagliardetto/gofuzz v1.2.2
1010
github.com/gagliardetto/solana-go v1.12.0
1111
github.com/gagliardetto/treeout v0.1.4
12-
github.com/gagliardetto/utilz v0.1.1
13-
github.com/go-viper/mapstructure/v2 v2.2.1
12+
github.com/go-viper/mapstructure/v2 v2.3.0
1413
github.com/google/uuid v1.6.0
1514
github.com/hashicorp/go-plugin v1.6.3
1615
github.com/jackc/pgx/v4 v4.18.3
@@ -20,8 +19,9 @@ require (
2019
github.com/prometheus/client_model v0.6.1
2120
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250624142741-45c8e9237804
2221
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed
23-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250623175819-a17cdfe27dfd
22+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628141348-0408d44794b6
2423
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7
24+
github.com/smartcontractkit/chainlink-common/pkg/values v0.0.0-20250626141212-e50b2e7ffe2d
2525
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20250618135814-7e3f79ab707e
2626
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250522110034-65c54665034a
2727
github.com/smartcontractkit/freeport v0.1.1
@@ -55,6 +55,7 @@ require (
5555
github.com/fatih/color v1.18.0 // indirect
5656
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
5757
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
58+
github.com/gagliardetto/utilz v0.1.3 // indirect
5859
github.com/go-json-experiment/json v0.0.0-20250223041408-d3c622f1b874 // indirect
5960
github.com/go-kit/log v0.2.1 // indirect
6061
github.com/go-logfmt/logfmt v0.6.0 // indirect

go.sum

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ github.com/gagliardetto/solana-go v1.12.0 h1:rzsbilDPj6p+/DOPXBMLhwMZeBgeRuXjm5z
104104
github.com/gagliardetto/solana-go v1.12.0/go.mod h1:l/qqqIN6qJJPtxW/G1PF4JtcE3Zg2vD2EliZrr9Gn5k=
105105
github.com/gagliardetto/treeout v0.1.4 h1:ozeYerrLCmCubo1TcIjFiOWTTGteOOHND1twdFpgwaw=
106106
github.com/gagliardetto/treeout v0.1.4/go.mod h1:loUefvXTrlRG5rYmJmExNryyBRh8f89VZhmMOyCyqok=
107-
github.com/gagliardetto/utilz v0.1.1 h1:/etW4hl607emKg6R6Lj9jRJ9d6ue2AQOyjhuAwjzs1U=
108-
github.com/gagliardetto/utilz v0.1.1/go.mod h1:b+rGFkRHz3HWJD0RYMzat47JyvbTtpE0iEcYTRJTLLA=
107+
github.com/gagliardetto/utilz v0.1.3 h1:A+asc+6/3a9qNBrgticApj3yW5F7y4TaJd8Ijg+o0zM=
108+
github.com/gagliardetto/utilz v0.1.3/go.mod h1:b+rGFkRHz3HWJD0RYMzat47JyvbTtpE0iEcYTRJTLLA=
109109
github.com/go-json-experiment/json v0.0.0-20250223041408-d3c622f1b874 h1:F8d1AJ6M9UQCavhwmO6ZsrYLfG8zVFWfEfMS2MXPkSY=
110110
github.com/go-json-experiment/json v0.0.0-20250223041408-d3c622f1b874/go.mod h1:TiCD2a1pcmjd7YnhGH0f/zKNcCD06B029pHhzV23c2M=
111111
github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY=
@@ -132,8 +132,8 @@ github.com/go-playground/validator/v10 v10.25.0/go.mod h1:GGzBIJMuE98Ic/kJsBXbz1
132132
github.com/go-sql-driver/mysql v1.8.1 h1:LedoTUt/eveggdHS9qUFC1EFSa8bU2+1pZjSRpvNJ1Y=
133133
github.com/go-sql-driver/mysql v1.8.1/go.mod h1:wEBSXgmK//2ZFJyE+qWnIsVGmvmEKlqwuVSjsCm7DZg=
134134
github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
135-
github.com/go-viper/mapstructure/v2 v2.2.1 h1:ZAaOCxANMuZx5RCeg0mBdEZk7DZasvvZIxtHqx8aGss=
136-
github.com/go-viper/mapstructure/v2 v2.2.1/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
135+
github.com/go-viper/mapstructure/v2 v2.3.0 h1:27XbWsHIqhbdR5TIC911OfYvgSaW93HM+dX7970Q7jk=
136+
github.com/go-viper/mapstructure/v2 v2.3.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
137137
github.com/goccy/go-json v0.10.5 h1:Fq85nIqj+gXn/S5ahsiTlK3TmC85qgirsdTP/+DeaC4=
138138
github.com/goccy/go-json v0.10.5/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M=
139139
github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
@@ -406,10 +406,12 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250624142741-45c8e9237804 h1
406406
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250624142741-45c8e9237804/go.mod h1:Yw7X+vtR7A9MBI+q5b0k/H2PlKy6cQOa7vAp4cshz2s=
407407
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed h1:rjtXQLTCLa/+AmMwMTP5WwJUdPBeBAF3Ivwc1GXetBw=
408408
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed/go.mod h1:k3/Z6AvwurPUlfuDFEonRbkkiTSgNSrtVNhJEWNlUZA=
409-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250623175819-a17cdfe27dfd h1:5AjfcD6373yjIgKbSXHFcJFSEHno4Du1l67TT3Bo6vI=
410-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250623175819-a17cdfe27dfd/go.mod h1:crejZI9ZpBHfhqghQOG9u7Sri7CBzEUYQ/0lVnN60yg=
409+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628141348-0408d44794b6 h1:PfRhnjK+gJMuP3qn3mPx+UQ8DOD9EXHrxM595oCJDBk=
410+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628141348-0408d44794b6/go.mod h1:+le3HV9mby9tXT7GE9U3Q0aSBwgmbButML9lNypfaLM=
411411
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
412412
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
413+
github.com/smartcontractkit/chainlink-common/pkg/values v0.0.0-20250626141212-e50b2e7ffe2d h1:86gp4tIXRb6ccSrjcm4gV8iA5wJN6er3rJY9f2UxRLU=
414+
github.com/smartcontractkit/chainlink-common/pkg/values v0.0.0-20250626141212-e50b2e7ffe2d/go.mod h1:QUEPHdSkH19Or+E1iMGG+rDQ6jpCTIbm//9Osa6MXDE=
413415
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20250618135814-7e3f79ab707e h1:LRT+PltY99+hxZAJn+4nyTfqGVNEM1S6FJ675B9BtJo=
414416
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20250618135814-7e3f79ab707e/go.mod h1:jo+cUqNcHwN8IF7SInQNXDZ8qzBsyMpnLdYbDswviFc=
415417
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250522110034-65c54665034a h1:O28vgyHM7QF1YLg1BwkQSIbOYA+t0RiH9+b+k90GPG8=

integration-tests/go.mod

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/smartcontractkit/chainlink-solana/integration-tests
22

3-
go 1.24.2
3+
go 1.24.4
44

55
replace github.com/smartcontractkit/chainlink-solana => ../
66

@@ -15,16 +15,17 @@ require (
1515
github.com/lib/pq v1.10.9
1616
github.com/pelletier/go-toml/v2 v2.2.3
1717
github.com/rs/zerolog v1.33.0
18-
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250624142741-45c8e9237804
18+
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250627133416-1d85eec09097
1919
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed
20-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250623175819-a17cdfe27dfd
21-
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250616223948-ca6f14c333e9
20+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628141348-0408d44794b6
21+
github.com/smartcontractkit/chainlink-common/pkg/values v0.0.0-20250626141212-e50b2e7ffe2d
22+
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250628165859-f8630406d558
2223
github.com/smartcontractkit/chainlink-testing-framework/lib v1.54.0
2324
github.com/smartcontractkit/chainlink-testing-framework/parrot v0.6.2
2425
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.2
25-
github.com/smartcontractkit/chainlink/deployment v0.0.0-20250625173516-9f25766a5545
26-
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20250625173516-9f25766a5545
27-
github.com/smartcontractkit/chainlink/v2 v2.23.2-por-beta.1.0.20250625173516-9f25766a5545
26+
github.com/smartcontractkit/chainlink/deployment v0.0.0-20250628170146-5b888622e78c
27+
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20250628170146-5b888622e78c
28+
github.com/smartcontractkit/chainlink/v2 v2.23.2-por-beta.1.0.20250628170146-5b888622e78c
2829
github.com/smartcontractkit/libocr v0.0.0-20250604151357-2fe8c61bbf2e
2930
github.com/stretchr/testify v1.10.0
3031
github.com/testcontainers/testcontainers-go v0.37.0
@@ -169,7 +170,7 @@ require (
169170
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
170171
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
171172
github.com/gagliardetto/treeout v0.1.4 // indirect
172-
github.com/gagliardetto/utilz v0.1.1 // indirect
173+
github.com/gagliardetto/utilz v0.1.3 // indirect
173174
github.com/getsentry/sentry-go v0.27.0 // indirect
174175
github.com/gin-contrib/sessions v0.0.5 // indirect
175176
github.com/gin-contrib/sse v0.1.0 // indirect
@@ -191,7 +192,7 @@ require (
191192
github.com/go-playground/locales v0.14.1 // indirect
192193
github.com/go-playground/universal-translator v0.18.1 // indirect
193194
github.com/go-playground/validator/v10 v10.25.0 // indirect
194-
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
195+
github.com/go-viper/mapstructure/v2 v2.3.0 // indirect
195196
github.com/go-webauthn/webauthn v0.9.4 // indirect
196197
github.com/go-webauthn/x v0.1.5 // indirect
197198
github.com/goccy/go-json v0.10.5 // indirect
@@ -355,11 +356,11 @@ require (
355356
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250624090157-6b89f926f864 // indirect
356357
github.com/smartcontractkit/chainlink-automation v0.8.1 // indirect
357358
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250604171706-a98fa6515eae // indirect
358-
github.com/smartcontractkit/chainlink-deployments-framework v0.14.0 // indirect
359-
github.com/smartcontractkit/chainlink-evm v0.0.0-20250618173856-d731d7e7468e // indirect
359+
github.com/smartcontractkit/chainlink-deployments-framework v0.15.0 // indirect
360+
github.com/smartcontractkit/chainlink-evm v0.0.0-20250627135735-93e3b09aec5a // indirect
360361
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect
361362
github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250623155929-df514c92ffe1 // indirect
362-
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250616180023-87b70c08d7c0 // indirect
363+
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250627121608-e7b52913fae2 // indirect
363364
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20250618135814-7e3f79ab707e // indirect
364365
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250522110034-65c54665034a // indirect
365366
github.com/smartcontractkit/chainlink-protos/billing/go v0.0.0-20250612182447-1c32d2efe48f // indirect

integration-tests/go.sum

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -460,8 +460,8 @@ github.com/gagliardetto/solana-go v1.12.0 h1:rzsbilDPj6p+/DOPXBMLhwMZeBgeRuXjm5z
460460
github.com/gagliardetto/solana-go v1.12.0/go.mod h1:l/qqqIN6qJJPtxW/G1PF4JtcE3Zg2vD2EliZrr9Gn5k=
461461
github.com/gagliardetto/treeout v0.1.4 h1:ozeYerrLCmCubo1TcIjFiOWTTGteOOHND1twdFpgwaw=
462462
github.com/gagliardetto/treeout v0.1.4/go.mod h1:loUefvXTrlRG5rYmJmExNryyBRh8f89VZhmMOyCyqok=
463-
github.com/gagliardetto/utilz v0.1.1 h1:/etW4hl607emKg6R6Lj9jRJ9d6ue2AQOyjhuAwjzs1U=
464-
github.com/gagliardetto/utilz v0.1.1/go.mod h1:b+rGFkRHz3HWJD0RYMzat47JyvbTtpE0iEcYTRJTLLA=
463+
github.com/gagliardetto/utilz v0.1.3 h1:A+asc+6/3a9qNBrgticApj3yW5F7y4TaJd8Ijg+o0zM=
464+
github.com/gagliardetto/utilz v0.1.3/go.mod h1:b+rGFkRHz3HWJD0RYMzat47JyvbTtpE0iEcYTRJTLLA=
465465
github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08 h1:f6D9Hr8xV8uYKlyuj8XIruxlh9WjVjdh1gIicAS7ays=
466466
github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww=
467467
github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813 h1:Uc+IZ7gYqAf/rSGFplbWBSHaGolEQlNLgMgSE3ccnIQ=
@@ -541,8 +541,8 @@ github.com/go-task/slim-sprig/v3 v3.0.0 h1:sUs3vkvUymDpBKi3qH1YSqBQk9+9D/8M2mN1v
541541
github.com/go-task/slim-sprig/v3 v3.0.0/go.mod h1:W848ghGpv3Qj3dhTPRyJypKRiqCdHZiAzKg9hl15HA8=
542542
github.com/go-test/deep v1.0.4 h1:u2CU3YKy9I2pmu9pX0eq50wCgjfGIt539SqR7FbHiho=
543543
github.com/go-test/deep v1.0.4/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA=
544-
github.com/go-viper/mapstructure/v2 v2.2.1 h1:ZAaOCxANMuZx5RCeg0mBdEZk7DZasvvZIxtHqx8aGss=
545-
github.com/go-viper/mapstructure/v2 v2.2.1/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
544+
github.com/go-viper/mapstructure/v2 v2.3.0 h1:27XbWsHIqhbdR5TIC911OfYvgSaW93HM+dX7970Q7jk=
545+
github.com/go-viper/mapstructure/v2 v2.3.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
546546
github.com/go-webauthn/webauthn v0.9.4 h1:YxvHSqgUyc5AK2pZbqkWWR55qKeDPhP8zLDr6lpIc2g=
547547
github.com/go-webauthn/webauthn v0.9.4/go.mod h1:LqupCtzSef38FcxzaklmOn7AykGKhAhr9xlRbdbgnTw=
548548
github.com/go-webauthn/x v0.1.5 h1:V2TCzDU2TGLd0kSZOXdrqDVV5JB9ILnKxA9S53CSBw0=
@@ -1248,26 +1248,28 @@ github.com/smartcontractkit/chainlink-aptos v0.0.0-20250624090157-6b89f926f864 h
12481248
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250624090157-6b89f926f864/go.mod h1:+LMKso9gI5B78xdk3uP69/WrsJTcalbKFO63amJexsE=
12491249
github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgBc2xpDKBco/Q4h4ydl6+UUU=
12501250
github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08=
1251-
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250624142741-45c8e9237804 h1:qDo+4KX4T/OOI4W4yDikx8C4O+EBXli6Bc92Xe2lDPQ=
1252-
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250624142741-45c8e9237804/go.mod h1:Yw7X+vtR7A9MBI+q5b0k/H2PlKy6cQOa7vAp4cshz2s=
1251+
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250627133416-1d85eec09097 h1:LjXBMpQP79C8fX2mSbsgzEW0kbu6e+M0Qk25U5NbgdE=
1252+
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250627133416-1d85eec09097/go.mod h1:Yw7X+vtR7A9MBI+q5b0k/H2PlKy6cQOa7vAp4cshz2s=
12531253
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed h1:rjtXQLTCLa/+AmMwMTP5WwJUdPBeBAF3Ivwc1GXetBw=
12541254
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed/go.mod h1:k3/Z6AvwurPUlfuDFEonRbkkiTSgNSrtVNhJEWNlUZA=
1255-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250623175819-a17cdfe27dfd h1:5AjfcD6373yjIgKbSXHFcJFSEHno4Du1l67TT3Bo6vI=
1256-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250623175819-a17cdfe27dfd/go.mod h1:crejZI9ZpBHfhqghQOG9u7Sri7CBzEUYQ/0lVnN60yg=
1255+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628141348-0408d44794b6 h1:PfRhnjK+gJMuP3qn3mPx+UQ8DOD9EXHrxM595oCJDBk=
1256+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628141348-0408d44794b6/go.mod h1:+le3HV9mby9tXT7GE9U3Q0aSBwgmbButML9lNypfaLM=
12571257
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
12581258
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
1259+
github.com/smartcontractkit/chainlink-common/pkg/values v0.0.0-20250626141212-e50b2e7ffe2d h1:86gp4tIXRb6ccSrjcm4gV8iA5wJN6er3rJY9f2UxRLU=
1260+
github.com/smartcontractkit/chainlink-common/pkg/values v0.0.0-20250626141212-e50b2e7ffe2d/go.mod h1:QUEPHdSkH19Or+E1iMGG+rDQ6jpCTIbm//9Osa6MXDE=
12591261
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250604171706-a98fa6515eae h1:BmqiIDbA9FB/uOCOHi/shgL7P0XmjFxhfRtJHdKPLE4=
12601262
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250604171706-a98fa6515eae/go.mod h1:2MggrMtbhqr0u4U2pcYa21lvAtvaeSawjxdIy1ytHWE=
1261-
github.com/smartcontractkit/chainlink-deployments-framework v0.14.0 h1:z2ugGY+0l35NDpCZC3eleQ8FPPh9Krgnu4CBC101dv0=
1262-
github.com/smartcontractkit/chainlink-deployments-framework v0.14.0/go.mod h1:hsgPjMaJsmWo6x2HCPMYnzjhTZ4K7J3RkTYKQ8lkkUw=
1263-
github.com/smartcontractkit/chainlink-evm v0.0.0-20250618173856-d731d7e7468e h1:QBua0Vz42fC3nwzGnaAcUwTp+EnJp5sqiUDjud1UnwE=
1264-
github.com/smartcontractkit/chainlink-evm v0.0.0-20250618173856-d731d7e7468e/go.mod h1:GlSY0cLuXOdaZP8+7pQTezPUwJBW+ExMb5CGby4GGSU=
1263+
github.com/smartcontractkit/chainlink-deployments-framework v0.15.0 h1:uSHuru/VuNLKTUOsN7R6UkweI8GAVP8VJMsWljzaDvY=
1264+
github.com/smartcontractkit/chainlink-deployments-framework v0.15.0/go.mod h1:U4vWLp0dTmYgiN3Y7BXasDfM8NF3ZTIhDo5NjM+7RhQ=
1265+
github.com/smartcontractkit/chainlink-evm v0.0.0-20250627135735-93e3b09aec5a h1:IYEy2gpMQRxO3HfuxEBIrfTFiMYTPt/6qhItUnnfIyc=
1266+
github.com/smartcontractkit/chainlink-evm v0.0.0-20250627135735-93e3b09aec5a/go.mod h1:LBBGlJSsxbMV71NJY79TeRZ0oZDFLB45h5pjGVnCjJ0=
12651267
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=
12661268
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135/go.mod h1:NkvE4iQgiT7dMCP6U3xPELHhWhN5Xr6rHC0axRebyMU=
12671269
github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250623155929-df514c92ffe1 h1:cy6V45uUMh/Ri28QR3wIcdLETcYQEAo06F7Dh40O5BA=
12681270
github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250623155929-df514c92ffe1/go.mod h1:Kb8f+wt2YmBdD0PfbsC9bDhdUG/Y8sqUkzAvC2Dn8/M=
1269-
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250616180023-87b70c08d7c0 h1:OpFlG2f+LXsDp3cejSQju2rmoNsxBlhgrwXMIsk72IA=
1270-
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250616180023-87b70c08d7c0/go.mod h1:X+a4k2a+2G2/yeAaRQMCTLmlhNdQYAeN6v+ZpLzRZww=
1271+
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250627121608-e7b52913fae2 h1:WRwVcv2IW59subaJDNl6B+N4OkZiAO7U2e9001XSw7c=
1272+
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250627121608-e7b52913fae2/go.mod h1:+pRGfDej1r7cHMs1dYmuyPuOZzYB9Q+PKu0FvZOYlmw=
12711273
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20250618135814-7e3f79ab707e h1:LRT+PltY99+hxZAJn+4nyTfqGVNEM1S6FJ675B9BtJo=
12721274
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20250618135814-7e3f79ab707e/go.mod h1:jo+cUqNcHwN8IF7SInQNXDZ8qzBsyMpnLdYbDswviFc=
12731275
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250522110034-65c54665034a h1:O28vgyHM7QF1YLg1BwkQSIbOYA+t0RiH9+b+k90GPG8=
@@ -1296,12 +1298,12 @@ github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250528121202-2925
12961298
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250528121202-292529af39df/go.mod h1:EQl7VcrSvpSNOL8qWkc2CV/2cOII5CIkKTeIqzqCWKk=
12971299
github.com/smartcontractkit/chainlink-tron/relayer/gotron-sdk v0.0.5-0.20250422175525-b7575d96bd4d h1:qLmSOOtB/Ogn79eIDkuujOu8M5Jd747V1H7Brk/nTvo=
12981300
github.com/smartcontractkit/chainlink-tron/relayer/gotron-sdk v0.0.5-0.20250422175525-b7575d96bd4d/go.mod h1:4WhGgCA0smBbBud5mK+jnDb2wwndMvoqaWBJ3OV/7Bw=
1299-
github.com/smartcontractkit/chainlink/deployment v0.0.0-20250625173516-9f25766a5545 h1:Pz82AKRcIxSCQ+Ap2Sar2al6Bvt9IxraSEhvVStBc9E=
1300-
github.com/smartcontractkit/chainlink/deployment v0.0.0-20250625173516-9f25766a5545/go.mod h1:Hg8ffbfqKuv18wN1mK9f8hEw3QVLWETzDMAEBUAtbfc=
1301-
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20250625173516-9f25766a5545 h1:vQ5RmmQWqN21KFD9Wl0c1ulMh6M6NUKar5muL3FpNPk=
1302-
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20250625173516-9f25766a5545/go.mod h1:HgAt/qJQ4y/winC2AdyhcoA+5N/mOjXyU2YAVOOe4tw=
1303-
github.com/smartcontractkit/chainlink/v2 v2.23.2-por-beta.1.0.20250625173516-9f25766a5545 h1:GGumz63xqr78vdQhgvoussxGhLqU/UyucSWLob6JUFA=
1304-
github.com/smartcontractkit/chainlink/v2 v2.23.2-por-beta.1.0.20250625173516-9f25766a5545/go.mod h1:LGf6i9xB4bnOvATMH3WFUBqrE/VYfd2m5DqQ80zwLw4=
1301+
github.com/smartcontractkit/chainlink/deployment v0.0.0-20250628170146-5b888622e78c h1:bpiwu52oetaYx1zgHAZgWYj9JjXWJTytdlJW+1a3BYE=
1302+
github.com/smartcontractkit/chainlink/deployment v0.0.0-20250628170146-5b888622e78c/go.mod h1:7W5DWWGu5I86DQCSw7ElAX+04zF8+fcytOGBJzJue4c=
1303+
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20250628170146-5b888622e78c h1:L5kEtM3uz7ViMv+41q8Z1ccVDZ/t6XHo5VjRsLIaPi4=
1304+
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20250628170146-5b888622e78c/go.mod h1:H/rUAaT46FxNPmY50lN7Gi9m03G8OjSBz5K9sP0XeCk=
1305+
github.com/smartcontractkit/chainlink/v2 v2.23.2-por-beta.1.0.20250628170146-5b888622e78c h1:rMk6tPBvhsXk6i3Avf3w8k5JNvway68cXQGYOvkefUU=
1306+
github.com/smartcontractkit/chainlink/v2 v2.23.2-por-beta.1.0.20250628170146-5b888622e78c/go.mod h1:X91hHY9iA2X5dxELy/fa1ceZzxTATDxdwG1eKkdeZtc=
13051307
github.com/smartcontractkit/freeport v0.1.1 h1:B5fhEtmgomdIhw03uPVbVTP6oPv27fBhZsoZZMSIS8I=
13061308
github.com/smartcontractkit/freeport v0.1.1/go.mod h1:T4zH9R8R8lVWKfU7tUvYz2o2jMv1OpGCdpY2j2QZXzU=
13071309
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 h1:12ijqMM9tvYVEm+nR826WsrNi6zCKpwBhuApq127wHs=

0 commit comments

Comments
 (0)