Interface AppliedTransferOperation

Transfers asset from one account to another.

interface AppliedTransferOperation {
    block: number;
    op: {
        type: "transfer_operation";
        value: {
            amount: {
                amount: string;
                nai: string;
                precision: number;
            };
            from: string;
            memo: string;
            to: string;
        };
    };
    op_in_trx: number;
    timestamp: string;
    trx_id: string;
    trx_in_block: number;
    virtual_op: number;
}

Hierarchy (view full)

Properties

block: number
op: {
    type: "transfer_operation";
    value: {
        amount: {
            amount: string;
            nai: string;
            precision: number;
        };
        from: string;
        memo: string;
        to: string;
    };
}
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number