Interface SetMultiTransactionInput

An interface for multi-set (SET) transaction input.

interface SetMultiTransactionInput {
    address?: string;
    billing?: string;
    gas_price?: number;
    nonce?: number;
    op_list?: SetOperation[];
    parent_tx_hash?: string;
    timestamp?: number;
}

Hierarchy (view full)

Properties

address?: string
billing?: string
gas_price?: number
nonce?: number
op_list?: SetOperation[]
parent_tx_hash?: string
timestamp?: number