From 5f828be802e8b2e33f2c1ddda3fcf791e13dee3d Mon Sep 17 00:00:00 2001 From: Oliver Townsend Date: Thu, 2 Jul 2026 13:12:14 -0700 Subject: [PATCH 1/2] use new cciplib from cl-ton --- e2e/tests/ton/executable.go | 8 ++++---- e2e/tests/ton/inspection.go | 4 ++-- e2e/tests/ton/set_config.go | 4 ++-- e2e/tests/ton/set_root.go | 4 ++-- e2e/tests/ton/timelock_inspection.go | 10 +++++----- go.mod | 5 +++++ go.sum | 2 -- sdk/ton/common_test.go | 2 +- sdk/ton/config_transformer.go | 4 ++-- sdk/ton/config_transformer_test.go | 2 +- sdk/ton/configurer.go | 4 ++-- sdk/ton/configurer_test.go | 2 +- sdk/ton/decoded_operation.go | 2 +- sdk/ton/decoded_operation_test.go | 2 +- sdk/ton/decoder.go | 2 +- sdk/ton/decoder_test.go | 4 ++-- sdk/ton/encoder.go | 4 ++-- sdk/ton/executor.go | 4 ++-- sdk/ton/executor_test.go | 2 +- sdk/ton/inspector.go | 2 +- sdk/ton/inspector_test.go | 2 +- sdk/ton/timelock_configurer.go | 2 +- sdk/ton/timelock_configurer_test.go | 2 +- sdk/ton/timelock_converter.go | 2 +- sdk/ton/timelock_executor.go | 4 ++-- sdk/ton/timelock_executor_test.go | 2 +- sdk/ton/timelock_inspector.go | 2 +- sdk/ton/timelock_inspector_test.go | 2 +- sdk/ton/transaction.go | 2 +- 29 files changed, 48 insertions(+), 45 deletions(-) diff --git a/e2e/tests/ton/executable.go b/e2e/tests/ton/executable.go index 891de8eee..9b65d298a 100644 --- a/e2e/tests/ton/executable.go +++ b/e2e/tests/ton/executable.go @@ -22,11 +22,11 @@ import ( "github.com/smartcontractkit/chainlink-ton/pkg/bindings/lib/access/rbac" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/timelock" - toncommon "github.com/smartcontractkit/chainlink-ton/pkg/ccip/bindings/common" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/hash" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" + toncommon "github.com/smartcontractkit/chainlink-ton/cciplib/ccip/bindings/common" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/hash" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" "github.com/smartcontractkit/chainlink-ton/pkg/ton/tracetracking" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/ethereum/go-ethereum/common" diff --git a/e2e/tests/ton/inspection.go b/e2e/tests/ton/inspection.go index 996f54b98..d29210b6b 100644 --- a/e2e/tests/ton/inspection.go +++ b/e2e/tests/ton/inspection.go @@ -12,9 +12,9 @@ import ( "github.com/xssnick/tonutils-go/ton/wallet" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/hash" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/hash" "github.com/smartcontractkit/chainlink-ton/pkg/ton/tracetracking" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" e2e "github.com/smartcontractkit/mcms/e2e/tests" "github.com/smartcontractkit/mcms/internal/testutils" diff --git a/e2e/tests/ton/set_config.go b/e2e/tests/ton/set_config.go index 1660a37df..1004f79b1 100644 --- a/e2e/tests/ton/set_config.go +++ b/e2e/tests/ton/set_config.go @@ -13,9 +13,9 @@ import ( "github.com/xssnick/tonutils-go/ton/wallet" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/hash" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/hash" "github.com/smartcontractkit/chainlink-ton/pkg/ton/tracetracking" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" e2e "github.com/smartcontractkit/mcms/e2e/tests" "github.com/smartcontractkit/mcms/internal/testutils" diff --git a/e2e/tests/ton/set_root.go b/e2e/tests/ton/set_root.go index b8699192d..476026c9c 100644 --- a/e2e/tests/ton/set_root.go +++ b/e2e/tests/ton/set_root.go @@ -12,9 +12,9 @@ import ( chainsel "github.com/smartcontractkit/chain-selectors" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/hash" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/hash" "github.com/smartcontractkit/chainlink-ton/pkg/ton/tracetracking" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/xssnick/tonutils-go/address" "github.com/xssnick/tonutils-go/tlb" diff --git a/e2e/tests/ton/timelock_inspection.go b/e2e/tests/ton/timelock_inspection.go index 66be40e6c..7a6c83d5e 100644 --- a/e2e/tests/ton/timelock_inspection.go +++ b/e2e/tests/ton/timelock_inspection.go @@ -24,12 +24,12 @@ import ( "github.com/smartcontractkit/chainlink-ton/pkg/bindings/examples/counter" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/lib/access/rbac" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/timelock" - toncommon "github.com/smartcontractkit/chainlink-ton/pkg/ccip/bindings/common" - "github.com/smartcontractkit/chainlink-ton/pkg/ccip/bindings/ownable2step" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/hash" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" + toncommon "github.com/smartcontractkit/chainlink-ton/cciplib/ccip/bindings/common" + "github.com/smartcontractkit/chainlink-ton/cciplib/ccip/bindings/ownable2step" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/hash" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" "github.com/smartcontractkit/chainlink-ton/pkg/ton/tracetracking" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" e2e "github.com/smartcontractkit/mcms/e2e/tests" mcmston "github.com/smartcontractkit/mcms/sdk/ton" diff --git a/go.mod b/go.mod index a36edfc8c..4c277e429 100644 --- a/go.mod +++ b/go.mod @@ -240,6 +240,7 @@ require ( github.com/smartcontractkit/chainlink-protos/job-distributor v0.18.0 // indirect github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b // indirect github.com/smartcontractkit/chainlink-protos/node-platform v0.0.0-20260211172625-dff40e83b3c9 // indirect + github.com/smartcontractkit/chainlink-ton/cciplib v0.0.0-00010101000000-000000000000 github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20251014143056-a0c6328c91e9 // indirect github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 // indirect github.com/smartcontractkit/libocr v0.0.0-20260304194147-a03701e2c02e // indirect @@ -320,3 +321,7 @@ require ( sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) + +replace github.com/smartcontractkit/chainlink-ton/cciplib => ../chainlink-ton/cciplib + +replace github.com/smartcontractkit/chainlink-ton => ../chainlink-ton diff --git a/go.sum b/go.sum index b083d9f48..c0212a4a1 100644 --- a/go.sum +++ b/go.sum @@ -716,8 +716,6 @@ github.com/smartcontractkit/chainlink-testing-framework/framework v0.16.5 h1:EiQ github.com/smartcontractkit/chainlink-testing-framework/framework v0.16.5/go.mod h1:nyOjn4ADJGqRMe3+4ZXSV+J/7nWb1H2Vx8Qk57eLRYA= github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.5 h1:RwZXxdIAOyjp6cwc9Quxgr38k8r7ACz+Lxh9o/A6oH0= github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.5/go.mod h1:kHYJnZUqiPF7/xN5273prV+srrLJkS77GbBXHLKQpx0= -github.com/smartcontractkit/chainlink-ton v1.0.5-0.20260514223130-48bc90aca745 h1:eieKLvYuzwBPh/FdbUS1gnIanI86zgWby1L10o90g4o= -github.com/smartcontractkit/chainlink-ton v1.0.5-0.20260514223130-48bc90aca745/go.mod h1:8vXLeG//BxDF86GWRytzGIy6jc70htD1r/KtPfjrsK0= github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20251014143056-a0c6328c91e9 h1:7Ut0g+Pdm+gcu2J/Xv8OpQOVf7uLGErMX8yhC4b4tIA= github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20251014143056-a0c6328c91e9/go.mod h1:h9hMs6K4hT1+mjYnJD3/SW1o7yC/sKjNi0Qh8hLfiCE= github.com/smartcontractkit/chainlink-tron/relayer/gotron-sdk v0.0.4 h1:J4qtAo0ZmgX5pIr8Y5mdC+J2rj2e/6CTUC263t6mGOM= diff --git a/sdk/ton/common_test.go b/sdk/ton/common_test.go index 8a77b223b..2581dea39 100644 --- a/sdk/ton/common_test.go +++ b/sdk/ton/common_test.go @@ -3,7 +3,7 @@ package ton_test import ( "github.com/smartcontractkit/mcms/internal/testutils" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" ) func must[E any](out E, err error) E { diff --git a/sdk/ton/config_transformer.go b/sdk/ton/config_transformer.go index 0a7e6edad..f07f61ad1 100644 --- a/sdk/ton/config_transformer.go +++ b/sdk/ton/config_transformer.go @@ -10,8 +10,8 @@ import ( "github.com/xssnick/tonutils-go/tvm/cell" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/smartcontractkit/mcms/sdk" diff --git a/sdk/ton/config_transformer_test.go b/sdk/ton/config_transformer_test.go index 91df59b5a..ff5429655 100644 --- a/sdk/ton/config_transformer_test.go +++ b/sdk/ton/config_transformer_test.go @@ -13,7 +13,7 @@ import ( "github.com/smartcontractkit/mcms/types" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" mcmston "github.com/smartcontractkit/mcms/sdk/ton" ) diff --git a/sdk/ton/configurer.go b/sdk/ton/configurer.go index 717a10c00..c3e81d145 100644 --- a/sdk/ton/configurer.go +++ b/sdk/ton/configurer.go @@ -8,8 +8,8 @@ import ( "github.com/smartcontractkit/chainlink-ton/pkg/bindings" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/smartcontractkit/mcms/sdk" diff --git a/sdk/ton/configurer_test.go b/sdk/ton/configurer_test.go index 4aea3ce80..abc30349f 100644 --- a/sdk/ton/configurer_test.go +++ b/sdk/ton/configurer_test.go @@ -15,7 +15,7 @@ import ( "github.com/xssnick/tonutils-go/tvm/cell" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/smartcontractkit/mcms/internal/testutils" "github.com/smartcontractkit/mcms/internal/testutils/chaintest" diff --git a/sdk/ton/decoded_operation.go b/sdk/ton/decoded_operation.go index 0c408484c..6dc777c7f 100644 --- a/sdk/ton/decoded_operation.go +++ b/sdk/ton/decoded_operation.go @@ -7,7 +7,7 @@ import ( "github.com/smartcontractkit/mcms/sdk" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" ) type DecodedOperation struct { diff --git a/sdk/ton/decoded_operation_test.go b/sdk/ton/decoded_operation_test.go index cb12c6e73..14bd6c956 100644 --- a/sdk/ton/decoded_operation_test.go +++ b/sdk/ton/decoded_operation_test.go @@ -9,7 +9,7 @@ import ( "github.com/smartcontractkit/mcms/sdk/ton" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" ) func TestNewDecodedOperation(t *testing.T) { diff --git a/sdk/ton/decoder.go b/sdk/ton/decoder.go index 37a0acbda..70a300f76 100644 --- a/sdk/ton/decoder.go +++ b/sdk/ton/decoder.go @@ -9,7 +9,7 @@ import ( "github.com/smartcontractkit/mcms/types" "github.com/smartcontractkit/chainlink-ton/pkg/ton/codec" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" ) type decoder struct { diff --git a/sdk/ton/decoder_test.go b/sdk/ton/decoder_test.go index e8f8df919..813078f5e 100644 --- a/sdk/ton/decoder_test.go +++ b/sdk/ton/decoder_test.go @@ -13,8 +13,8 @@ import ( "github.com/smartcontractkit/chainlink-ton/pkg/bindings" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/lib/access/rbac" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/smartcontractkit/mcms/sdk/ton" "github.com/smartcontractkit/mcms/types" diff --git a/sdk/ton/encoder.go b/sdk/ton/encoder.go index 658b1bedb..fbfc334aa 100644 --- a/sdk/ton/encoder.go +++ b/sdk/ton/encoder.go @@ -13,8 +13,8 @@ import ( chainsel "github.com/smartcontractkit/chain-selectors" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/smartcontractkit/mcms/sdk" sdkerrors "github.com/smartcontractkit/mcms/sdk/errors" diff --git a/sdk/ton/executor.go b/sdk/ton/executor.go index 12db95b7c..9bf59e49b 100644 --- a/sdk/ton/executor.go +++ b/sdk/ton/executor.go @@ -20,8 +20,8 @@ import ( "github.com/xssnick/tonutils-go/tvm/cell" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" ) const DefaultWaitBuffer = 250 * time.Millisecond diff --git a/sdk/ton/executor_test.go b/sdk/ton/executor_test.go index 91f659ac8..f742e5d27 100644 --- a/sdk/ton/executor_test.go +++ b/sdk/ton/executor_test.go @@ -17,7 +17,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/smartcontractkit/mcms/internal/testutils/chaintest" "github.com/smartcontractkit/mcms/types" diff --git a/sdk/ton/inspector.go b/sdk/ton/inspector.go index bb51faf8f..17e9de6b4 100644 --- a/sdk/ton/inspector.go +++ b/sdk/ton/inspector.go @@ -13,7 +13,7 @@ import ( "github.com/smartcontractkit/mcms/types" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" ) var _ sdk.Inspector = (*Inspector)(nil) diff --git a/sdk/ton/inspector_test.go b/sdk/ton/inspector_test.go index a115d3acb..c29f9efe8 100644 --- a/sdk/ton/inspector_test.go +++ b/sdk/ton/inspector_test.go @@ -16,7 +16,7 @@ import ( "github.com/stretchr/testify/require" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/mcms" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" "github.com/smartcontractkit/mcms/internal/testutils" "github.com/smartcontractkit/mcms/types" diff --git a/sdk/ton/timelock_configurer.go b/sdk/ton/timelock_configurer.go index ce1d8254d..1ab0424d7 100644 --- a/sdk/ton/timelock_configurer.go +++ b/sdk/ton/timelock_configurer.go @@ -13,7 +13,7 @@ import ( "github.com/smartcontractkit/chainlink-ton/pkg/bindings" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/timelock" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/smartcontractkit/mcms/sdk" "github.com/smartcontractkit/mcms/types" diff --git a/sdk/ton/timelock_configurer_test.go b/sdk/ton/timelock_configurer_test.go index 63bd747c6..395567ac4 100644 --- a/sdk/ton/timelock_configurer_test.go +++ b/sdk/ton/timelock_configurer_test.go @@ -7,7 +7,7 @@ import ( "testing" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/timelock" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" diff --git a/sdk/ton/timelock_converter.go b/sdk/ton/timelock_converter.go index 10324c8d1..d120d8b21 100644 --- a/sdk/ton/timelock_converter.go +++ b/sdk/ton/timelock_converter.go @@ -17,7 +17,7 @@ import ( "github.com/smartcontractkit/chainlink-ton/pkg/bindings" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/timelock" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" ) // DefaultSendAmount amount to send with timelock transactions (to cover gas fees) diff --git a/sdk/ton/timelock_executor.go b/sdk/ton/timelock_executor.go index 57259ebb8..c99aaaaf7 100644 --- a/sdk/ton/timelock_executor.go +++ b/sdk/ton/timelock_executor.go @@ -18,8 +18,8 @@ import ( "github.com/xssnick/tonutils-go/tvm/cell" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/timelock" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tlbe" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tlbe" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" ) var _ sdk.TimelockExecutor = (*timelockExecutor)(nil) diff --git a/sdk/ton/timelock_executor_test.go b/sdk/ton/timelock_executor_test.go index d72b946b2..0389e2493 100644 --- a/sdk/ton/timelock_executor_test.go +++ b/sdk/ton/timelock_executor_test.go @@ -15,7 +15,7 @@ import ( "github.com/xssnick/tonutils-go/ton" "github.com/xssnick/tonutils-go/tvm/cell" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/smartcontractkit/mcms/internal/testutils/chaintest" "github.com/smartcontractkit/mcms/types" diff --git a/sdk/ton/timelock_inspector.go b/sdk/ton/timelock_inspector.go index c51c24872..15402cee5 100644 --- a/sdk/ton/timelock_inspector.go +++ b/sdk/ton/timelock_inspector.go @@ -10,7 +10,7 @@ import ( "github.com/smartcontractkit/chainlink-ton/pkg/bindings/lib/access/rbac" "github.com/smartcontractkit/chainlink-ton/pkg/bindings/mcms/timelock" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/smartcontractkit/mcms/sdk" ) diff --git a/sdk/ton/timelock_inspector_test.go b/sdk/ton/timelock_inspector_test.go index a5a0c6df1..8cdf5b05d 100644 --- a/sdk/ton/timelock_inspector_test.go +++ b/sdk/ton/timelock_inspector_test.go @@ -14,7 +14,7 @@ import ( "github.com/xssnick/tonutils-go/ton/wallet" "github.com/xssnick/tonutils-go/tvm/cell" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" "github.com/smartcontractkit/mcms/internal/testutils/chaintest" diff --git a/sdk/ton/transaction.go b/sdk/ton/transaction.go index e6e5b452d..bb8ec651b 100644 --- a/sdk/ton/transaction.go +++ b/sdk/ton/transaction.go @@ -11,7 +11,7 @@ import ( "github.com/smartcontractkit/mcms/types" - "github.com/smartcontractkit/chainlink-ton/pkg/ton/tvm" + "github.com/smartcontractkit/chainlink-ton/cciplib/ton/tvm" ) func ValidateAdditionalFields(additionalFields json.RawMessage) error { From 9afa7f9eea3e570b9beb9c5ecb9336e7af323439 Mon Sep 17 00:00:00 2001 From: Oliver Townsend Date: Thu, 2 Jul 2026 15:46:11 -0700 Subject: [PATCH 2/2] remove local replaces --- go.mod | 4 ---- 1 file changed, 4 deletions(-) diff --git a/go.mod b/go.mod index 4c277e429..c04a107c4 100644 --- a/go.mod +++ b/go.mod @@ -321,7 +321,3 @@ require ( sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) - -replace github.com/smartcontractkit/chainlink-ton/cciplib => ../chainlink-ton/cciplib - -replace github.com/smartcontractkit/chainlink-ton => ../chainlink-ton