Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ require (
github.com/smartcontractkit/chain-selectors v1.0.89
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10
github.com/smartcontractkit/chainlink-protos/billing/go v0.0.0-20251024234028-0988426d98f4
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260226130359-963f935e0396
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260320153346-314ec8dbe5a4
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b
github.com/smartcontractkit/chainlink-protos/node-platform v0.0.0-20260205130626-db2a2aab956b
github.com/smartcontractkit/chainlink-protos/storage-service v0.3.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ type SecretIdentifier struct {

// SecretsRequestParams is the JSON-RPC params for "confidential.secrets.get".
type SecretsRequestParams struct {
WorkflowID string `json:"workflow_id"`
Secrets []SecretIdentifier `json:"secrets"`
EnclavePublicKey string `json:"enclave_public_key"`
Attestation string `json:"attestation,omitempty"`
WorkflowID string `json:"workflow_id"`
Owner string `json:"owner"` // Ethereum address (hex, 0x-prefixed)
ExecutionID string `json:"execution_id"` // 32 bytes, hex-encoded
Secrets []SecretIdentifier `json:"secrets"`
EnclavePublicKey string `json:"enclave_public_key"`
Attestation string `json:"attestation,omitempty"`
}

// SecretEntry is a single secret in the relay DON's response.
Expand All @@ -30,10 +32,10 @@ type SecretEntry struct {
}

// SecretsResponseResult is the JSON-RPC result for "confidential.secrets.get".
// The enclave uses its own config for MasterPublicKey and threshold (config.T),
// so the relay handler only returns the encrypted shares per secret.
type SecretsResponseResult struct {
Secrets []SecretEntry `json:"secrets"`
MasterPublicKey string `json:"master_public_key"`
Threshold int `json:"threshold"`
Secrets []SecretEntry `json:"secrets"`
}

// CapabilityRequestParams is the JSON-RPC params for "confidential.capability.execute".
Expand Down
30 changes: 26 additions & 4 deletions pkg/capabilities/v2/actions/confidentialworkflow/client.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 13 additions & 2 deletions pkg/capabilities/v2/chain-capabilities/aptos/client.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

56 changes: 52 additions & 4 deletions pkg/capabilities/v2/chain-capabilities/evm/client.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions pkg/capabilities/v2/chain-capabilities/solana/generate.go

This file was deleted.

Loading