Interface TransactionInput

An interface for transaction input.

interface TransactionInput {
    address?: string;
    billing?: string;
    gas_price?: number;
    nonce?: number;
    operation: SetOperation | SetMultiOperation;
    parent_tx_hash?: string;
    timestamp?: number;
}

Hierarchy (view full)

Properties

address?: string
billing?: string
gas_price?: number
nonce?: number
parent_tx_hash?: string
timestamp?: number