Skip to content

Commit 16bf64f

Browse files
authored
bump common, rename EVMRelayer -> EVMService (#45)
* bump common, rename EVMRelayer -> EVMService * bump common * bump common
1 parent 2910142 commit 16bf64f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/prometheus/client_model v0.6.1
2020
github.com/prometheus/common v0.63.0
2121
github.com/shopspring/decimal v1.4.0
22-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250423184741-8b59e5dd60e1
22+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250429205337-7ee5f91ed065
2323
github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250408161305-721208f43882
2424
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250421203809-e0f5602c126c
2525
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20250421203809-e0f5602c126c

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -612,8 +612,8 @@ github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546/go.mod h1:TrYk7fJV
612612
github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=
613613
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
614614
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
615-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250423184741-8b59e5dd60e1 h1:qYv7f++PMP3mEAd1QYLmBmyqKr0036Z1XqIrr19QpC8=
616-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250423184741-8b59e5dd60e1/go.mod h1:vHs/mPpAztdKJtzRKLnmLinmpS78fBh9sAuyKqQrQ+I=
615+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250429205337-7ee5f91ed065 h1:8UsqHv+LkrO2KdXbfZd5qejsy4Z4Xz5/DNVfUGT6gTM=
616+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250429205337-7ee5f91ed065/go.mod h1:vHs/mPpAztdKJtzRKLnmLinmpS78fBh9sAuyKqQrQ+I=
617617
github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250408161305-721208f43882 h1:teDwTZ0GXlxQ65lgVbB44ffbIHlEh4N8wW7zav4lt9c=
618618
github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250408161305-721208f43882/go.mod h1:NVoJQoPYr6BorpaXTusoIH1IYTySCmanQ8Q1yv3mNh4=
619619
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250421203809-e0f5602c126c h1:LYnQDyMoqj0R38IlsCCjPDuQMVW4AUbw4manX+56WC4=

pkg/writetarget/write_target.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ type writeTarget struct {
8282
cs commontypes.ChainService
8383
cr commontypes.ContractReader
8484
cw commontypes.ContractWriter
85-
evm commontypes.EVMRelayer
85+
evm commontypes.EVMService
8686
configValidateFn func(request capabilities.CapabilityRequest) (string, error)
8787

8888
nodeAddress string
@@ -105,7 +105,7 @@ type WriteTargetOpts struct {
105105
ChainService commontypes.ChainService
106106
ContractReader commontypes.ContractReader
107107
ChainWriter commontypes.ContractWriter
108-
EVMRelayer commontypes.EVMRelayer
108+
EVMService commontypes.EVMService
109109
ConfigValidateFn func(request capabilities.CapabilityRequest) (string, error)
110110

111111
NodeAddress string
@@ -156,7 +156,7 @@ func NewWriteTarget(opts WriteTargetOpts) capabilities.TargetCapability {
156156
opts.ChainService,
157157
opts.ContractReader,
158158
opts.ChainWriter,
159-
opts.EVMRelayer,
159+
opts.EVMService,
160160
opts.ConfigValidateFn,
161161
opts.NodeAddress,
162162
opts.ForwarderAddress,

0 commit comments

Comments
 (0)