Transaction object input type

interface TransactionObjectInput {
    chainId?: string;
    data?: string;
    from: string;
    gas?: string;
    gasPrice?: string;
    to?: string;
    value?: string;
}

Hierarchy

  • BaseTransactionObjectInput
    • TransactionObjectInput

Properties

chainId?: string
data?: string
from: string
gas?: string
gasPrice?: string
to?: string
value?: string