Type Alias vested_transfer

vested_transfer: TxDescriptor<
    {
        schedule: { locked: bigint; per_block: bigint; starting_block: number };
        target: MultiAddress;
    },
>

Create a vested transfer.

The dispatch origin for this call must be Signed.

  • target: The account receiving the vested funds.
  • schedule: The vesting schedule attached to the transfer.

Emits VestingCreated.

NOTE: This will unlock all schedules through the current block.

  • O(1).