Evm authorization object

See ethereum rpc spec for the meaning of fields

interface Authorization {
    address: string;
    chainId: bigint;
    nonce: number;
    r: string;
    s: string;
    yParity: number;
}

Properties

address: string

20-byte hex

chainId: bigint

uint256

nonce: number

uint64

r: string

32-byte hex

s: string

32-byte hex

yParity: number

0 | 1