Skip to content

Commit 726bada

Browse files
committed
bump cl-ton import
1 parent 7686647 commit 726bada

18 files changed

Lines changed: 25 additions & 197 deletions

File tree

core/capabilities/ccip/ccipaptos/executecodec_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func TestExecutePluginCodecV1(t *testing.T) {
163163

164164
for _, tc := range testCases {
165165
t.Run(tc.name, func(t *testing.T) {
166-
codec := NewExecutePluginCodecV1(registeredMockExtraDataCodecMap)
166+
codec := NewExecutePluginCodecV1(ccipocr3.ExtraDataCodecMap(registeredMockExtraDataCodecMap))
167167
// randomExecuteReport now uses the new encoding internally
168168
report := tc.report(randomExecuteReport(t, tc.chainSelector, tc.gasLimit, tc.destGasAmount))
169169
bytes, err := codec.Encode(ctx, report)

core/capabilities/ccip/common/extradatacodecregistry_test.go

Lines changed: 0 additions & 173 deletions
This file was deleted.

core/capabilities/ccip/oraclecreator/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ func (i *pluginOracleCreator) createChainAccessors(
494494
pluginServices ccipcommon.PluginServices,
495495
) (map[cciptypes.ChainSelector]cciptypes.ChainAccessor, error) {
496496
chainAccessors := make(map[cciptypes.ChainSelector]cciptypes.ChainAccessor)
497-
for relayID, _ := range i.relayers {
497+
for relayID := range i.relayers {
498498
chainDetails, err := chainsel.GetChainDetailsByChainIDAndFamily(relayID.ChainID, relayID.Network)
499499
if err != nil {
500500
return nil, fmt.Errorf("failed to get chain selector from relay ID %s and family %s: %w", relayID.ChainID, relayID.Network, err)

core/scripts/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ require (
492492
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 // indirect
493493
github.com/smartcontractkit/chainlink-testing-framework/framework/components/fake v0.10.0 // indirect
494494
github.com/smartcontractkit/chainlink-testing-framework/parrot v0.6.2 // indirect
495-
github.com/smartcontractkit/chainlink-ton v0.0.0-20250910183153-c26d4436b0db // indirect
495+
github.com/smartcontractkit/chainlink-ton v0.0.0-20250915205414-9c9b3135ec40 // indirect
496496
github.com/smartcontractkit/chainlink-ton/deployment v0.0.0-20250910183153-c26d4436b0db // indirect
497497
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250815105909-75499abc4335 // indirect
498498
github.com/smartcontractkit/cre-sdk-go v0.7.0 // indirect

core/scripts/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1644,8 +1644,8 @@ github.com/smartcontractkit/chainlink-testing-framework/parrot v0.6.2 h1:cWUHB6Q
16441644
github.com/smartcontractkit/chainlink-testing-framework/parrot v0.6.2/go.mod h1:Z4K5VJLjsfqIIaBcZ1Sfccxu0xsCxBjPa6zF+5gtQaM=
16451645
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.2 h1:ZJ/8Jx6Be5//TyjPi1pS1uotnmcYq5vVkSyISIymSj8=
16461646
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.2/go.mod h1:kHYJnZUqiPF7/xN5273prV+srrLJkS77GbBXHLKQpx0=
1647-
github.com/smartcontractkit/chainlink-ton v0.0.0-20250910183153-c26d4436b0db h1:fVsVE/v/jXyhEhlEvreSgcPfNn4LIVoWBEd8UDSyntA=
1648-
github.com/smartcontractkit/chainlink-ton v0.0.0-20250910183153-c26d4436b0db/go.mod h1:5j2nQfAdUhWxaEKFjK6b73HdD32VsS5sTGhZRD2FCIQ=
1647+
github.com/smartcontractkit/chainlink-ton v0.0.0-20250915205414-9c9b3135ec40 h1:cxCtVO8UdfrM7SXCD7TDwk+gruLLYWlJdYPG+MIkqWs=
1648+
github.com/smartcontractkit/chainlink-ton v0.0.0-20250915205414-9c9b3135ec40/go.mod h1:tkOFgErNCsGLgX/siwi88hv7lfnBu4SvF1OHkUyjxRM=
16491649
github.com/smartcontractkit/chainlink-ton/deployment v0.0.0-20250910183153-c26d4436b0db h1:eFNMMYcUg7lpEveAc+9tL9YLcTrUEd8C2ZH1QjmI7b4=
16501650
github.com/smartcontractkit/chainlink-ton/deployment v0.0.0-20250910183153-c26d4436b0db/go.mod h1:knAY+6zKX80ubk3iyTP6kkWOk2JIe94ZdIgcLvLfCzU=
16511651
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250815105909-75499abc4335 h1:7bxYNrPpygn8PUSBiEKn8riMd7CXMi/4bjTy0fHhcrY=

deployment/ccip/manualexechelpers/exec.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
"github.com/ethereum/go-ethereum/common"
1313
"github.com/ethereum/go-ethereum/common/hexutil"
1414
chainsel "github.com/smartcontractkit/chain-selectors"
15+
1516
"github.com/smartcontractkit/chainlink-common/pkg/types/ccipocr3"
1617
"github.com/smartcontractkit/chainlink/v2/core/capabilities/ccip/ccipevm"
1718
"github.com/smartcontractkit/chainlink/v2/core/capabilities/ccip/ccipsolana"
@@ -312,7 +313,7 @@ func manuallyExecuteSingle(
312313
lookbackDurationCommitReport,
313314
stepDuration time.Duration,
314315
reExecuteIfFailed bool,
315-
extraDataCodec ccipocr3.ExtraDataCodec,
316+
extraDataCodec ccipocr3.ExtraDataCodecBundle,
316317
messageSentCache *MessageSentCache,
317318
commitRootCache *RootCache,
318319
) error {

deployment/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ require (
4848
github.com/smartcontractkit/chainlink-protos/orchestrator v0.10.0
4949
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413
5050
github.com/smartcontractkit/chainlink-testing-framework/lib v1.54.5
51-
github.com/smartcontractkit/chainlink-ton v0.0.0-20250910183153-c26d4436b0db
51+
github.com/smartcontractkit/chainlink-ton v0.0.0-20250915205414-9c9b3135ec40
5252
github.com/smartcontractkit/chainlink-ton/deployment v0.0.0-20250910183153-c26d4436b0db
5353
github.com/smartcontractkit/freeport v0.1.3-0.20250716200817-cb5dfd0e369e
5454
github.com/smartcontractkit/libocr v0.0.0-20250905115425-2785a5cee79d

deployment/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1375,8 +1375,8 @@ github.com/smartcontractkit/chainlink-testing-framework/parrot v0.6.2 h1:cWUHB6Q
13751375
github.com/smartcontractkit/chainlink-testing-framework/parrot v0.6.2/go.mod h1:Z4K5VJLjsfqIIaBcZ1Sfccxu0xsCxBjPa6zF+5gtQaM=
13761376
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.2 h1:ZJ/8Jx6Be5//TyjPi1pS1uotnmcYq5vVkSyISIymSj8=
13771377
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.2/go.mod h1:kHYJnZUqiPF7/xN5273prV+srrLJkS77GbBXHLKQpx0=
1378-
github.com/smartcontractkit/chainlink-ton v0.0.0-20250910183153-c26d4436b0db h1:fVsVE/v/jXyhEhlEvreSgcPfNn4LIVoWBEd8UDSyntA=
1379-
github.com/smartcontractkit/chainlink-ton v0.0.0-20250910183153-c26d4436b0db/go.mod h1:5j2nQfAdUhWxaEKFjK6b73HdD32VsS5sTGhZRD2FCIQ=
1378+
github.com/smartcontractkit/chainlink-ton v0.0.0-20250915205414-9c9b3135ec40 h1:cxCtVO8UdfrM7SXCD7TDwk+gruLLYWlJdYPG+MIkqWs=
1379+
github.com/smartcontractkit/chainlink-ton v0.0.0-20250915205414-9c9b3135ec40/go.mod h1:tkOFgErNCsGLgX/siwi88hv7lfnBu4SvF1OHkUyjxRM=
13801380
github.com/smartcontractkit/chainlink-ton/deployment v0.0.0-20250910183153-c26d4436b0db h1:eFNMMYcUg7lpEveAc+9tL9YLcTrUEd8C2ZH1QjmI7b4=
13811381
github.com/smartcontractkit/chainlink-ton/deployment v0.0.0-20250910183153-c26d4436b0db/go.mod h1:knAY+6zKX80ubk3iyTP6kkWOk2JIe94ZdIgcLvLfCzU=
13821382
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250815105909-75499abc4335 h1:7bxYNrPpygn8PUSBiEKn8riMd7CXMi/4bjTy0fHhcrY=

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ require (
9898
github.com/smartcontractkit/chainlink-protos/storage-service v0.3.0
9999
github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250908151016-bf310cf85379
100100
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413
101-
github.com/smartcontractkit/chainlink-ton v0.0.0-20250910183153-c26d4436b0db
101+
github.com/smartcontractkit/chainlink-ton v0.0.0-20250915205414-9c9b3135ec40
102102
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250815105909-75499abc4335
103103
github.com/smartcontractkit/cre-sdk-go v0.7.0
104104
github.com/smartcontractkit/cre-sdk-go/capabilities/networking/http v0.7.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1145,8 +1145,8 @@ github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250908151016-
11451145
github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250908151016-bf310cf85379/go.mod h1:HIpGvF6nKCdtZ30xhdkKWGM9+4Z4CVqJH8ZBL1FTEiY=
11461146
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 h1:9HieHSTV3r8pRgwm6afiaH7EJDU3v+wVrRtDRFTKy+4=
11471147
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413/go.mod h1:LSZMvQYbdK20+21S68/lcTNHStehHPF1X764PICkrRU=
1148-
github.com/smartcontractkit/chainlink-ton v0.0.0-20250910183153-c26d4436b0db h1:fVsVE/v/jXyhEhlEvreSgcPfNn4LIVoWBEd8UDSyntA=
1149-
github.com/smartcontractkit/chainlink-ton v0.0.0-20250910183153-c26d4436b0db/go.mod h1:5j2nQfAdUhWxaEKFjK6b73HdD32VsS5sTGhZRD2FCIQ=
1148+
github.com/smartcontractkit/chainlink-ton v0.0.0-20250915205414-9c9b3135ec40 h1:cxCtVO8UdfrM7SXCD7TDwk+gruLLYWlJdYPG+MIkqWs=
1149+
github.com/smartcontractkit/chainlink-ton v0.0.0-20250915205414-9c9b3135ec40/go.mod h1:tkOFgErNCsGLgX/siwi88hv7lfnBu4SvF1OHkUyjxRM=
11501150
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250815105909-75499abc4335 h1:7bxYNrPpygn8PUSBiEKn8riMd7CXMi/4bjTy0fHhcrY=
11511151
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250815105909-75499abc4335/go.mod h1:ccjEgNeqOO+bjPddnL4lUrNLzyCvGCxgBjJdhFX3wa8=
11521152
github.com/smartcontractkit/chainlink-tron/relayer/gotron-sdk v0.0.5-0.20250422175525-b7575d96bd4d h1:qLmSOOtB/Ogn79eIDkuujOu8M5Jd747V1H7Brk/nTvo=

0 commit comments

Comments
 (0)