Interface TransactionOverrides

interface TransactionOverrides {
    accessList?: AccessList;
    chain?: ValidChains;
    chainId?: Numbers;
    common?: Common;
    from?: string;
    gas?: Numbers;
    gasLimit?: Numbers;
    gasPrice?: Numbers;
    hardfork?:
        | "chainstart"
        | "frontier"
        | "homestead"
        | "dao"
        | "tangerineWhistle"
        | "spuriousDragon"
        | "byzantium"
        | "constantinople"
        | "petersburg"
        | "istanbul"
        | "muirGlacier"
        | "berlin"
        | "london"
        | "altair"
        | "arrowGlacier"
        | "grayGlacier"
        | "bellatrix"
        | "merge"
        | "capella"
        | "shanghai";
    maxFeePerGas?: Numbers;
    maxPriorityFeePerGas?: Numbers;
    networkId?: Numbers;
    nonce?: Numbers;
    r?: Bytes;
    s?: Bytes;
    type?: Numbers;
    v?: Numbers;
    value?: Numbers;
    yParity?: string;
}

Hierarchy

  • Omit<Transaction, "to" | "data" | "input">
    • TransactionOverrides

Properties

accessList?: AccessList
chain?: ValidChains
chainId?: Numbers
common?: Common
from?: string
gas?: Numbers
gasLimit?: Numbers
gasPrice?: Numbers
hardfork?:
    | "chainstart"
    | "frontier"
    | "homestead"
    | "dao"
    | "tangerineWhistle"
    | "spuriousDragon"
    | "byzantium"
    | "constantinople"
    | "petersburg"
    | "istanbul"
    | "muirGlacier"
    | "berlin"
    | "london"
    | "altair"
    | "arrowGlacier"
    | "grayGlacier"
    | "bellatrix"
    | "merge"
    | "capella"
    | "shanghai"
maxFeePerGas?: Numbers
maxPriorityFeePerGas?: Numbers
networkId?: Numbers
nonce?: Numbers
r?: Bytes
s?: Bytes
type?: Numbers
value?: Numbers
yParity?: string