Interface TransferToVestingOperation

This operation converts liquid token (BLURT or liquid SMT) into VFS (Vesting Fund Shares, VESTS or vesting SMT) at the current exchange rate. With this operation it is possible to give another account vesting shares so that faucets can pre-fund new accounts with vesting shares.

interface TransferToVestingOperation {
    0: "transfer_to_vesting";
    1: {
        amount: string | Asset;
        from: string;
        to: string;
    };
}

Hierarchy (view full)

Properties

0 1

Properties

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

Type declaration

  • amount: string | Asset

    must be BLURT or liquid variant of SMT

  • from: string
  • to: string