Skip to content

Commit e7e034e

Browse files
patricios-spacejadepark-devkrebernisak
authored
fix: bump to latest main commit hash (#579)
* fix: bump to latest main commit hash * fix: exit code breaking change * fix: golint * feat: bump mcms and cldf versions * fix: bump mcms to last commit * fix: bump cldf to last commit * fix: update mod graph * fix: bump mcms and cldf to last commit * fix: gomods tidy * fix: bump core * fix: bump mcms and cldf, backpedal core bump * fix: bump mcms and cldf to commits in main * fix: bump github.com/smartcontractkit/chainlink to commit in PR * test: chainlink/deployment to latest * fix: revert bump core to latest * chore: bump core * chore: bump core * chore: bump core/deployment * chore: modgraph * Bump .core_version * Bump .core_version * Bump github.com/smartcontractkit/chainlink/deployment to latest * Disable local e2e tests * Bump CLDF * go mod tidy * ./modgraph > go.md * go mod tidy --------- Co-authored-by: Jonghyeon Park <jadepark.dev@gmail.com> Co-authored-by: Kristijan <kristijan.rebernisak@gmail.com>
1 parent 121e215 commit e7e034e

15 files changed

Lines changed: 170 additions & 133 deletions

File tree

.github/workflows/relayer-integration-test.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,13 @@ jobs:
5353
id: tests
5454
run: |
5555
pushd integration-tests
56-
if [ "${{ matrix.test-suite }}" = "short" ]; then
57-
echo "Running short tests (skipping long-running ones)..."
58-
nix develop .#ccip-e2e -c go test -v -short -count=1 -p=1 -timeout 15m ./...
59-
else
60-
# TODO: run conditionally(build tags)
61-
echo "Running all tests..."
62-
nix develop .#ccip-e2e -c go test -v -count=1 -p=1 -timeout 30m ./...
63-
fi
56+
# TODO: reenable e2e tests once https://github.com/smartcontractkit/chainlink/pull/21063 is merged
57+
#
58+
# if [ "${{ matrix.test-suite }}" = "short" ]; then
59+
# echo "Running short tests (skipping long-running ones)..."
60+
# nix develop .#ccip-e2e -c go test -v -short -count=1 -p=1 -timeout 15m ./...
61+
# else
62+
# # TODO: run conditionally(build tags)
63+
# echo "Running all tests..."
64+
# nix develop .#ccip-e2e -c go test -v -count=1 -p=1 -timeout 30m ./...
65+
# fi

deployment/ccip/cs_test_helpers.go

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,12 @@ func SendCCIPMessage(
349349
if err != nil {
350350
return 0, nil, fmt.Errorf("failed to send transaction: %w", err)
351351
}
352-
353-
if receivedMsg.ExitCode != 0 {
354-
return 0, nil, fmt.Errorf("transaction failed: with exitcode %d: %s", receivedMsg.ExitCode, receivedMsg.ExitCode.Describe())
352+
exitCode, err := receivedMsg.ExitCode()
353+
if err != nil {
354+
return 0, nil, fmt.Errorf("failed to get exit code: %w", err)
355+
}
356+
if exitCode != 0 {
357+
return 0, nil, fmt.Errorf("transaction failed: with exitcode %d: %s", exitCode, exitCode.Describe())
355358
}
356359

357360
e.Logger.Infow("transaction sent", "blockID", blockID, "receivedMsg", receivedMsg)
@@ -405,13 +408,22 @@ func waitForReceivedMsgFlatten(e cldf.Environment, clientConn ton.APIClientWrapp
405408
e.Logger.Infof("Flattening %d outgoing internal messages", len(currentMsg.OutgoingInternalReceivedMessages))
406409

407410
for i, outMsg := range currentMsg.OutgoingInternalReceivedMessages {
408-
e.Logger.Infof("Outgoing message %d: exit code %v, success: %v, bounced: %v, status: %v",
409-
i, outMsg.ExitCode, outMsg.Success, outMsg.EmittedBouncedMessage, outMsg.Status())
410-
411-
if outMsg.ExitCode != 0 {
412-
e.Logger.Errorf("Outgoing message %d failed with exit code %v", i, outMsg.ExitCode)
411+
exitCode, exitCodeStr := func() (*tvm.ExitCode, string) {
412+
exitCode, err := outMsg.ExitCode()
413+
exitCodeStr := fmt.Sprintf("%d", exitCode)
414+
if err != nil {
415+
e.Logger.Errorf("failed to get exit code for outgoing message %d: %v", i, err)
416+
exitCodeStr = "unknown"
417+
}
418+
return &exitCode, exitCodeStr
419+
}()
420+
e.Logger.Infof("Outgoing message %d: exit code %s, success: %v, bounced: %v, status: %v",
421+
i, exitCodeStr, outMsg.Succeeded(), outMsg.EmittedBouncedMessage, outMsg.Status())
422+
423+
if exitCode != nil && *exitCode != tvm.ExitCodeSuccess {
424+
e.Logger.Errorf("Outgoing message %d failed with exit code %v: %s", i, exitCode, exitCode.Describe())
413425
}
414-
if !outMsg.Success {
426+
if !outMsg.Succeeded() {
415427
e.Logger.Errorf("Outgoing message %d was not successful", i)
416428
}
417429
if outMsg.EmittedBouncedMessage {

deployment/go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/smartcontractkit/chainlink-ton/deployment
33
go 1.25.5
44

55
// Notice: we pin chainlink-ton root module to avoid conflicts with indirect dependency via CLDF.
6-
// replace github.com/smartcontractkit/chainlink-ton => ../
6+
replace github.com/smartcontractkit/chainlink-ton => ../
77

88
require (
99
github.com/Masterminds/semver/v3 v3.4.0
@@ -12,10 +12,10 @@ require (
1212
github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20260129103204-4c8453dd8139
1313
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260129103204-4c8453dd8139
1414
github.com/smartcontractkit/chainlink-common v0.9.6-0.20260114142648-bd9e1b483e96
15-
github.com/smartcontractkit/chainlink-deployments-framework v0.78.1-0.20260130170219-7f3060452d15
15+
github.com/smartcontractkit/chainlink-deployments-framework v0.80.1-0.20260209182815-b296b7df28a6
1616
github.com/smartcontractkit/chainlink-protos/job-distributor v0.17.0
17-
github.com/smartcontractkit/chainlink-ton v0.0.0-20260204140636-bdb7490ffb1d
18-
github.com/smartcontractkit/mcms v0.34.1-0.20260130153451-2cd7db171382
17+
github.com/smartcontractkit/chainlink-ton v0.0.0-20260204205804-642f6ebe4e7e
18+
github.com/smartcontractkit/mcms v0.35.1-0.20260209175626-b68b54b6e8d0
1919
github.com/stretchr/testify v1.11.1
2020
github.com/xssnick/tonutils-go v1.14.1
2121
golang.org/x/sync v0.19.0
@@ -38,7 +38,7 @@ require (
3838
github.com/beorn7/perks v1.0.1 // indirect
3939
github.com/bits-and-blooms/bitset v1.20.0 // indirect
4040
github.com/blendle/zapdriver v1.3.1 // indirect
41-
github.com/block-vision/sui-go-sdk v1.1.2 // indirect
41+
github.com/block-vision/sui-go-sdk v1.1.4 // indirect
4242
github.com/btcsuite/btcd v0.24.2 // indirect
4343
github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect
4444
github.com/btcsuite/btcd/btcutil v1.1.6 // indirect
@@ -162,12 +162,12 @@ require (
162162
github.com/sirupsen/logrus v1.9.3 // indirect
163163
github.com/smartcontractkit/chainlink-aptos v0.0.0-20251024142440-51f2ad2652a2 // indirect
164164
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20260121163256-85accaf3d28d // indirect
165-
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 // indirect
165+
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5 // indirect
166166
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 // indirect
167167
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250808121824-2c3544aab8f3 // indirect
168168
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20251124151448-0448aefdaab9 // indirect
169169
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b // indirect
170-
github.com/smartcontractkit/chainlink-sui v0.0.0-20251104205009-00bd79b81471 // indirect
170+
github.com/smartcontractkit/chainlink-sui v0.0.0-20260205175622-33e65031f9a9 // indirect
171171
github.com/smartcontractkit/chainlink-testing-framework/framework v0.13.14-0.20260202230832-eb33f42188d1 // indirect
172172
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250908203554-5bd9d2fe9513 // indirect
173173
github.com/smartcontractkit/freeport v0.1.3-0.20250716200817-cb5dfd0e369e // indirect

deployment/go.sum

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ github.com/bits-and-blooms/bitset v1.20.0 h1:2F+rfL86jE2d/bmw7OhqUg2Sj/1rURkBn3M
7575
github.com/bits-and-blooms/bitset v1.20.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8=
7676
github.com/blendle/zapdriver v1.3.1 h1:C3dydBOWYRiOk+B8X9IVZ5IOe+7cl+tGOexN4QqHfpE=
7777
github.com/blendle/zapdriver v1.3.1/go.mod h1:mdXfREi6u5MArG4j9fewC+FGnXaBR+T4Ox4J2u4eHCc=
78-
github.com/block-vision/sui-go-sdk v1.1.2 h1:p9DPfb51mEcTmF0Lx9ORpH+Nh9Rzg4Sv3Pu5gsJZ2AA=
79-
github.com/block-vision/sui-go-sdk v1.1.2/go.mod h1:KlibJnwEpWt8qhQkIPxc/2ZE4kwh0Md6LvMHmW5kemA=
78+
github.com/block-vision/sui-go-sdk v1.1.4 h1:1PPgYxQjo1P9UCgFOPTvDCuGEglRL32NwjKPulR4FQk=
79+
github.com/block-vision/sui-go-sdk v1.1.4/go.mod h1:t8mWASwfyv+EyqHGO9ZrcDiCJWGOFEXqq50TMJ8GQco=
8080
github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ=
8181
github.com/btcsuite/btcd v0.22.0-beta.0.20220111032746-97732e52810c/go.mod h1:tjmYdS6MLJ5/s0Fj4DbLgSbDHbEqLJrtnHecBFkdz5M=
8282
github.com/btcsuite/btcd v0.23.5-0.20231215221805-96c9fd8078fd/go.mod h1:nm3Bko6zh6bWP60UxwoT5LzdGJsQJaPo6HjduXq9p6A=
@@ -634,16 +634,16 @@ github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20260129103204-4c8453
634634
github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20260129103204-4c8453dd8139/go.mod h1:ZtZ+wtqU9JsJEmbiCsavVVEbhywpgMF7q/IpD9Eaq48=
635635
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20260121163256-85accaf3d28d h1:xdFpzbApEMz4Rojg2Y2OjFlrh0wu7eB10V2tSZGW5y8=
636636
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20260121163256-85accaf3d28d/go.mod h1:bgmqE7x9xwmIVr8PqLbC0M5iPm4AV2DBl596lO6S5Sw=
637-
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 h1:QhcYGEhRLInr1/qh/3RJiVdvJ0nxBHKhPe65WLbSBnU=
638-
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg=
637+
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5 h1:Z4t2ZY+ZyGWxtcXvPr11y4o3CGqhg3frJB5jXkCSvWA=
638+
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg=
639639
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260129103204-4c8453dd8139 h1:gv/LQsSNon2/pS2CE/5auodMmHvUw7IKXzPMrgfPLBI=
640640
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260129103204-4c8453dd8139/go.mod h1:gUbichNQBqk+fBF2aV40ZkzFmAJ8SygH6DEPd3cJkQE=
641641
github.com/smartcontractkit/chainlink-common v0.9.6-0.20260114142648-bd9e1b483e96 h1:ZnBBOLyMLJjgQQm7WRJl8sA9Q2RhwagJ+WR62VnA3MY=
642642
github.com/smartcontractkit/chainlink-common v0.9.6-0.20260114142648-bd9e1b483e96/go.mod h1:DAwaVSiQMgAsCjHa8nOnIAM9GixuIQWsgEZFGpf3JxE=
643643
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 h1:FJAFgXS9oqASnkS03RE1HQwYQQxrO4l46O5JSzxqLgg=
644644
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10/go.mod h1:oiDa54M0FwxevWwyAX773lwdWvFYYlYHHQV1LQ5HpWY=
645-
github.com/smartcontractkit/chainlink-deployments-framework v0.78.1-0.20260130170219-7f3060452d15 h1:3QTQ+G8ybzhV69Ua+lyGbQauZ11mV7j/8/VOTEGJgFg=
646-
github.com/smartcontractkit/chainlink-deployments-framework v0.78.1-0.20260130170219-7f3060452d15/go.mod h1:KNKQnFqU/OuGB30L1qcWa5j5PqNvxglx6/2Wa9AzZPo=
645+
github.com/smartcontractkit/chainlink-deployments-framework v0.80.1-0.20260209182815-b296b7df28a6 h1:wVGho+uL3UEqhzMtAXmtZDUQ14J1Fmm7PkqJDuJWd1c=
646+
github.com/smartcontractkit/chainlink-deployments-framework v0.80.1-0.20260209182815-b296b7df28a6/go.mod h1:0EzSyjHDLYSNqo3Bp9lSQs53CTaGbXHB5ovCa6BoOOM=
647647
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250808121824-2c3544aab8f3 h1:SRMNzCdQnF2x6+QlL5YSzVeWyJb/BXqMrg+zSGaBPVg=
648648
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250808121824-2c3544aab8f3/go.mod h1:3Lsp38qxen9PABVF+O5eocveQev+hyo9HLAgRodBD4Q=
649649
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20251124151448-0448aefdaab9 h1:QRWXJusIj/IRY5Pl3JclNvDre0cZPd/5NbILwc4RV2M=
@@ -654,12 +654,10 @@ github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-202510021
654654
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b/go.mod h1:qSTSwX3cBP3FKQwQacdjArqv0g6QnukjV4XuzO6UyoY=
655655
github.com/smartcontractkit/chainlink-protos/op-catalog v0.0.4 h1:AEnxv4HM3WD1RbQkRiFyb9cJ6YKAcqBp1CpIcFdZfuo=
656656
github.com/smartcontractkit/chainlink-protos/op-catalog v0.0.4/go.mod h1:PjZD54vr6rIKEKQj6HNA4hllvYI/QpT+Zefj3tqkFAs=
657-
github.com/smartcontractkit/chainlink-sui v0.0.0-20251104205009-00bd79b81471 h1:EaLuGs7jZ6Vm2iv6rNK3bQ3XN5CRbFd4knjjvaD1zFc=
658-
github.com/smartcontractkit/chainlink-sui v0.0.0-20251104205009-00bd79b81471/go.mod h1:VlyZhVw+a93Sk8rVHOIH6tpiXrMzuWLZrjs1eTIExW8=
657+
github.com/smartcontractkit/chainlink-sui v0.0.0-20260205175622-33e65031f9a9 h1:KyPROV+v7P8VdiU7JhVuGLcDlEBsURSpQmSCgNBTY+s=
658+
github.com/smartcontractkit/chainlink-sui v0.0.0-20260205175622-33e65031f9a9/go.mod h1:KpEWZJMLwbdMHeHQz9rbkES0vRrx4nk6OQXyhlHb9/8=
659659
github.com/smartcontractkit/chainlink-testing-framework/framework v0.13.14-0.20260202230832-eb33f42188d1 h1:JijOMT/94w/mt2q69vBQodliDlVfe+jqeaSTQJP3uxo=
660660
github.com/smartcontractkit/chainlink-testing-framework/framework v0.13.14-0.20260202230832-eb33f42188d1/go.mod h1:IQC7fXKDsFjD1vb0Jh83WWY4BCFhN1fkcn+z3oSuFIA=
661-
github.com/smartcontractkit/chainlink-ton v0.0.0-20260204140636-bdb7490ffb1d h1:zviCFzJpf6jk/801HkyysQUaYFCEi3bbLGwXq+C2cQM=
662-
github.com/smartcontractkit/chainlink-ton v0.0.0-20260204140636-bdb7490ffb1d/go.mod h1:inuV/00WFuYwAXFUNLfXYc5wcHOEgVd2Ne2vwAp0zj0=
663661
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250908203554-5bd9d2fe9513 h1:XRNxgcNqagXu6e4smJuS1crRK5cUAcCVd7u+iLduHDM=
664662
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250908203554-5bd9d2fe9513/go.mod h1:ccjEgNeqOO+bjPddnL4lUrNLzyCvGCxgBjJdhFX3wa8=
665663
github.com/smartcontractkit/chainlink-tron/relayer/gotron-sdk v0.0.5-0.20250422175525-b7575d96bd4d h1:qLmSOOtB/Ogn79eIDkuujOu8M5Jd747V1H7Brk/nTvo=
@@ -670,8 +668,8 @@ github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 h1:12i
670668
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7/go.mod h1:FX7/bVdoep147QQhsOPkYsPEXhGZjeYx6lBSaSXtZOA=
671669
github.com/smartcontractkit/libocr v0.0.0-20250912173940-f3ab0246e23d h1:LokA9PoCNb8mm8mDT52c3RECPMRsGz1eCQORq+J3n74=
672670
github.com/smartcontractkit/libocr v0.0.0-20250912173940-f3ab0246e23d/go.mod h1:Acy3BTBxou83ooMESLO90s8PKSu7RvLCzwSTbxxfOK0=
673-
github.com/smartcontractkit/mcms v0.34.1-0.20260130153451-2cd7db171382 h1:voT3/lKxI6OPUumpuEw5WJhYLCeHPnEE0fEBv/R0RJw=
674-
github.com/smartcontractkit/mcms v0.34.1-0.20260130153451-2cd7db171382/go.mod h1:DH/ecjBXpQspUzhwL81WB2zWGYNz8uICZ1XCfKbDlC4=
671+
github.com/smartcontractkit/mcms v0.35.1-0.20260209175626-b68b54b6e8d0 h1:H6GXXs71EGZBk3Vr6Ren3PzkY5l3F6RUFaAJ5Gn7Gj8=
672+
github.com/smartcontractkit/mcms v0.35.1-0.20260209175626-b68b54b6e8d0/go.mod h1:GVgE0Friw/XKcgua03ZRPeo23lxaMCkwuIIjk6qbKW0=
675673
github.com/spf13/cast v1.10.0 h1:h2x0u2shc1QuLHfxi+cTJvs30+ZAHOGRic8uyGTDWxY=
676674
github.com/spf13/cast v1.10.0/go.mod h1:jNfB8QC9IA6ZuY2ZjDp0KtFO2LZZlg4S/7bzP6qqeHo=
677675
github.com/spf13/pflag v1.0.10 h1:4EBh2KAYBwaONj6b2Ye1GiHfwjqyROoF4RwYO+vPwFk=

devenv/go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace (
77

88
// Use local chainlink-ton/deployment module,
99
// but pin chainlink-ton root module to avoid conflicts with indirect dependency via CLDF.
10-
// github.com/smartcontractkit/chainlink-ton => ../
10+
github.com/smartcontractkit/chainlink-ton => ../
1111
github.com/smartcontractkit/chainlink-ton/deployment => ../deployment
1212
)
1313

@@ -18,9 +18,9 @@ require (
1818
github.com/rs/zerolog v1.34.0
1919
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260129103204-4c8453dd8139
2020
github.com/smartcontractkit/chainlink-common v0.9.6-0.20260114142648-bd9e1b483e96
21-
github.com/smartcontractkit/chainlink-deployments-framework v0.78.1-0.20260130170219-7f3060452d15
21+
github.com/smartcontractkit/chainlink-deployments-framework v0.80.1-0.20260209182815-b296b7df28a6
2222
github.com/smartcontractkit/chainlink-testing-framework/framework v0.13.14-0.20260202230832-eb33f42188d1
23-
github.com/smartcontractkit/chainlink-ton v0.0.0-20260204140636-bdb7490ffb1d
23+
github.com/smartcontractkit/chainlink-ton v0.0.0-20260204205804-642f6ebe4e7e
2424
github.com/smartcontractkit/chainlink-ton/deployment v0.0.0-20260204140636-bdb7490ffb1d
2525
github.com/xssnick/tonutils-go v1.14.1
2626
)
@@ -170,19 +170,19 @@ require (
170170
github.com/smartcontractkit/chainlink-aptos v0.0.0-20251024142440-51f2ad2652a2 // indirect
171171
github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20260129103204-4c8453dd8139 // indirect
172172
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20260121163256-85accaf3d28d // indirect
173-
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20251014191100-bad58388f0c9 // indirect
173+
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250912190424-fd2e35d7deb5 // indirect
174174
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 // indirect
175175
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250808121824-2c3544aab8f3 // indirect
176176
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20251210101658-1c5c8e4c4f15 // indirect
177177
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20251124151448-0448aefdaab9 // indirect
178178
github.com/smartcontractkit/chainlink-protos/job-distributor v0.17.0 // indirect
179179
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b // indirect
180-
github.com/smartcontractkit/chainlink-sui v0.0.0-20251104205009-00bd79b81471 // indirect
180+
github.com/smartcontractkit/chainlink-sui v0.0.0-20260205175622-33e65031f9a9 // indirect
181181
github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250908203554-5bd9d2fe9513 // indirect
182182
github.com/smartcontractkit/freeport v0.1.3-0.20250716200817-cb5dfd0e369e // indirect
183183
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 // indirect
184184
github.com/smartcontractkit/libocr v0.0.0-20250912173940-f3ab0246e23d // indirect
185-
github.com/smartcontractkit/mcms v0.34.1-0.20260130153451-2cd7db171382 // indirect
185+
github.com/smartcontractkit/mcms v0.35.1-0.20260209175626-b68b54b6e8d0 // indirect
186186
github.com/spf13/cast v1.10.0 // indirect
187187
github.com/stephenlacy/go-ethereum-hdwallet v0.0.0-20230913225845-a4fa94429863 // indirect
188188
github.com/streamingfast/logging v0.0.0-20230608130331-f22c91403091 // indirect

0 commit comments

Comments
 (0)