Skip to main content

Signature

@coinbase/waas-sdk-webAPI


Type alias: Signature

Signature: Object

The object representing a Signature.

Type declaration

payload

payload: string

The hex-encoded payload to be signed. In the case of transactions, this corresponds to the hash of the unsigned transaction.

r

r: Hex

The ECDSA signature parameters for the signature.

Example

r: "0x1234", s: "0x5678", v: 0

s

s: Hex

signedPayload

signedPayload: string

The hex-encoded signed payload. In the case of transactions, this corresponds to the 65-byte V, R, S value. Note that this signed payload must be combined with a transaction object and then marshaled into RLP format before it can be broadcast on-chain.

v

v: number

Was this helpful?