Skip to content

Commit 9831b62

Browse files
committed
use common instead of chainlink-aptos
1 parent a5965ae commit 9831b62

16 files changed

Lines changed: 86 additions & 88 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.ChainWriterConfig, 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.ChainWriterConfig{}, 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.ChainWriterConfig{
18+
Modules: map[string]*aptos.ChainWriterModule{
2119
consts.ContractNameOffRamp: {
2220
Name: "offramp",
23-
Functions: map[string]*chainwriter.ChainWriterFunction{
21+
Functions: map[string]*aptos.ChainWriterFunction{
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
@@ -3,17 +3,17 @@ package aptosconfig
33
import (
44
"time"
55

6-
"github.com/smartcontractkit/chainlink-aptos/relayer/chainreader/config"
76
"github.com/smartcontractkit/chainlink-ccip/pkg/consts"
7+
"github.com/smartcontractkit/chainlink-common/pkg/types/aptos"
88
)
99

10-
func GetChainReaderConfig() (config.ChainReaderConfig, error) {
11-
return config.ChainReaderConfig{
10+
func GetChainReaderConfig() (aptos.ChainReaderConfig, error) {
11+
return aptos.ChainReaderConfig{
1212
IsLoopPlugin: true,
13-
Modules: map[string]*config.ChainReaderModule{
13+
Modules: map[string]*aptos.ChainReaderModule{
1414
consts.ContractNameRMNRemote: {
1515
Name: "rmn_remote",
16-
Functions: map[string]*config.ChainReaderFunction{
16+
Functions: map[string]*aptos.ChainReaderFunction{
1717
consts.MethodNameGetReportDigestHeader: {
1818
Name: "get_report_digest_header",
1919
},
@@ -29,18 +29,18 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
2929
},
3030
consts.ContractNameRMNProxy: {
3131
Name: "rmn_remote",
32-
Functions: map[string]*config.ChainReaderFunction{
32+
Functions: map[string]*aptos.ChainReaderFunction{
3333
consts.MethodNameGetARM: {
3434
Name: "get_arm",
3535
},
3636
},
3737
},
3838
consts.ContractNameFeeQuoter: {
3939
Name: "fee_quoter",
40-
Functions: map[string]*config.ChainReaderFunction{
40+
Functions: map[string]*aptos.ChainReaderFunction{
4141
consts.MethodNameFeeQuoterGetTokenPrice: {
4242
Name: "get_token_price",
43-
Params: []config.AptosFunctionParam{
43+
Params: []aptos.FunctionParam{
4444
{
4545
Name: "token",
4646
Type: "address",
@@ -50,7 +50,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
5050
},
5151
consts.MethodNameFeeQuoterGetTokenPrices: {
5252
Name: "get_token_prices",
53-
Params: []config.AptosFunctionParam{
53+
Params: []aptos.FunctionParam{
5454
{
5555
Name: "tokens",
5656
Type: "vector<address>",
@@ -63,7 +63,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
6363
},
6464
consts.MethodNameGetFeePriceUpdate: {
6565
Name: "get_dest_chain_gas_price",
66-
Params: []config.AptosFunctionParam{
66+
Params: []aptos.FunctionParam{
6767
{
6868
Name: "destChainSelector",
6969
Type: "u64",
@@ -75,10 +75,10 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
7575
},
7676
consts.ContractNameOffRamp: {
7777
Name: "offramp",
78-
Functions: map[string]*config.ChainReaderFunction{
78+
Functions: map[string]*aptos.ChainReaderFunction{
7979
consts.MethodNameGetExecutionState: {
8080
Name: "get_execution_state",
81-
Params: []config.AptosFunctionParam{
81+
Params: []aptos.FunctionParam{
8282
{
8383
Name: "sourceChainSelector",
8484
Type: "u64",
@@ -93,7 +93,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
9393
},
9494
consts.MethodNameGetMerkleRoot: {
9595
Name: "get_merkle_root",
96-
Params: []config.AptosFunctionParam{
96+
Params: []aptos.FunctionParam{
9797
{
9898
Name: "root",
9999
Type: "vector<u8>",
@@ -103,7 +103,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
103103
},
104104
consts.MethodNameOffRampLatestConfigDetails: {
105105
Name: "latest_config_details",
106-
Params: []config.AptosFunctionParam{
106+
Params: []aptos.FunctionParam{
107107
{
108108
Name: "ocrPluginType",
109109
Type: "u8",
@@ -125,7 +125,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
125125
},
126126
consts.MethodNameGetSourceChainConfig: {
127127
Name: "get_source_chain_config",
128-
Params: []config.AptosFunctionParam{
128+
Params: []aptos.FunctionParam{
129129
{
130130
Name: "sourceChainSelector",
131131
Type: "u64",
@@ -134,12 +134,12 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
134134
},
135135
},
136136
},
137-
Events: map[string]*config.ChainReaderEvent{
137+
Events: map[string]*aptos.ChainReaderEvent{
138138
consts.EventNameExecutionStateChanged: {
139139
EventHandleStructName: "OffRampState",
140140
EventHandleFieldName: "execution_state_changed_events",
141141
EventAccountAddress: "offramp::get_state_address",
142-
EventFieldRenames: map[string]config.RenamedField{
142+
EventFieldRenames: map[string]aptos.RenamedField{
143143
"source_chain_selector": {
144144
NewName: "SourceChainSelector",
145145
},
@@ -161,10 +161,10 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
161161
EventHandleStructName: "OffRampState",
162162
EventHandleFieldName: "commit_report_accepted_events",
163163
EventAccountAddress: "offramp::get_state_address",
164-
EventFieldRenames: map[string]config.RenamedField{
164+
EventFieldRenames: map[string]aptos.RenamedField{
165165
"blessed_merkle_roots": {
166166
NewName: "BlessedMerkleRoots",
167-
SubFieldRenames: map[string]config.RenamedField{
167+
SubFieldRenames: map[string]aptos.RenamedField{
168168
"source_chain_selector": {
169169
NewName: "SourceChainSelector",
170170
},
@@ -184,7 +184,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
184184
},
185185
"unblessed_merkle_roots": {
186186
NewName: "UnblessedMerkleRoots",
187-
SubFieldRenames: map[string]config.RenamedField{
187+
SubFieldRenames: map[string]aptos.RenamedField{
188188
"source_chain_selector": {
189189
NewName: "SourceChainSelector",
190190
},
@@ -204,10 +204,10 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
204204
},
205205
"price_updates": {
206206
NewName: "PriceUpdates",
207-
SubFieldRenames: map[string]config.RenamedField{
207+
SubFieldRenames: map[string]aptos.RenamedField{
208208
"token_price_updates": {
209209
NewName: "TokenPriceUpdates",
210-
SubFieldRenames: map[string]config.RenamedField{
210+
SubFieldRenames: map[string]aptos.RenamedField{
211211
"source_token": {
212212
NewName: "SourceToken",
213213
},
@@ -218,7 +218,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
218218
},
219219
"gas_price_updates": {
220220
NewName: "GasPriceUpdates",
221-
SubFieldRenames: map[string]config.RenamedField{
221+
SubFieldRenames: map[string]aptos.RenamedField{
222222
"dest_chain_selector": {
223223
NewName: "DestChainSelector",
224224
},
@@ -235,7 +235,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
235235
EventHandleStructName: "OffRampState",
236236
EventHandleFieldName: "ocr3_base_state.config_set_events",
237237
EventAccountAddress: "offramp::get_state_address",
238-
EventFieldRenames: map[string]config.RenamedField{
238+
EventFieldRenames: map[string]aptos.RenamedField{
239239
"ocr_plugin_type": {
240240
NewName: "OcrPluginType",
241241
},
@@ -257,13 +257,13 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
257257
EventHandleStructName: "OffRampState",
258258
EventHandleFieldName: "source_chain_config_set_events",
259259
EventAccountAddress: "offramp::get_state_address",
260-
EventFieldRenames: map[string]config.RenamedField{
260+
EventFieldRenames: map[string]aptos.RenamedField{
261261
"source_chain_selector": {
262262
NewName: "SourceChainSelector",
263263
},
264264
"source_chain_config": {
265265
NewName: "SourceChainConfig",
266-
SubFieldRenames: map[string]config.RenamedField{
266+
SubFieldRenames: map[string]aptos.RenamedField{
267267
"router": {NewName: "Router"},
268268
"is_enabled": {NewName: "IsEnabled"},
269269
"min_seq_nr": {NewName: "MinSeqNr"},
@@ -277,7 +277,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
277277
},
278278
consts.ContractNameOnRamp: {
279279
Name: "onramp",
280-
Functions: map[string]*config.ChainReaderFunction{
280+
Functions: map[string]*aptos.ChainReaderFunction{
281281
consts.MethodNameOnRampGetDynamicConfig: {
282282
Name: "get_dynamic_config",
283283
},
@@ -286,7 +286,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
286286
},
287287
consts.MethodNameOnRampGetDestChainConfig: {
288288
Name: "get_dest_chain_config",
289-
Params: []config.AptosFunctionParam{
289+
Params: []aptos.FunctionParam{
290290
{
291291
Name: "destChainSelector",
292292
Type: "u64",
@@ -297,7 +297,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
297297
},
298298
consts.MethodNameGetExpectedNextSequenceNumber: {
299299
Name: "get_expected_next_sequence_number",
300-
Params: []config.AptosFunctionParam{
300+
Params: []aptos.FunctionParam{
301301
{
302302
Name: "destChainSelector",
303303
Type: "u64",
@@ -306,12 +306,12 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
306306
},
307307
},
308308
},
309-
Events: map[string]*config.ChainReaderEvent{
309+
Events: map[string]*aptos.ChainReaderEvent{
310310
consts.EventNameCCIPMessageSent: {
311311
EventHandleStructName: "OnRampState",
312312
EventHandleFieldName: "ccip_message_sent_events",
313313
EventAccountAddress: "onramp::get_state_address",
314-
EventFieldRenames: map[string]config.RenamedField{
314+
EventFieldRenames: map[string]aptos.RenamedField{
315315
"dest_chain_selector": {
316316
NewName: "DestChainSelector",
317317
SubFieldRenames: nil,
@@ -322,10 +322,10 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
322322
},
323323
"message": {
324324
NewName: "Message",
325-
SubFieldRenames: map[string]config.RenamedField{
325+
SubFieldRenames: map[string]aptos.RenamedField{
326326
"header": {
327327
NewName: "Header",
328-
SubFieldRenames: map[string]config.RenamedField{
328+
SubFieldRenames: map[string]aptos.RenamedField{
329329
"source_chain_selector": {
330330
NewName: "SourceChainSelector",
331331
},
@@ -366,7 +366,7 @@ func GetChainReaderConfig() (config.ChainReaderConfig, error) {
366366
},
367367
"token_amounts": {
368368
NewName: "TokenAmounts",
369-
SubFieldRenames: map[string]config.RenamedField{
369+
SubFieldRenames: map[string]aptos.RenamedField{
370370
"source_pool_address": {
371371
NewName: "SourcePoolAddress",
372372
},

core/scripts/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ require (
3838
github.com/smartcontractkit/chain-selectors v1.0.60
3939
github.com/smartcontractkit/chainlink-automation v0.8.1
4040
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250627133416-1d85eec09097
41-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250627002929-2cbb7418aaa5
41+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628143424-0a392d560a40
4242
github.com/smartcontractkit/chainlink-common/pkg/values v0.0.0-20250626141212-e50b2e7ffe2d
4343
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250604171706-a98fa6515eae
4444
github.com/smartcontractkit/chainlink-deployments-framework v0.15.0
@@ -393,7 +393,7 @@ require (
393393
github.com/sigurn/crc16 v0.0.0-20211026045750-20ab5afb07e3 // indirect
394394
github.com/sirupsen/logrus v1.9.3 // indirect
395395
github.com/smartcontractkit/ccip-owner-contracts v0.1.0 // indirect
396-
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250624090157-6b89f926f864 // indirect
396+
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250628162033-3957258cd6b7 // indirect
397397
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed // indirect
398398
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect
399399
github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250618164021-9b34289a9502 // indirect

core/scripts/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,16 +1275,16 @@ github.com/smartcontractkit/ccip-owner-contracts v0.1.0 h1:GiBDtlx7539o7AKlDV+9L
12751275
github.com/smartcontractkit/ccip-owner-contracts v0.1.0/go.mod h1:NnT6w4Kj42OFFXhSx99LvJZWPpMjmo4+CpDEWfw61xY=
12761276
github.com/smartcontractkit/chain-selectors v1.0.60 h1:X/5CcVB5izIaMrGRdl0hc6sSbKSBFhYRKqo1C/JmgFs=
12771277
github.com/smartcontractkit/chain-selectors v1.0.60/go.mod h1:xsKM0aN3YGcQKTPRPDDtPx2l4mlTN1Djmg0VVXV40b8=
1278-
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250624090157-6b89f926f864 h1:L9FmhZ050B6piLP9qvNBM5Ao+US1k/CLeGjK+jOrT3k=
1279-
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250624090157-6b89f926f864/go.mod h1:+LMKso9gI5B78xdk3uP69/WrsJTcalbKFO63amJexsE=
1278+
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250628162033-3957258cd6b7 h1:TpouQfV+b2zxQAk2c+oAyRguokiXklf0/zn5J/P0A6g=
1279+
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250628162033-3957258cd6b7/go.mod h1:kpfpQUXabhBTsbn9gSG/tYuZTVBJoqQS8/TcYRoQ2NU=
12801280
github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgBc2xpDKBco/Q4h4ydl6+UUU=
12811281
github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08=
12821282
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250627133416-1d85eec09097 h1:LjXBMpQP79C8fX2mSbsgzEW0kbu6e+M0Qk25U5NbgdE=
12831283
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250627133416-1d85eec09097/go.mod h1:Yw7X+vtR7A9MBI+q5b0k/H2PlKy6cQOa7vAp4cshz2s=
12841284
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed h1:rjtXQLTCLa/+AmMwMTP5WwJUdPBeBAF3Ivwc1GXetBw=
12851285
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed/go.mod h1:k3/Z6AvwurPUlfuDFEonRbkkiTSgNSrtVNhJEWNlUZA=
1286-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250627002929-2cbb7418aaa5 h1:ZadFXdmkBFJz3GYPAF20IvtNSHbcRFoLrhCU/LKS9oQ=
1287-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250627002929-2cbb7418aaa5/go.mod h1:mRKPMPyJhg1RBjxtRTL2gHvRhTcZ+nk2Upu/u97Y16M=
1286+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628143424-0a392d560a40 h1:oJTgpKJebDqMxSVWeS6deepztngnCpct+ONHak+dAeA=
1287+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628143424-0a392d560a40/go.mod h1:mRKPMPyJhg1RBjxtRTL2gHvRhTcZ+nk2Upu/u97Y16M=
12881288
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
12891289
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
12901290
github.com/smartcontractkit/chainlink-common/pkg/values v0.0.0-20250626141212-e50b2e7ffe2d h1:86gp4tIXRb6ccSrjcm4gV8iA5wJN6er3rJY9f2UxRLU=

deployment/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ require (
3030
github.com/sethvargo/go-retry v0.2.4
3131
github.com/smartcontractkit/ccip-owner-contracts v0.1.0
3232
github.com/smartcontractkit/chain-selectors v1.0.60
33-
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250624090157-6b89f926f864
33+
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250628162033-3957258cd6b7
3434
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250627133416-1d85eec09097
3535
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed
36-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250627002929-2cbb7418aaa5
36+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628143424-0a392d560a40
3737
github.com/smartcontractkit/chainlink-common/pkg/values v0.0.0-20250626141212-e50b2e7ffe2d
3838
github.com/smartcontractkit/chainlink-deployments-framework v0.15.0
3939
github.com/smartcontractkit/chainlink-evm v0.0.0-20250627135735-93e3b09aec5a

deployment/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1251,16 +1251,16 @@ github.com/smartcontractkit/ccip-owner-contracts v0.1.0 h1:GiBDtlx7539o7AKlDV+9L
12511251
github.com/smartcontractkit/ccip-owner-contracts v0.1.0/go.mod h1:NnT6w4Kj42OFFXhSx99LvJZWPpMjmo4+CpDEWfw61xY=
12521252
github.com/smartcontractkit/chain-selectors v1.0.60 h1:X/5CcVB5izIaMrGRdl0hc6sSbKSBFhYRKqo1C/JmgFs=
12531253
github.com/smartcontractkit/chain-selectors v1.0.60/go.mod h1:xsKM0aN3YGcQKTPRPDDtPx2l4mlTN1Djmg0VVXV40b8=
1254-
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250624090157-6b89f926f864 h1:L9FmhZ050B6piLP9qvNBM5Ao+US1k/CLeGjK+jOrT3k=
1255-
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250624090157-6b89f926f864/go.mod h1:+LMKso9gI5B78xdk3uP69/WrsJTcalbKFO63amJexsE=
1254+
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250628162033-3957258cd6b7 h1:TpouQfV+b2zxQAk2c+oAyRguokiXklf0/zn5J/P0A6g=
1255+
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250628162033-3957258cd6b7/go.mod h1:kpfpQUXabhBTsbn9gSG/tYuZTVBJoqQS8/TcYRoQ2NU=
12561256
github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgBc2xpDKBco/Q4h4ydl6+UUU=
12571257
github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08=
12581258
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250627133416-1d85eec09097 h1:LjXBMpQP79C8fX2mSbsgzEW0kbu6e+M0Qk25U5NbgdE=
12591259
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250627133416-1d85eec09097/go.mod h1:Yw7X+vtR7A9MBI+q5b0k/H2PlKy6cQOa7vAp4cshz2s=
12601260
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed h1:rjtXQLTCLa/+AmMwMTP5WwJUdPBeBAF3Ivwc1GXetBw=
12611261
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250609091505-5c8cd74b92ed/go.mod h1:k3/Z6AvwurPUlfuDFEonRbkkiTSgNSrtVNhJEWNlUZA=
1262-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250627002929-2cbb7418aaa5 h1:ZadFXdmkBFJz3GYPAF20IvtNSHbcRFoLrhCU/LKS9oQ=
1263-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250627002929-2cbb7418aaa5/go.mod h1:mRKPMPyJhg1RBjxtRTL2gHvRhTcZ+nk2Upu/u97Y16M=
1262+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628143424-0a392d560a40 h1:oJTgpKJebDqMxSVWeS6deepztngnCpct+ONHak+dAeA=
1263+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250628143424-0a392d560a40/go.mod h1:mRKPMPyJhg1RBjxtRTL2gHvRhTcZ+nk2Upu/u97Y16M=
12641264
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw=
12651265
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
12661266
github.com/smartcontractkit/chainlink-common/pkg/values v0.0.0-20250626141212-e50b2e7ffe2d h1:86gp4tIXRb6ccSrjcm4gV8iA5wJN6er3rJY9f2UxRLU=

0 commit comments

Comments
 (0)