Interface TransactionDto

interface TransactionDto {
    block_hash: string;
    block_height: number;
    block_signed_at: string;
    explorer_url: string;
    fees_paid: string;
    from: string;
    gas_offered: string;
    gas_price: string;
    gas_spent: string;
    input_data: string;
    log_events: LogEventDto[];
    successful: boolean;
    to: null | string;
    tx_hash: string;
    tx_index: number;
    value: string;
}

Properties

block_hash: string
block_height: number
block_signed_at: string
explorer_url: string
fees_paid: string
from: string
gas_offered: string
gas_price: string
gas_spent: string
input_data: string
log_events: LogEventDto[]
successful: boolean
to: null | string
tx_hash: string
tx_index: number
value: string