Interface TransferOperation

Transfers asset from one account to another.

interface TransferOperation {
    0: "transfer";
    1: {
        amount: string | Asset;
        from: string;
        memo: string;
        to: string;
    };
}

Hierarchy (view full)

Properties

0 1

Properties

0
1: {
    amount: string | Asset;
    from: string;
    memo: string;
    to: string;
}