Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 842 Bytes

eth-connect.transactionobject.md

File metadata and controls

29 lines (23 loc) · 842 Bytes

Home > eth-connect > TransactionObject

TransactionObject type

Signature:

export type TransactionObject = {
    hash: TxHash;
    nonce: number;
    blockHash: TxHash;
    blockNumber: number;
    transactionIndex: number;
    from: Address;
    to: Address | null;
    value: BigNumber;
    gasPrice: BigNumber;
    gas: Quantity;
    input: Data;
    v?: Data;
    r?: Data;
    s?: Data;
};

References: TxHash, Address, BigNumber, Quantity, Data