Skip to content

Commit 4609f1a

Browse files
authored
move config types (smartcontractkit#16747)
1 parent 1ba5714 commit 4609f1a

File tree

18 files changed

+37
-106
lines changed

18 files changed

+37
-106
lines changed

core/scripts/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ require (
3232
github.com/prometheus/client_golang v1.21.0
3333
github.com/shopspring/decimal v1.4.0
3434
github.com/smartcontractkit/chainlink-automation v0.8.1
35-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21
35+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670
3636
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4
3737
github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250311180911-0754238e140b
3838
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.22

core/scripts/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1122,8 +1122,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5 h1
11221122
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5/go.mod h1:AhqYIeGF2k94J+/gzRx5dQttlgUdZid2N6E4HlHVIVA=
11231123
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0 h1:q19ElpBhjcA8yklJnHnNA04P9W3R7X+J2NTc1ZJvN4Q=
11241124
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0/go.mod h1:2Y6JRpvj9EkgKgymvenuqCnra07+NYVB6+0rQGETSGA=
1125-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21 h1:Z+IZ7znVnD2idSmZAT72ilj13rKYLxVt4GVBOCNOPUc=
1126-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
1125+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670 h1:A4yNrHkw6PiLIXRB1HmmTSXpUzoSThM1tkXZ/NrzXf0=
1126+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
11271127
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4 h1:fNKO/YvUHiNASP7yrboYHQHqZPe+gPLxlv9UhBHdOxc=
11281128
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4/go.mod h1:2yUpKW1/jFxpozO/Zkh3fKDzI0jthXoEcU2xuDq+vlo=
11291129
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=

core/store/models/secrets.go

+12-46
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,24 @@
11
package models
22

33
import (
4-
"encoding"
5-
"fmt"
6-
"net/url"
7-
8-
commonconfig "github.com/smartcontractkit/chainlink-common/pkg/config"
9-
)
10-
11-
const redacted = "xxxxx"
12-
13-
var (
14-
_ fmt.Stringer = (*Secret)(nil)
15-
_ encoding.TextMarshaler = (*Secret)(nil)
4+
"github.com/smartcontractkit/chainlink-common/pkg/config"
165
)
176

187
// Secret is a string that formats and encodes redacted, as "xxxxx".
19-
//
20-
// Use Value to get the actual secret.
21-
type Secret string
22-
23-
func NewSecret(s string) *Secret { return (*Secret)(&s) }
24-
25-
func (s Secret) String() string { return redacted }
26-
27-
func (s Secret) GoString() string { return redacted }
8+
// Deprecated
9+
type Secret = config.SecretString
2810

29-
func (s Secret) MarshalText() ([]byte, error) { return []byte(redacted), nil }
30-
31-
var (
32-
_ fmt.Stringer = (*SecretURL)(nil)
33-
_ encoding.TextMarshaler = (*SecretURL)(nil)
34-
_ encoding.TextUnmarshaler = (*SecretURL)(nil)
35-
)
11+
// Deprecated
12+
func NewSecret(s string) *Secret { return config.NewSecretString(s) }
3613

3714
// SecretURL is a URL that formats and encodes redacted, as "xxxxx".
38-
type SecretURL commonconfig.URL
39-
40-
func NewSecretURL(u *commonconfig.URL) *SecretURL { return (*SecretURL)(u) }
41-
42-
func MustSecretURL(u string) *SecretURL { return NewSecretURL(commonconfig.MustParseURL(u)) }
43-
44-
func (s *SecretURL) String() string { return redacted }
45-
46-
func (s *SecretURL) GoString() string { return redacted }
47-
48-
func (s *SecretURL) URL() *url.URL { return (*commonconfig.URL)(s).URL() }
15+
// Deprecated
16+
type SecretURL = config.SecretURL
4917

50-
func (s *SecretURL) MarshalText() ([]byte, error) { return []byte(redacted), nil }
18+
// Deprecated
19+
func NewSecretURL(u *config.URL) *config.SecretURL { return (*config.SecretURL)(u) }
5120

52-
func (s *SecretURL) UnmarshalText(text []byte) error {
53-
if err := (*commonconfig.URL)(s).UnmarshalText(text); err != nil {
54-
//opt: if errors.Is(url.Error), just redact the err.URL field?
55-
return fmt.Errorf("failed to parse url: %s", redacted)
56-
}
57-
return nil
21+
// Deprecated
22+
func MustSecretURL(u string) *config.SecretURL {
23+
return NewSecretURL(config.MustParseURL(u))
5824
}

core/store/models/secrets_test.go

-37
This file was deleted.

deployment/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ require (
3333
github.com/smartcontractkit/chain-selectors v1.0.44
3434
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5
3535
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0
36-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21
36+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670
3737
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250211162441-3d6cea220efb
3838
github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250311180911-0754238e140b
3939
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0

deployment/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1168,8 +1168,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5 h1
11681168
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5/go.mod h1:AhqYIeGF2k94J+/gzRx5dQttlgUdZid2N6E4HlHVIVA=
11691169
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0 h1:q19ElpBhjcA8yklJnHnNA04P9W3R7X+J2NTc1ZJvN4Q=
11701170
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0/go.mod h1:2Y6JRpvj9EkgKgymvenuqCnra07+NYVB6+0rQGETSGA=
1171-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21 h1:Z+IZ7znVnD2idSmZAT72ilj13rKYLxVt4GVBOCNOPUc=
1172-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
1171+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670 h1:A4yNrHkw6PiLIXRB1HmmTSXpUzoSThM1tkXZ/NrzXf0=
1172+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
11731173
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4 h1:fNKO/YvUHiNASP7yrboYHQHqZPe+gPLxlv9UhBHdOxc=
11741174
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4/go.mod h1:2yUpKW1/jFxpozO/Zkh3fKDzI0jthXoEcU2xuDq+vlo=
11751175
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=

go.mod

+1-1
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-20250312142421-a8f5bd293fe5
7878
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250302020946-0f2d5f4a8326
79-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21
79+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670
8080
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4
8181
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135
8282
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250227163723-3c71fefea680

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1009,8 +1009,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5 h1
10091009
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5/go.mod h1:AhqYIeGF2k94J+/gzRx5dQttlgUdZid2N6E4HlHVIVA=
10101010
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250302020946-0f2d5f4a8326 h1:KRL3qg6ceUxB+F66UOF6Le4fDylf5UkDb5ii9yjAtbk=
10111011
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250302020946-0f2d5f4a8326/go.mod h1:ARwstg2HUGjtuZgG/IwxpYk4QdQtcqX69V95FUtlHdE=
1012-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21 h1:Z+IZ7znVnD2idSmZAT72ilj13rKYLxVt4GVBOCNOPUc=
1013-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
1012+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670 h1:A4yNrHkw6PiLIXRB1HmmTSXpUzoSThM1tkXZ/NrzXf0=
1013+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
10141014
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4 h1:fNKO/YvUHiNASP7yrboYHQHqZPe+gPLxlv9UhBHdOxc=
10151015
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4/go.mod h1:2yUpKW1/jFxpozO/Zkh3fKDzI0jthXoEcU2xuDq+vlo=
10161016
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=

integration-tests/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ require (
4545
github.com/smartcontractkit/chain-selectors v1.0.44
4646
github.com/smartcontractkit/chainlink-automation v0.8.1
4747
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5
48-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21
48+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670
4949
github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250311180911-0754238e140b
5050
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0
5151
github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.5

integration-tests/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1426,8 +1426,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5 h1
14261426
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5/go.mod h1:AhqYIeGF2k94J+/gzRx5dQttlgUdZid2N6E4HlHVIVA=
14271427
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0 h1:q19ElpBhjcA8yklJnHnNA04P9W3R7X+J2NTc1ZJvN4Q=
14281428
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0/go.mod h1:2Y6JRpvj9EkgKgymvenuqCnra07+NYVB6+0rQGETSGA=
1429-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21 h1:Z+IZ7znVnD2idSmZAT72ilj13rKYLxVt4GVBOCNOPUc=
1430-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
1429+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670 h1:A4yNrHkw6PiLIXRB1HmmTSXpUzoSThM1tkXZ/NrzXf0=
1430+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
14311431
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4 h1:fNKO/YvUHiNASP7yrboYHQHqZPe+gPLxlv9UhBHdOxc=
14321432
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4/go.mod h1:2yUpKW1/jFxpozO/Zkh3fKDzI0jthXoEcU2xuDq+vlo=
14331433
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=

integration-tests/load/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ require (
2727
github.com/slack-go/slack v0.15.0
2828
github.com/smartcontractkit/chain-selectors v1.0.44
2929
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5
30-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21
30+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670
3131
github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250311180911-0754238e140b
3232
github.com/smartcontractkit/chainlink-testing-framework/lib v1.52.0
3333
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.0

integration-tests/load/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1411,8 +1411,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5 h1
14111411
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5/go.mod h1:AhqYIeGF2k94J+/gzRx5dQttlgUdZid2N6E4HlHVIVA=
14121412
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0 h1:q19ElpBhjcA8yklJnHnNA04P9W3R7X+J2NTc1ZJvN4Q=
14131413
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0/go.mod h1:2Y6JRpvj9EkgKgymvenuqCnra07+NYVB6+0rQGETSGA=
1414-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21 h1:Z+IZ7znVnD2idSmZAT72ilj13rKYLxVt4GVBOCNOPUc=
1415-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
1414+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670 h1:A4yNrHkw6PiLIXRB1HmmTSXpUzoSThM1tkXZ/NrzXf0=
1415+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
14161416
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4 h1:fNKO/YvUHiNASP7yrboYHQHqZPe+gPLxlv9UhBHdOxc=
14171417
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4/go.mod h1:2yUpKW1/jFxpozO/Zkh3fKDzI0jthXoEcU2xuDq+vlo=
14181418
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=

plugins/loop_registry.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88

99
"github.com/hashicorp/consul/sdk/freeport"
1010

11+
commonconfig "github.com/smartcontractkit/chainlink-common/pkg/config"
1112
"github.com/smartcontractkit/chainlink-common/pkg/logger"
1213
"github.com/smartcontractkit/chainlink-common/pkg/loop"
1314

@@ -74,7 +75,7 @@ func (m *LoopRegistry) Register(id string) (*RegisteredLoop, error) {
7475

7576
if m.cfgDatabase != nil {
7677
dbURL := m.cfgDatabase.URL()
77-
envCfg.DatabaseURL = &dbURL
78+
envCfg.DatabaseURL = (*commonconfig.SecretURL)(&dbURL)
7879
envCfg.DatabaseIdleInTxSessionTimeout = m.cfgDatabase.DefaultIdleInTxSessionTimeout()
7980
envCfg.DatabaseLockTimeout = m.cfgDatabase.DefaultLockTimeout()
8081
envCfg.DatabaseQueryTimeout = m.cfgDatabase.DefaultQueryTimeout()

plugins/loop_registry_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77

88
"github.com/stretchr/testify/require"
99

10+
commonconfig "github.com/smartcontractkit/chainlink-common/pkg/config"
1011
"github.com/smartcontractkit/chainlink-common/pkg/loop"
1112

1213
"github.com/smartcontractkit/chainlink/v2/core/config"
@@ -113,7 +114,7 @@ func TestLoopRegistry_Register(t *testing.T) {
113114

114115
envCfg := registeredLoop.EnvCfg
115116

116-
require.Equal(t, &url.URL{Scheme: "fake", Host: "database.url"}, envCfg.DatabaseURL)
117+
require.Equal(t, (*commonconfig.SecretURL)(&url.URL{Scheme: "fake", Host: "database.url"}), envCfg.DatabaseURL)
117118
require.Equal(t, time.Hour, envCfg.DatabaseIdleInTxSessionTimeout)
118119
require.Equal(t, time.Minute, envCfg.DatabaseLockTimeout)
119120
require.Equal(t, time.Second, envCfg.DatabaseQueryTimeout)

system-tests/lib/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
github.com/pelletier/go-toml/v2 v2.2.3
1919
github.com/pkg/errors v0.9.1
2020
github.com/rs/zerolog v1.33.0
21-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21
21+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670
2222
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0
2323
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.8
2424
github.com/smartcontractkit/chainlink-testing-framework/lib v1.52.0

system-tests/lib/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1156,8 +1156,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5 h1
11561156
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5/go.mod h1:AhqYIeGF2k94J+/gzRx5dQttlgUdZid2N6E4HlHVIVA=
11571157
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0 h1:q19ElpBhjcA8yklJnHnNA04P9W3R7X+J2NTc1ZJvN4Q=
11581158
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0/go.mod h1:2Y6JRpvj9EkgKgymvenuqCnra07+NYVB6+0rQGETSGA=
1159-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21 h1:Z+IZ7znVnD2idSmZAT72ilj13rKYLxVt4GVBOCNOPUc=
1160-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
1159+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670 h1:A4yNrHkw6PiLIXRB1HmmTSXpUzoSThM1tkXZ/NrzXf0=
1160+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
11611161
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4 h1:fNKO/YvUHiNASP7yrboYHQHqZPe+gPLxlv9UhBHdOxc=
11621162
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4/go.mod h1:2yUpKW1/jFxpozO/Zkh3fKDzI0jthXoEcU2xuDq+vlo=
11631163
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=

system-tests/tests/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ require (
343343
github.com/smartcontractkit/chainlink-automation v0.8.1 // indirect
344344
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5 // indirect
345345
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0 // indirect
346-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21 // indirect
346+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670 // indirect
347347
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4 // indirect
348348
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect
349349
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250227163723-3c71fefea680 // indirect

system-tests/tests/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1156,8 +1156,8 @@ github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5 h1
11561156
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250312142421-a8f5bd293fe5/go.mod h1:AhqYIeGF2k94J+/gzRx5dQttlgUdZid2N6E4HlHVIVA=
11571157
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0 h1:q19ElpBhjcA8yklJnHnNA04P9W3R7X+J2NTc1ZJvN4Q=
11581158
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250307105933-7912a5e97ad0/go.mod h1:2Y6JRpvj9EkgKgymvenuqCnra07+NYVB6+0rQGETSGA=
1159-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21 h1:Z+IZ7znVnD2idSmZAT72ilj13rKYLxVt4GVBOCNOPUc=
1160-
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250310180230-58f4a9810e21/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
1159+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670 h1:A4yNrHkw6PiLIXRB1HmmTSXpUzoSThM1tkXZ/NrzXf0=
1160+
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250312183113-15c7c2d9d670/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
11611161
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4 h1:fNKO/YvUHiNASP7yrboYHQHqZPe+gPLxlv9UhBHdOxc=
11621162
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250312151008-ab5d35236de4/go.mod h1:2yUpKW1/jFxpozO/Zkh3fKDzI0jthXoEcU2xuDq+vlo=
11631163
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=

0 commit comments

Comments
 (0)