Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 610 Bytes

eth-connect.transactionoptions.md

File metadata and controls

22 lines (16 loc) · 610 Bytes

Home > eth-connect > TransactionOptions

TransactionOptions type

Signature:

export type TransactionOptions = {
    from: Address;
    to: Address;
    gas?: BigNumber.Value;
    gasPrice?: BigNumber.Value;
    value?: BigNumber.Value;
    data: string;
    nonce?: BigNumber.Value;
};

References: Address, BigNumber.Value