Interface TransactionBody

An interface for transaction body.

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

Hierarchy (view full)

Properties

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