Interface AppliedTransferToVestingOperation

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 AppliedTransferToVestingOperation {
    block: number;
    op: {
        type: "transfer_to_vesting_operation";
        value: {
            amount: {
                amount: string;
                nai: string;
                precision: number;
            };
            from: 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_to_vesting_operation";
    value: {
        amount: {
            amount: string;
            nai: string;
            precision: number;
        };
        from: string;
        to: string;
    };
}

Type declaration

  • type: "transfer_to_vesting_operation"
  • value: {
        amount: {
            amount: string;
            nai: string;
            precision: number;
        };
        from: string;
        to: string;
    }
    • amount: {
          amount: string;
          nai: string;
          precision: number;
      }

      must be BLURT or liquid variant of SMT

      • amount: string
      • nai: string
      • precision: number
    • from: string
    • to: string
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number