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
chainId: bigint
nonce: number
r: string
s: string
yParity: number