Interface ValueOnlyTransactionInput

An interface for value-only transaction input.

interface ValueOnlyTransactionInput {
    address?: string;
    billing?: string;
    gas_price?: number;
    is_global?: boolean;
    nonce?: number;
    parent_tx_hash?: string;
    ref?: string;
    timestamp?: number;
    value?: any;
}

Hierarchy (view full)

Properties

address?: string
billing?: string
gas_price?: number
is_global?: boolean
nonce?: number
parent_tx_hash?: string
ref?: string
timestamp?: number
value?: any