Skip to main content
Version: 1.13.1

Type Alias: VerifierCall

VerifierCall = { body: Uint8Array; method: string; signal?: AbortSignal; url: string; }

Defined in: verifiers/transport.ts:16

One unary call to a verifier, fully described so a transport needs no schema knowledge.

Properties

body

body: Uint8Array

Defined in: verifiers/transport.ts:25

Protobuf-encoded request message, without gRPC framing.


method

method: string

Defined in: verifiers/transport.ts:23

Fully-qualified gRPC method path, e.g. /chainlink_ccv.verifier.v1.Verifier/GetVerifierResultsForMessage.


signal?

optional signal?: AbortSignal

Defined in: verifiers/transport.ts:27

Cancels the call; carries both the caller's cancellation and the per-call timeout.


url

url: string

Defined in: verifiers/transport.ts:21

Endpoint URL, verbatim as configured by the caller. Its scheme selects the wire protocol and is the transport's to interpret: grpcWebTransport accepts http(s)://.