Skip to content

Commit dc4949a

Browse files
committed
use common instead of chainlink-aptos
1 parent f48e25e commit dc4949a

17 files changed

Lines changed: 153 additions & 120 deletions

File tree

core/capabilities/ccip/configs/aptos/chain_writer.go

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,27 @@ package aptosconfig
33
import (
44
"fmt"
55

6-
"github.com/smartcontractkit/chainlink-ccip/pkg/consts"
7-
8-
"github.com/smartcontractkit/chainlink-aptos/relayer/chainreader/config"
9-
"github.com/smartcontractkit/chainlink-aptos/relayer/chainwriter"
106
"github.com/smartcontractkit/chainlink-aptos/relayer/utils"
7+
"github.com/smartcontractkit/chainlink-ccip/pkg/consts"
8+
"github.com/smartcontractkit/chainlink-common/pkg/types/aptos"
119
)
1210

13-
func GetChainWriterConfig(publicKeyStr string) (chainwriter.ChainWriterConfig, error) {
11+
func GetChainWriterConfig(publicKeyStr string) (aptos.ContractWriterConfig, error) {
1412
fromAddress, err := utils.HexPublicKeyToAddress(publicKeyStr)
1513
if err != nil {
16-
return chainwriter.ChainWriterConfig{}, fmt.Errorf("failed to parse Aptos address from public key %s: %w", publicKeyStr, err)
14+
return aptos.ContractWriterConfig{}, fmt.Errorf("failed to parse Aptos address from public key %s: %w", publicKeyStr, err)
1715
}
1816

19-
return chainwriter.ChainWriterConfig{
20-
Modules: map[string]*chainwriter.ChainWriterModule{
17+
return aptos.ContractWriterConfig{
18+
Modules: map[string]*aptos.ContractWriterModule{
2119
consts.ContractNameOffRamp: {
2220
Name: "offramp",
23-
Functions: map[string]*chainwriter.ChainWriterFunction{
21+
Functions: map[string]*aptos.ContractWriterFunction{
2422
consts.MethodCommit: {
2523
Name: "commit",
2624
PublicKey: publicKeyStr,
2725
FromAddress: fromAddress.String(),
28-
Params: []config.AptosFunctionParam{
26+
Params: []aptos.FunctionParam{
2927
{
3028
Name: "ReportContext",
3129
Type: "vector<vector<u8>>",
@@ -47,7 +45,7 @@ func GetChainWriterConfig(publicKeyStr string) (chainwriter.ChainWriterConfig, e
4745
Name: "execute",
4846
PublicKey: publicKeyStr,
4947
FromAddress: fromAddress.String(),
50-
Params: []config.AptosFunctionParam{
48+
Params: []aptos.FunctionParam{
5149
{
5250
Name: "ReportContext",
5351
Type: "vector<vector<u8>>",
@@ -63,6 +61,6 @@ func GetChainWriterConfig(publicKeyStr string) (chainwriter.ChainWriterConfig, e
6361
},
6462
},
6563
},
66-
FeeStrategy: chainwriter.DefaultFeeStrategy,
64+
FeeStrategy: aptos.DefaultFeeStrategy,
6765
}, nil
6866
}

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

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
package aptosconfig
22

33
import (
4-
"github.com/smartcontractkit/chainlink-aptos/relayer/chainreader/config"
54
"github.com/smartcontractkit/chainlink-ccip/pkg/consts"
5+
"github.com/smartcontractkit/chainlink-common/pkg/types/aptos"
66
)
77

8-
func GetChainReaderConfig() (config.ChainReaderConfig, error) {
9-
return config.ChainReaderConfig{
8+
func GetChainReaderConfig() (aptos.ContractReaderConfig, error) {
9+
return aptos.ContractReaderConfig{
1010
IsLoopPlugin: true,
11-
Modules: map[string]*config.ChainReaderModule{
11+
Modules: map[string]*aptos.ContractReaderModule{
1212
consts.ContractNameRMNRemote: {
1313
Name: "rmn_remote",
14-
Functions: map[string]*config.ChainReaderFunction{
14+
Functions: map[string]*aptos.ContractReaderFunction{
1515
consts.MethodNameGetReportDigestHeader: {
1616
Name: "get_report_digest_header",
1717
},
@@ -27,18 +27,18 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
2727
},
2828
consts.ContractNameRMNProxy: {
2929
Name: "rmn_remote",
30-
Functions: map[string]*config.ChainReaderFunction{
30+
Functions: map[string]*aptos.ContractReaderFunction{
3131
consts.MethodNameGetARM: {
3232
Name: "get_arm",
3333
},
3434
},
3535
},
3636
consts.ContractNameFeeQuoter: {
3737
Name: "fee_quoter",
38-
Functions: map[string]*config.ChainReaderFunction{
38+
Functions: map[string]*aptos.ContractReaderFunction{
3939
consts.MethodNameFeeQuoterGetTokenPrice: {
4040
Name: "get_token_price",
41-
Params: []config.AptosFunctionParam{
41+
Params: []aptos.FunctionParam{
4242
{
4343
Name: "token",
4444
Type: "address",
@@ -48,7 +48,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
4848
},
4949
consts.MethodNameFeeQuoterGetTokenPrices: {
5050
Name: "get_token_prices",
51-
Params: []config.AptosFunctionParam{
51+
Params: []aptos.FunctionParam{
5252
{
5353
Name: "tokens",
5454
Type: "vector<address>",
@@ -61,7 +61,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
6161
},
6262
consts.MethodNameGetFeePriceUpdate: {
6363
Name: "get_dest_chain_gas_price",
64-
Params: []config.AptosFunctionParam{
64+
Params: []aptos.FunctionParam{
6565
{
6666
Name: "destChainSelector",
6767
Type: "u64",
@@ -73,10 +73,10 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
7373
},
7474
consts.ContractNameOffRamp: {
7575
Name: "offramp",
76-
Functions: map[string]*config.ChainReaderFunction{
76+
Functions: map[string]*aptos.ContractReaderFunction{
7777
consts.MethodNameGetExecutionState: {
7878
Name: "get_execution_state",
79-
Params: []config.AptosFunctionParam{
79+
Params: []aptos.FunctionParam{
8080
{
8181
Name: "sourceChainSelector",
8282
Type: "u64",
@@ -91,7 +91,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
9191
},
9292
consts.MethodNameGetMerkleRoot: {
9393
Name: "get_merkle_root",
94-
Params: []config.AptosFunctionParam{
94+
Params: []aptos.FunctionParam{
9595
{
9696
Name: "root",
9797
Type: "vector<u8>",
@@ -101,7 +101,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
101101
},
102102
consts.MethodNameOffRampLatestConfigDetails: {
103103
Name: "latest_config_details",
104-
Params: []config.AptosFunctionParam{
104+
Params: []aptos.FunctionParam{
105105
{
106106
Name: "ocrPluginType",
107107
Type: "u8",
@@ -123,7 +123,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
123123
},
124124
consts.MethodNameGetSourceChainConfig: {
125125
Name: "get_source_chain_config",
126-
Params: []config.AptosFunctionParam{
126+
Params: []aptos.FunctionParam{
127127
{
128128
Name: "sourceChainSelector",
129129
Type: "u64",
@@ -132,12 +132,12 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
132132
},
133133
},
134134
},
135-
Events: map[string]*config.ChainReaderEvent{
135+
Events: map[string]*aptos.ContractReaderEvent{
136136
consts.EventNameExecutionStateChanged: {
137137
EventHandleStructName: "OffRampState",
138138
EventHandleFieldName: "execution_state_changed_events",
139139
EventAccountAddress: "offramp::get_state_address",
140-
EventFieldRenames: map[string]config.RenamedField{
140+
EventFieldRenames: map[string]aptos.RenamedField{
141141
"source_chain_selector": {
142142
NewName: "SourceChainSelector",
143143
},
@@ -162,10 +162,10 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
162162
EventHandleStructName: "OffRampState",
163163
EventHandleFieldName: "commit_report_accepted_events",
164164
EventAccountAddress: "offramp::get_state_address",
165-
EventFieldRenames: map[string]config.RenamedField{
165+
EventFieldRenames: map[string]aptos.RenamedField{
166166
"blessed_merkle_roots": {
167167
NewName: "BlessedMerkleRoots",
168-
SubFieldRenames: map[string]config.RenamedField{
168+
SubFieldRenames: map[string]aptos.RenamedField{
169169
"source_chain_selector": {
170170
NewName: "SourceChainSelector",
171171
},
@@ -185,7 +185,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
185185
},
186186
"unblessed_merkle_roots": {
187187
NewName: "UnblessedMerkleRoots",
188-
SubFieldRenames: map[string]config.RenamedField{
188+
SubFieldRenames: map[string]aptos.RenamedField{
189189
"source_chain_selector": {
190190
NewName: "SourceChainSelector",
191191
},
@@ -205,10 +205,10 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
205205
},
206206
"price_updates": {
207207
NewName: "PriceUpdates",
208-
SubFieldRenames: map[string]config.RenamedField{
208+
SubFieldRenames: map[string]aptos.RenamedField{
209209
"token_price_updates": {
210210
NewName: "TokenPriceUpdates",
211-
SubFieldRenames: map[string]config.RenamedField{
211+
SubFieldRenames: map[string]aptos.RenamedField{
212212
"source_token": {
213213
NewName: "SourceToken",
214214
},
@@ -219,7 +219,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
219219
},
220220
"gas_price_updates": {
221221
NewName: "GasPriceUpdates",
222-
SubFieldRenames: map[string]config.RenamedField{
222+
SubFieldRenames: map[string]aptos.RenamedField{
223223
"dest_chain_selector": {
224224
NewName: "DestChainSelector",
225225
},
@@ -236,7 +236,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
236236
EventHandleStructName: "OffRampState",
237237
EventHandleFieldName: "ocr3_base_state.config_set_events",
238238
EventAccountAddress: "offramp::get_state_address",
239-
EventFieldRenames: map[string]config.RenamedField{
239+
EventFieldRenames: map[string]aptos.RenamedField{
240240
"ocr_plugin_type": {
241241
NewName: "OcrPluginType",
242242
},
@@ -258,13 +258,13 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
258258
EventHandleStructName: "OffRampState",
259259
EventHandleFieldName: "source_chain_config_set_events",
260260
EventAccountAddress: "offramp::get_state_address",
261-
EventFieldRenames: map[string]config.RenamedField{
261+
EventFieldRenames: map[string]aptos.RenamedField{
262262
"source_chain_selector": {
263263
NewName: "SourceChainSelector",
264264
},
265265
"source_chain_config": {
266266
NewName: "SourceChainConfig",
267-
SubFieldRenames: map[string]config.RenamedField{
267+
SubFieldRenames: map[string]aptos.RenamedField{
268268
"router": {NewName: "Router"},
269269
"is_enabled": {NewName: "IsEnabled"},
270270
"min_seq_nr": {NewName: "MinSeqNr"},
@@ -278,7 +278,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
278278
},
279279
consts.ContractNameOnRamp: {
280280
Name: "onramp",
281-
Functions: map[string]*config.ChainReaderFunction{
281+
Functions: map[string]*aptos.ContractReaderFunction{
282282
consts.MethodNameOnRampGetDynamicConfig: {
283283
Name: "get_dynamic_config",
284284
},
@@ -287,7 +287,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
287287
},
288288
consts.MethodNameOnRampGetDestChainConfig: {
289289
Name: "get_dest_chain_config",
290-
Params: []config.AptosFunctionParam{
290+
Params: []aptos.FunctionParam{
291291
{
292292
Name: "destChainSelector",
293293
Type: "u64",
@@ -298,7 +298,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
298298
},
299299
consts.MethodNameGetExpectedNextSequenceNumber: {
300300
Name: "get_expected_next_sequence_number",
301-
Params: []config.AptosFunctionParam{
301+
Params: []aptos.FunctionParam{
302302
{
303303
Name: "destChainSelector",
304304
Type: "u64",
@@ -307,12 +307,12 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
307307
},
308308
},
309309
},
310-
Events: map[string]*config.ChainReaderEvent{
310+
Events: map[string]*aptos.ContractReaderEvent{
311311
consts.EventNameCCIPMessageSent: {
312312
EventHandleStructName: "OnRampState",
313313
EventHandleFieldName: "ccip_message_sent_events",
314314
EventAccountAddress: "onramp::get_state_address",
315-
EventFieldRenames: map[string]config.RenamedField{
315+
EventFieldRenames: map[string]aptos.RenamedField{
316316
"dest_chain_selector": {
317317
NewName: "DestChainSelector",
318318
SubFieldRenames: nil,
@@ -323,10 +323,10 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
323323
},
324324
"message": {
325325
NewName: "Message",
326-
SubFieldRenames: map[string]config.RenamedField{
326+
SubFieldRenames: map[string]aptos.RenamedField{
327327
"header": {
328328
NewName: "Header",
329-
SubFieldRenames: map[string]config.RenamedField{
329+
SubFieldRenames: map[string]aptos.RenamedField{
330330
"source_chain_selector": {
331331
NewName: "SourceChainSelector",
332332
},
@@ -367,7 +367,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
367367
},
368368
"token_amounts": {
369369
NewName: "TokenAmounts",
370-
SubFieldRenames: map[string]config.RenamedField{
370+
SubFieldRenames: map[string]aptos.RenamedField{
371371
"source_pool_address": {
372372
NewName: "SourcePoolAddress",
373373
},

core/scripts/go.mod

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/smartcontractkit/chainlink/core/scripts
22

3-
go 1.24.4
3+
go 1.24.5
4+
5+
toolchain go1.24.6
46

57
// Make sure we're working with the latest chainlink libs
68
replace github.com/smartcontractkit/chainlink/v2 => ../../
@@ -47,7 +49,7 @@ require (
4749
github.com/shopspring/decimal v1.4.0
4850
github.com/smartcontractkit/chainlink-automation v0.8.1
4951
github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250814153237-9a6c5a35e950
50-
github.com/smartcontractkit/chainlink-common v0.9.1-0.20250815142532-64e0a7965958
52+
github.com/smartcontractkit/chainlink-common v0.9.1-0.20250819194932-f52747b8ddbb
5153
github.com/smartcontractkit/chainlink-common/pkg/values v0.0.0-20250806152407-159881c7589c
5254
github.com/smartcontractkit/chainlink-data-streams v0.1.2
5355
github.com/smartcontractkit/chainlink-deployments-framework v0.25.0
@@ -273,7 +275,7 @@ require (
273275
github.com/go-playground/universal-translator v0.18.1 // indirect
274276
github.com/go-playground/validator/v10 v10.27.0 // indirect
275277
github.com/go-resty/resty/v2 v2.16.5 // indirect
276-
github.com/go-viper/mapstructure/v2 v2.3.0 // indirect
278+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
277279
github.com/go-webauthn/webauthn v0.9.4 // indirect
278280
github.com/go-webauthn/x v0.1.5 // indirect
279281
github.com/goccy/go-json v0.10.5 // indirect
@@ -462,7 +464,7 @@ require (
462464
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 // indirect
463465
github.com/smartcontractkit/ccip-owner-contracts v0.1.0 // indirect
464466
github.com/smartcontractkit/chain-selectors v1.0.67 // indirect
465-
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250818164129-fa2e60d95157 // indirect
467+
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250819195247-56ff4334efae // indirect
466468
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a // indirect
467469
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a // indirect
468470
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 // indirect
@@ -473,6 +475,7 @@ require (
473475
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20250717121125-2350c82883e2 // indirect
474476
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250729142306-508e798f6a5d // indirect
475477
github.com/smartcontractkit/chainlink-protos/billing/go v0.0.0-20250722225531-876fd6b94976 // indirect
478+
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20250819150450-95ef563f6e6d // indirect
476479
github.com/smartcontractkit/chainlink-protos/job-distributor v0.13.1 // indirect
477480
github.com/smartcontractkit/chainlink-protos/orchestrator v0.8.1 // indirect
478481
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6 // indirect

core/scripts/go.sum

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -683,8 +683,8 @@ github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg78
683683
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI=
684684
github.com/go-task/slim-sprig/v3 v3.0.0 h1:sUs3vkvUymDpBKi3qH1YSqBQk9+9D/8M2mN1vB6EwHI=
685685
github.com/go-task/slim-sprig/v3 v3.0.0/go.mod h1:W848ghGpv3Qj3dhTPRyJypKRiqCdHZiAzKg9hl15HA8=
686-
github.com/go-viper/mapstructure/v2 v2.3.0 h1:27XbWsHIqhbdR5TIC911OfYvgSaW93HM+dX7970Q7jk=
687-
github.com/go-viper/mapstructure/v2 v2.3.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
686+
github.com/go-viper/mapstructure/v2 v2.4.0 h1:EBsztssimR/CONLSZZ04E8qAkxNYq4Qp9LvH92wZUgs=
687+
github.com/go-viper/mapstructure/v2 v2.4.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
688688
github.com/go-webauthn/webauthn v0.9.4 h1:YxvHSqgUyc5AK2pZbqkWWR55qKeDPhP8zLDr6lpIc2g=
689689
github.com/go-webauthn/webauthn v0.9.4/go.mod h1:LqupCtzSef38FcxzaklmOn7AykGKhAhr9xlRbdbgnTw=
690690
github.com/go-webauthn/x v0.1.5 h1:V2TCzDU2TGLd0kSZOXdrqDVV5JB9ILnKxA9S53CSBw0=
@@ -1516,8 +1516,8 @@ github.com/smartcontractkit/ccip-owner-contracts v0.1.0 h1:GiBDtlx7539o7AKlDV+9L
15161516
github.com/smartcontractkit/ccip-owner-contracts v0.1.0/go.mod h1:NnT6w4Kj42OFFXhSx99LvJZWPpMjmo4+CpDEWfw61xY=
15171517
github.com/smartcontractkit/chain-selectors v1.0.67 h1:gxTqP/JC40KDe3DE1SIsIKSTKTZEPyEU1YufO1admnw=
15181518
github.com/smartcontractkit/chain-selectors v1.0.67/go.mod h1:xsKM0aN3YGcQKTPRPDDtPx2l4mlTN1Djmg0VVXV40b8=
1519-
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250818164129-fa2e60d95157 h1:jcDGTwLBDGwgBOYFf3FerTh8k2JPHApIg2UDiIKwZRE=
1520-
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250818164129-fa2e60d95157/go.mod h1:zNZ5rtLkbqsGCjDWb1y8n7BRk2zgflkzmj2GjnLnj08=
1519+
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250819195247-56ff4334efae h1:j2QAV3NEb+VrSVdLnYHGtWPkz+3Um3LGVW3bGb/wZxY=
1520+
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250819195247-56ff4334efae/go.mod h1:lqykoc2P5pQe4fJR3huTBywXBeYsA+b4xxTrHbRmHcg=
15211521
github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgBc2xpDKBco/Q4h4ydl6+UUU=
15221522
github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08=
15231523
github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250814153237-9a6c5a35e950 h1:yXa5OYB2huog8enmrF4ACIFKh+grJiCclas+qP8wfTw=
@@ -1526,8 +1526,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7
15261526
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ=
15271527
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a h1:38dAlTPRUQHZus5dCnBnQyf/V4oYn0p2svWlbPgHDQ4=
15281528
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg=
1529-
github.com/smartcontractkit/chainlink-common v0.9.1-0.20250815142532-64e0a7965958 h1:pfzvL8n8f4ygUe4pIBjHgM2Tzct6qG8Q/jxJjfHThMY=
1530-
github.com/smartcontractkit/chainlink-common v0.9.1-0.20250815142532-64e0a7965958/go.mod h1:OYfK10oQCJVQEdBmA2J1FC9gq+bp9497LcD88T0q+lw=
1529+
github.com/smartcontractkit/chainlink-common v0.9.1-0.20250819194932-f52747b8ddbb h1:fPA12I8jPdn5I0LPQ/Xe1tUSK/tyHfeS7JPoHyXlyUI=
1530+
github.com/smartcontractkit/chainlink-common v0.9.1-0.20250819194932-f52747b8ddbb/go.mod h1:0OMQFyxibohHOzskRmEz4wr+w0SdAFsU6CjW/VhRf34=
15311531
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 h1:ca2z5OXgnbBPQRxpwXwBLJsUA1+cAp5ncfW4Ssvd6eY=
15321532
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1/go.mod h1:NZv/qKYGFRnkjOYBouajnDfFoZ+WDa6H2KNmSf1dnKc=
15331533
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
@@ -1556,6 +1556,8 @@ github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250729142306-
15561556
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250729142306-508e798f6a5d/go.mod h1:2JTBNp3FlRdO/nHc4dsc9bfxxMClMO1Qt8sLJgtreBY=
15571557
github.com/smartcontractkit/chainlink-protos/billing/go v0.0.0-20250722225531-876fd6b94976 h1:mF3FiDUoV0QbJcks9R2y7ydqntNL1Z0VCPBJgx/Ms+0=
15581558
github.com/smartcontractkit/chainlink-protos/billing/go v0.0.0-20250722225531-876fd6b94976/go.mod h1:HHGeDUpAsPa0pmOx7wrByCitjQ0mbUxf0R9v+g67uCA=
1559+
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20250819150450-95ef563f6e6d h1:MJS8HTB1h3w7qV+70ueWnTQlMG8mxDUV/GdQH54Rg6g=
1560+
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20250819150450-95ef563f6e6d/go.mod h1:jUC52kZzEnWF9tddHh85zolKybmLpbQ1oNA4FjOHt1Q=
15591561
github.com/smartcontractkit/chainlink-protos/job-distributor v0.13.1 h1:PWwLGimBt37eDzpbfZ9V/ZkW4oCjcwKjKiAwKlSfPc0=
15601562
github.com/smartcontractkit/chainlink-protos/job-distributor v0.13.1/go.mod h1:/dVVLXrsp+V0AbcYGJo3XMzKg3CkELsweA/TTopCsKE=
15611563
github.com/smartcontractkit/chainlink-protos/orchestrator v0.8.1 h1:VcFo27MBPTMB1d1Tp3q3RzJNqwErKR+z9QLQZ6KBSXo=

0 commit comments

Comments
 (0)