Skip to content

Commit 56be324

Browse files
authored
Merge branch 'main' into ccip-interfaces
2 parents bbb20de + 7eb0c57 commit 56be324

11 files changed

Lines changed: 92 additions & 74 deletions

File tree

.github/actions/setup-ccip-devenv/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ inputs:
1111
# builds the verifier/devenv Docker images, while go.mod pins the `ccv up` tooling
1212
# that generates their configs. A mismatch across config-format changes (e.g. #1193
1313
# bootstrap monitoring.Config) makes the verifier container exit on startup.
14-
default: 13227c2d12d0e5f422a87260dcb03f07dc585b79
14+
default: 3368a3af3d848ab0073f0ce64b48b625be3605c8
1515
canton-ref:
1616
description: >-
1717
chainlink-canton git ref. Leave empty to use the ref that triggered the workflow.

ccip/accessors/factory.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func loadConfig(path string) (*ccip.Config, error) {
3636
return &cfg, nil
3737
}
3838

39-
func CreateCantonAccessorFactory(lggr logger.Logger, genericConfig chainaccess.GenericConfig) (chainaccess.AccessorFactory, error) {
39+
func CreateCantonAccessorFactory(lggr logger.Logger, genericConfig chainaccess.GenericConfig) (chainaccess.AccessorFactory, error) { //nolint:staticcheck // registry still decodes GenericConfig until local config is supported
4040
configPath, ok := os.LookupEnv(CantonConfigPathEnv)
4141
if !ok {
4242
configPath = ccip.DefaultCantonConfigPath

deployment/adapters/aggregator_config_adapter.go

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,17 @@ type CantonCommitteeVerifierOnchain struct{}
3333

3434
// ApplySignatureConfigs implements [adapters.CommitteeVerifierOnchainAdapter].
3535
func (a *CantonCommitteeVerifierOnchain) ApplySignatureConfigs(ctx context.Context, env deployment.Environment, destChainSelector uint64, qualifier string, change adapters.SignatureConfigChange) error {
36-
panic("unimplemented")
36+
return nil
37+
}
38+
39+
// SetAllowedFinalityConfig implements [adapters.CommitteeVerifierOnchainAdapter].
40+
func (a *CantonCommitteeVerifierOnchain) SetAllowedFinalityConfig(ctx context.Context, env deployment.Environment, chainSelector uint64, qualifier string, waitForFinality bool, waitForSafe bool, blockDepth uint16) error {
41+
return nil
42+
}
43+
44+
// ApplyAllowlistUpdates implements [adapters.CommitteeVerifierOnchainAdapter].
45+
func (a *CantonCommitteeVerifierOnchain) ApplyAllowlistUpdates(ctx context.Context, env deployment.Environment, chainSelector uint64, qualifier string, destChainSelector uint64, allowlistEnabled bool, addedSenders []string, removedSenders []string) error {
46+
return nil
3747
}
3848

3949
// ScanCommitteeStates implements [adapters.CommitteeVerifierOnchainAdapter].

deployment/adapters/init.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import (
1111
ccipadapters "github.com/smartcontractkit/chainlink-ccip/deployment/v2_0_0/adapters"
1212
ccvadapters "github.com/smartcontractkit/chainlink-ccv/deployment/adapters"
1313
ccvshared "github.com/smartcontractkit/chainlink-ccv/deployment/shared"
14+
nodev1 "github.com/smartcontractkit/chainlink-protos/job-distributor/v1/node"
1415

1516
"github.com/smartcontractkit/chainlink-canton/deployment/operations/ccip/rmn_remote"
1617
)
@@ -21,6 +22,12 @@ var tokenPoolVersions = []string{
2122
}
2223

2324
func init() {
25+
// Map the JD proto Canton chain type to its chain-selectors family so ccv's
26+
// signing-key fetch (fetch_signing_keys) keeps Canton verifier chain configs
27+
// instead of skipping them as an unsupported type. Without this, canton NOPs never
28+
// reach state inference and on-chain canton signers fail to resolve to a NOP.
29+
ccvshared.RegisterChainTypeFamily(nodev1.ChainType_CHAIN_TYPE_CANTON, chainsel.FamilyCanton)
30+
2431
// Canonicalise canton committee signer addresses (raw secp256k1 pubkey ->
2532
// derived 20-byte ECDSA address) so ccv state inference can match on-chain
2633
// committee signers back to canton NOPs.

go.mod

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,24 @@ require (
2323
github.com/gin-gonic/gin v1.12.0
2424
github.com/go-playground/validator/v10 v10.30.3
2525
github.com/google/uuid v1.6.0
26-
github.com/icza/gox v0.2.9
26+
github.com/icza/gox v0.2.14
2727
github.com/jedib0t/go-pretty/v6 v6.8.1
2828
github.com/jpillora/backoff v1.0.0
2929
github.com/lib/pq v1.12.3
30-
github.com/moby/moby/api v1.54.2
30+
github.com/moby/moby/api v1.55.0
3131
github.com/oapi-codegen/runtime v1.4.2
3232
github.com/prometheus/client_golang v1.23.2
3333
github.com/rs/zerolog v1.35.1
3434
github.com/schollz/progressbar/v3 v3.19.0
3535
github.com/smartcontractkit/chain-selectors v1.0.104
36-
github.com/smartcontractkit/chainlink-ccip/chains/evm v0.0.0-20260629123053-9119c0d88425
37-
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260629123053-9119c0d88425
38-
github.com/smartcontractkit/chainlink-ccv v0.0.2-0.20260630070014-13227c2d12d0
39-
github.com/smartcontractkit/chainlink-ccv/build/devenv v0.0.2-0.20260630070014-13227c2d12d0
40-
github.com/smartcontractkit/chainlink-ccv/deployment v0.0.2-0.20260630070014-13227c2d12d0
36+
github.com/smartcontractkit/chainlink-ccip/chains/evm v0.0.0-20260702144426-865f1e5fe90d
37+
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260702144426-865f1e5fe90d
38+
github.com/smartcontractkit/chainlink-ccv v0.0.2-0.20260703085752-3368a3af3d84
39+
github.com/smartcontractkit/chainlink-ccv/build/devenv v0.0.2-0.20260703085752-3368a3af3d84
40+
github.com/smartcontractkit/chainlink-ccv/deployment v0.0.2-0.20260703085752-3368a3af3d84
4141
github.com/smartcontractkit/chainlink-common v0.11.2-0.20260506120607-7f10be016c89
4242
github.com/smartcontractkit/chainlink-deployments-framework v0.114.2
43-
github.com/smartcontractkit/chainlink-testing-framework/framework v0.16.6-0.20260623160408-12abc7b173d8
43+
github.com/smartcontractkit/chainlink-testing-framework/framework v0.16.6-0.20260630120514-36abe27604df
4444
github.com/smartcontractkit/chainlink-testing-framework/wasp v1.52.0
4545
github.com/smartcontractkit/go-daml v0.0.0-20260702101944-3a593d4e8e19
4646
github.com/spf13/viper v1.21.0
@@ -53,7 +53,7 @@ require (
5353
golang.org/x/crypto v0.53.0
5454
golang.org/x/exp v0.0.0-20260218203240-3dfff04db8fa
5555
golang.org/x/oauth2 v0.36.0
56-
google.golang.org/grpc v1.81.1
56+
google.golang.org/grpc v1.82.0
5757
gopkg.in/yaml.v3 v3.0.1
5858
)
5959

@@ -158,7 +158,7 @@ require (
158158
github.com/segmentio/ksuid v1.0.4 // indirect
159159
github.com/sercand/kuberesolver/v6 v6.0.0 // indirect
160160
github.com/smartcontractkit/ccip-owner-contracts v0.1.0 // indirect
161-
github.com/smartcontractkit/chainlink-ccv/integration/evm v0.0.0-20260630070014-13227c2d12d0 // indirect
161+
github.com/smartcontractkit/chainlink-ccv/integration/evm v0.0.0-20260702145243-1bc05d9d7d3a // indirect
162162
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20260423135514-5b1a7565a99c // indirect
163163
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20260423135514-5b1a7565a99c // indirect
164164
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20260423135514-5b1a7565a99c // indirect
@@ -441,10 +441,10 @@ require (
441441
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/message-discovery v0.0.0-20251211142334-5c3421fe2c8d // indirect
442442
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/verifier v0.0.0-20251211142334-5c3421fe2c8d // indirect
443443
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260505131349-78e491b80735 // indirect
444-
github.com/smartcontractkit/chainlink-protos/job-distributor v0.19.0 // indirect
444+
github.com/smartcontractkit/chainlink-protos/job-distributor v0.20.0
445445
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b // indirect
446446
github.com/smartcontractkit/chainlink-protos/node-platform v0.0.0-20260211172625-dff40e83b3c9 // indirect
447-
github.com/smartcontractkit/chainlink-protos/orchestrator v0.10.0 // indirect
447+
github.com/smartcontractkit/chainlink-protos/orchestrator v0.11.0 // indirect
448448
github.com/smartcontractkit/chainlink-sui v0.0.0-20260610194843-349ea43d69ce // indirect
449449
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.5 // indirect
450450
github.com/smartcontractkit/chainlink-ton v1.0.5-0.20260514223130-48bc90aca745 // indirect

go.sum

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -662,8 +662,8 @@ github.com/huandu/xstrings v1.5.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq
662662
github.com/huin/goupnp v1.3.0 h1:UvLUlWDNpoUdYzb2TCn+MuTWtcjXKSza2n6CBdQ0xXc=
663663
github.com/huin/goupnp v1.3.0/go.mod h1:gnGPsThkYa7bFi/KWmEysQRf48l2dvR5bxr2OFckNX8=
664664
github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
665-
github.com/icza/gox v0.2.9 h1:SAeM3n6l9qR1IOa3V16Q+FomKDSbX1RwqH4pEwNtLDs=
666-
github.com/icza/gox v0.2.9/go.mod h1:d62IGCt4ajK4/U7k/ldEF1Fi5jtP8C4hoGZiHQYfAi0=
665+
github.com/icza/gox v0.2.14 h1:f20wY6FAB1RuUa8TlTydil2C2aA5z01ee6A1FTKk5go=
666+
github.com/icza/gox v0.2.14/go.mod h1:d62IGCt4ajK4/U7k/ldEF1Fi5jtP8C4hoGZiHQYfAi0=
667667
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
668668
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
669669
github.com/influxdata/influxdb-client-go/v2 v2.4.0 h1:HGBfZYStlx3Kqvsv1h2pJixbCl/jhnFtxpKFAv9Tu5k=
@@ -887,8 +887,8 @@ github.com/moby/docker-image-spec v1.3.1 h1:jMKff3w6PgbfSa69GfNg+zN/XLhfXJGnEx3N
887887
github.com/moby/docker-image-spec v1.3.1/go.mod h1:eKmb5VW8vQEh/BAr2yvVNvuiJuY6UIocYsFu/DxxRpo=
888888
github.com/moby/go-archive v0.2.0 h1:zg5QDUM2mi0JIM9fdQZWC7U8+2ZfixfTYoHL7rWUcP8=
889889
github.com/moby/go-archive v0.2.0/go.mod h1:mNeivT14o8xU+5q1YnNrkQVpK+dnNe/K6fHqnTg4qPU=
890-
github.com/moby/moby/api v1.54.2 h1:wiat9QAhnDQjA7wk1kh/TqHz2I1uUA7M7t9SAl/JNXg=
891-
github.com/moby/moby/api v1.54.2/go.mod h1:+RQ6wluLwtYaTd1WnPLykIDPekkuyD/ROWQClE83pzs=
890+
github.com/moby/moby/api v1.55.0 h1:2/sexvQyqIWS8pRSCFddBfpW2qE7vR7FCL+vN8pxwMc=
891+
github.com/moby/moby/api v1.55.0/go.mod h1:+RQ6wluLwtYaTd1WnPLykIDPekkuyD/ROWQClE83pzs=
892892
github.com/moby/moby/client v0.4.0 h1:S+2XegzHQrrvTCvF6s5HFzcrywWQmuVnhOXe2kiWjIw=
893893
github.com/moby/moby/client v0.4.0/go.mod h1:QWPbvWchQbxBNdaLSpoKpCdf5E+WxFAgNHogCWDoa7g=
894894
github.com/moby/patternmatcher v0.6.1 h1:qlhtafmr6kgMIJjKJMDmMWq7WLkKIo23hsrpR3x084U=
@@ -1153,22 +1153,22 @@ github.com/smartcontractkit/chainlink-aptos v0.0.0-20260428085939-5c70de12dbfc h
11531153
github.com/smartcontractkit/chainlink-aptos v0.0.0-20260428085939-5c70de12dbfc/go.mod h1:zfE2R7887kiwXkGTHKPe5NBgwhFwIC3pnA2uAxrbvig=
11541154
github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20260428205619-2db1389501a1 h1:p0nFrTYrOQzDhWYm6suaM5CoWiXV5NV7llHnp6/Kn/8=
11551155
github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20260428205619-2db1389501a1/go.mod h1:1XxxpkgCmG/z6y30yRuVrcxre6zixIVX3xzi706Db/8=
1156-
github.com/smartcontractkit/chainlink-ccip/chains/evm v0.0.0-20260629123053-9119c0d88425 h1:zB133Pxk6x9Q1xzTCZYD/vZmjtY05X0a3ak6awlu328=
1157-
github.com/smartcontractkit/chainlink-ccip/chains/evm v0.0.0-20260629123053-9119c0d88425/go.mod h1:hLQIyjvTd/DT4NCRelVD72r2IAR4dGipMRzJLvhursM=
1156+
github.com/smartcontractkit/chainlink-ccip/chains/evm v0.0.0-20260702144426-865f1e5fe90d h1:6rdGrDTCmjgfVgUCZEW+WDWN5YwHSZk2dnL+oNmbxg0=
1157+
github.com/smartcontractkit/chainlink-ccip/chains/evm v0.0.0-20260702144426-865f1e5fe90d/go.mod h1:4tOS1KUc55ZCVpjBAwbgBM2hjdGaD4MbvmSq5Js8zPA=
11581158
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20260129103204-4c8453dd8139 h1:jkChf04hhdiMBApbb+lLDxHMY62Md6UeM7v++GSw3K8=
11591159
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20260129103204-4c8453dd8139/go.mod h1:wuhagkM/lU0GbV2YcrROOH0GlsfXJYwm6qmpa4CK70w=
11601160
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20260129103204-4c8453dd8139 h1:tw3K4UkH5XfW5SoyYkvAlbzrccoGSLdz/XkxD6nyGC8=
11611161
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20260129103204-4c8453dd8139/go.mod h1:1WcontO9PeuKdUf5HXfs3nuICtzUvFNnyCmrHkTCF9Y=
1162-
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260629123053-9119c0d88425 h1:UJAZtsPutcUIHiqoAmvRVwRYa+lnWHltJWxxUnuk0UA=
1163-
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260629123053-9119c0d88425/go.mod h1:xDXlDsou69NYOolOAj+KITRn9luER6Bg52NXelrLl+A=
1164-
github.com/smartcontractkit/chainlink-ccv v0.0.2-0.20260630070014-13227c2d12d0 h1:4T4PgyyaYeubmrG/JU/fW1UQ7D4UsujHaKjbWHSy/oc=
1165-
github.com/smartcontractkit/chainlink-ccv v0.0.2-0.20260630070014-13227c2d12d0/go.mod h1:lE5jWDhqdtSc31NppNys15kj7xh+qNRv9+Bu0UGICaA=
1166-
github.com/smartcontractkit/chainlink-ccv/build/devenv v0.0.2-0.20260630070014-13227c2d12d0 h1:VrSnybSIQz/hDAu9LBE4mkulAUwLClELzfHY3s6dXKI=
1167-
github.com/smartcontractkit/chainlink-ccv/build/devenv v0.0.2-0.20260630070014-13227c2d12d0/go.mod h1:Twj6hozpGTDJWC2+pet7GLJSIoGmVf+0NZt9qPl/Dgs=
1168-
github.com/smartcontractkit/chainlink-ccv/deployment v0.0.2-0.20260630070014-13227c2d12d0 h1:7TcjA/0ryVM6m6R3gSphmFvcuikyfaI9io13DzW++8Q=
1169-
github.com/smartcontractkit/chainlink-ccv/deployment v0.0.2-0.20260630070014-13227c2d12d0/go.mod h1:VlV/UtWMzRwmRecH9FTESXjRPkgVrWysVYFaEhzzrC4=
1170-
github.com/smartcontractkit/chainlink-ccv/integration/evm v0.0.0-20260630070014-13227c2d12d0 h1:U/M1D8ln4KpWtuMyqC+hd5KUA9WihDLEp6p0llzzrqg=
1171-
github.com/smartcontractkit/chainlink-ccv/integration/evm v0.0.0-20260630070014-13227c2d12d0/go.mod h1:T1MVaDuDaN1LTkJlp04TDTYJ+FKkQJ4nva3IYigu9bk=
1162+
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260702144426-865f1e5fe90d h1:ur6iz6AwuK6iBoAAAM8KMlEJb5Y7ihlJ4fk0acw2mJw=
1163+
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260702144426-865f1e5fe90d/go.mod h1:7VW7TwL0yIOQIoe39YwUfwYkt9P79tDR4Pb0h/Q7P3E=
1164+
github.com/smartcontractkit/chainlink-ccv v0.0.2-0.20260703085752-3368a3af3d84 h1:ye6iLO9DMQpPv7ekOfLfucgKt/20sePme4ISeHBu934=
1165+
github.com/smartcontractkit/chainlink-ccv v0.0.2-0.20260703085752-3368a3af3d84/go.mod h1:3XQmy2zQHrmufebP7dM+x595+gghxzyIKxK9wv91Rh8=
1166+
github.com/smartcontractkit/chainlink-ccv/build/devenv v0.0.2-0.20260703085752-3368a3af3d84 h1:iizBs022xhqg1ZCdk0JvjAK5QHfG1db8/zqzh4qL1Ko=
1167+
github.com/smartcontractkit/chainlink-ccv/build/devenv v0.0.2-0.20260703085752-3368a3af3d84/go.mod h1:UocRvvOzExogwiuXzJFZWeI9y3ryYogOQoq7492w5LY=
1168+
github.com/smartcontractkit/chainlink-ccv/deployment v0.0.2-0.20260703085752-3368a3af3d84 h1:zyhk5wJcmF7pCfZDKTeR4pneVyCQ7O2calzD83yi4dg=
1169+
github.com/smartcontractkit/chainlink-ccv/deployment v0.0.2-0.20260703085752-3368a3af3d84/go.mod h1:MUp3G8xL8EDpQOo5Me+HabfOMRgFqRYDGliAmW0nVx0=
1170+
github.com/smartcontractkit/chainlink-ccv/integration/evm v0.0.0-20260702145243-1bc05d9d7d3a h1:NFRZ6oiM7aTJ5Kz1G8t7izxB4on9qoTPCI5PTHeVP+8=
1171+
github.com/smartcontractkit/chainlink-ccv/integration/evm v0.0.0-20260702145243-1bc05d9d7d3a/go.mod h1:3PUKLvizVRdanwr5NkLeTWnQIYsT3VmGKZPUqAcLfus=
11721172
github.com/smartcontractkit/chainlink-common v0.11.2-0.20260506120607-7f10be016c89 h1:5z3LQ27MJmhiaeqp9S2TzbF5Wm4GGvUKAYOtE9AauR8=
11731173
github.com/smartcontractkit/chainlink-common v0.11.2-0.20260506120607-7f10be016c89/go.mod h1:G2AII0QmWzXx8Ag9IKnGN3h/gwwNnhHUOCviJievdvo=
11741174
github.com/smartcontractkit/chainlink-common/keystore v1.0.2 h1:AWisx4JT3QV8tcgh6J5NCrex+wAgTYpWyHsyNPSXzsQ=
@@ -1199,22 +1199,22 @@ github.com/smartcontractkit/chainlink-protos/chainlink-ccv/verifier v0.0.0-20251
11991199
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/verifier v0.0.0-20251211142334-5c3421fe2c8d/go.mod h1:5JdppgngCOUS76p61zCinSCgOhPeYQ+OcDUuome5THQ=
12001200
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260505131349-78e491b80735 h1:5bxDnwI0wuPoC0H5H3H2n9CnQPb5iakR6UmAY4j8KUg=
12011201
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260505131349-78e491b80735/go.mod h1:Jqt53s27Tr0jDl8mdBXg1xhu6F8Fci8JOuq43tgHOM8=
1202-
github.com/smartcontractkit/chainlink-protos/job-distributor v0.19.0 h1:FC+WdJ8YkRUlL94cN2EgdrA5TcJg04b82dqayq9rQz0=
1203-
github.com/smartcontractkit/chainlink-protos/job-distributor v0.19.0/go.mod h1:2ahgl5bI9+fMCD+dBC785Lak38Tb7ApdTe5I8a09Qp0=
1202+
github.com/smartcontractkit/chainlink-protos/job-distributor v0.20.0 h1:+KOmrq2mAgfKvEvBa89WzzdbX7InVDCZ8HJWix1/5f4=
1203+
github.com/smartcontractkit/chainlink-protos/job-distributor v0.20.0/go.mod h1:2ahgl5bI9+fMCD+dBC785Lak38Tb7ApdTe5I8a09Qp0=
12041204
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b h1:QuI6SmQFK/zyUlVWEf0GMkiUYBPY4lssn26nKSd/bOM=
12051205
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b/go.mod h1:qSTSwX3cBP3FKQwQacdjArqv0g6QnukjV4XuzO6UyoY=
12061206
github.com/smartcontractkit/chainlink-protos/node-platform v0.0.0-20260211172625-dff40e83b3c9 h1:hhevsu8k7tlDRrYZmgAh7V4avGQDMvus1bwIlial3Ps=
12071207
github.com/smartcontractkit/chainlink-protos/node-platform v0.0.0-20260211172625-dff40e83b3c9/go.mod h1:dkR2uYg9XYJuT1JASkPzWE51jjFkVb86P7a/yXe5/GM=
12081208
github.com/smartcontractkit/chainlink-protos/op-catalog v0.1.0 h1:hGEJFD2X3oNIPXQbtIPxCJyg5CcKglRCYBmESS+gmeQ=
12091209
github.com/smartcontractkit/chainlink-protos/op-catalog v0.1.0/go.mod h1:PjZD54vr6rIKEKQj6HNA4hllvYI/QpT+Zefj3tqkFAs=
1210-
github.com/smartcontractkit/chainlink-protos/orchestrator v0.10.0 h1:0eroOyBwmdoGUwUdvMI0/J7m5wuzNnJDMglSOK1sfNY=
1211-
github.com/smartcontractkit/chainlink-protos/orchestrator v0.10.0/go.mod h1:m/A3lqD7ms/RsQ9BT5P2uceYY0QX5mIt4KQxT2G6qEo=
1210+
github.com/smartcontractkit/chainlink-protos/orchestrator v0.11.0 h1:NXKTdIESAiCkVnPS6dyZP+NXVek3GzXa6P4uFAs0o8Y=
1211+
github.com/smartcontractkit/chainlink-protos/orchestrator v0.11.0/go.mod h1:m/A3lqD7ms/RsQ9BT5P2uceYY0QX5mIt4KQxT2G6qEo=
12121212
github.com/smartcontractkit/chainlink-protos/svr v1.1.1-0.20260203131522-bb8bc5c423b3 h1:X8Pekpv+cy0eW1laZTwATuYLTLZ6gRTxz1ZWOMtU74o=
12131213
github.com/smartcontractkit/chainlink-protos/svr v1.1.1-0.20260203131522-bb8bc5c423b3/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo=
12141214
github.com/smartcontractkit/chainlink-sui v0.0.0-20260610194843-349ea43d69ce h1:Xglr7eM24+Y9eMOhgK//QjXLDjPuT1oUAtdvsGqY8P0=
12151215
github.com/smartcontractkit/chainlink-sui v0.0.0-20260610194843-349ea43d69ce/go.mod h1:Y2kTVIsAUjqqSNGiEQomsaVH5XsBJzxov4j07MaDJOw=
1216-
github.com/smartcontractkit/chainlink-testing-framework/framework v0.16.6-0.20260623160408-12abc7b173d8 h1:xTOTSILns1Pncpzyb9AiseIrrqjr3LAPlyiYrdZvo7A=
1217-
github.com/smartcontractkit/chainlink-testing-framework/framework v0.16.6-0.20260623160408-12abc7b173d8/go.mod h1:nyOjn4ADJGqRMe3+4ZXSV+J/7nWb1H2Vx8Qk57eLRYA=
1216+
github.com/smartcontractkit/chainlink-testing-framework/framework v0.16.6-0.20260630120514-36abe27604df h1:a5PvGrH0Wgk5GtXWSXxlBfNPlyZ8x6FKDQ4UbNa6/Qk=
1217+
github.com/smartcontractkit/chainlink-testing-framework/framework v0.16.6-0.20260630120514-36abe27604df/go.mod h1:nyOjn4ADJGqRMe3+4ZXSV+J/7nWb1H2Vx8Qk57eLRYA=
12181218
github.com/smartcontractkit/chainlink-testing-framework/lib/grafana v1.50.0 h1:VIxK8u0Jd0Q/VuhmsNm6Bls6Tb31H/sA3A/rbc5hnhg=
12191219
github.com/smartcontractkit/chainlink-testing-framework/lib/grafana v1.50.0/go.mod h1:lyAu+oMXdNUzEDScj2DXB2IueY+SDXPPfyl/kb63tMM=
12201220
github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.5 h1:RwZXxdIAOyjp6cwc9Quxgr38k8r7ACz+Lxh9o/A6oH0=
@@ -1758,8 +1758,8 @@ google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyac
17581758
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
17591759
google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
17601760
google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=
1761-
google.golang.org/grpc v1.81.1 h1:VnnIIZ88UzOOKLukQi+ImGz8O1Wdp8nAGGnvOfEIWQQ=
1762-
google.golang.org/grpc v1.81.1/go.mod h1:xGH9GfzOyMTGIOXBJmXt+BX/V0kcdQbdcuwQ/zNw42I=
1761+
google.golang.org/grpc v1.82.0 h1:vguDnZUPjE26w09A63VoxZPnvPjB5Riyc0mkXPFmAIU=
1762+
google.golang.org/grpc v1.82.0/go.mod h1:yzTZ1TB1Z3SG+LIYaI+WiE8D5+PZ3ArnrSp8zF3+/ZA=
17631763
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
17641764
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
17651765
google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=

0 commit comments

Comments
 (0)