Interface EthereumSignature

Represents an Ethereum signature consisting of the components v, r, and s.

interface EthereumSignature {
    r: Bytes;
    s: Bytes;
    v: number;
}

Properties

r s v

Properties

The "r" value of the signature.

The "s" value of the signature.

v: number

The recovery id.