Skip to content

Commit c6b6eae

Browse files
authored
Bump chainlink-ton@83535910e2c0 and use bounded trace to confirm tx (#730)
1 parent e130c59 commit c6b6eae

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

.changeset/fruity-pugs-invent.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"chainlink-deployments-framework": patch
3+
---
4+
5+
Bump github.com/smartcontractkit/chainlink-ton@83535910e2c0 and use bounded trace to confirm tx

chain/ton/ton_chain.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010

1111
"github.com/smartcontractkit/chainlink-deployments-framework/chain/internal/common"
1212

13+
"github.com/smartcontractkit/chainlink-ton/pkg/bindings"
1314
"github.com/smartcontractkit/chainlink-ton/pkg/ton/tracetracking"
1415
)
1516

@@ -31,6 +32,6 @@ type Chain struct {
3132
// MakeDefaultConfirmFunc creates a default ConfirmFunc that waits for transaction trace.
3233
var MakeDefaultConfirmFunc = func(c ton.APIClientWrapped) ConfirmFunc {
3334
return func(ctx context.Context, tx *tlb.Transaction) error {
34-
return tracetracking.WaitForTrace(ctx, c, tx)
35+
return tracetracking.WaitForTrace(ctx, c, tx, bindings.DefaultTraceStopCondition)
3536
}
3637
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ require (
3636
github.com/smartcontractkit/chainlink-protos/op-catalog v0.0.4
3737
github.com/smartcontractkit/chainlink-testing-framework/framework v0.14.0
3838
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.2
39-
github.com/smartcontractkit/chainlink-ton v0.0.0-20260204205804-642f6ebe4e7e
39+
github.com/smartcontractkit/chainlink-ton v0.0.0-20260213025045-83535910e2c0
4040
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250815105909-75499abc4335
4141
github.com/smartcontractkit/freeport v0.1.3-0.20250716200817-cb5dfd0e369e
4242
github.com/smartcontractkit/libocr v0.0.0-20250912173940-f3ab0246e23d

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -770,8 +770,8 @@ github.com/smartcontractkit/chainlink-testing-framework/framework v0.14.0 h1:uaT
770770
github.com/smartcontractkit/chainlink-testing-framework/framework v0.14.0/go.mod h1:43xdIQuqw/gzfazsqJkBrGdF25TIJDiY/Ak/YrWFTmU=
771771
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.2 h1:ZJ/8Jx6Be5//TyjPi1pS1uotnmcYq5vVkSyISIymSj8=
772772
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.2/go.mod h1:kHYJnZUqiPF7/xN5273prV+srrLJkS77GbBXHLKQpx0=
773-
github.com/smartcontractkit/chainlink-ton v0.0.0-20260204205804-642f6ebe4e7e h1:0tN41HRIrNAVr5Chr8xynwpJNJaYMqGxqlIu+E7SOG8=
774-
github.com/smartcontractkit/chainlink-ton v0.0.0-20260204205804-642f6ebe4e7e/go.mod h1:IZvH2r16xcQvVLB7AtjU112wnHfEku+29OlI1vCQHCQ=
773+
github.com/smartcontractkit/chainlink-ton v0.0.0-20260213025045-83535910e2c0 h1:+5wW8HbwNhHEBOanhSiT7sxyFAAeDP9TvQ6GwJ4STps=
774+
github.com/smartcontractkit/chainlink-ton v0.0.0-20260213025045-83535910e2c0/go.mod h1:IZvH2r16xcQvVLB7AtjU112wnHfEku+29OlI1vCQHCQ=
775775
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250815105909-75499abc4335 h1:7bxYNrPpygn8PUSBiEKn8riMd7CXMi/4bjTy0fHhcrY=
776776
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250815105909-75499abc4335/go.mod h1:ccjEgNeqOO+bjPddnL4lUrNLzyCvGCxgBjJdhFX3wa8=
777777
github.com/smartcontractkit/chainlink-tron/relayer/gotron-sdk v0.0.4 h1:J4qtAo0ZmgX5pIr8Y5mdC+J2rj2e/6CTUC263t6mGOM=

0 commit comments

Comments
 (0)