interface Operation {
    actor: string;
    fees: TxFee;
    hash: string;
    nonce: number;
    operator: string;
    params: any;
    status: boolean | "pending";
    timestamp: number;
}

Properties

actor: string
fees: TxFee
hash: string
nonce: number
operator: string
params: any
status: boolean | "pending"
timestamp: number