mint_claim: TxDescriptor<{
    statement?: ClaimsStatementKind;
    value: bigint;
    vesting_schedule?: [bigint, bigint, number];
    who: FixedSizeBinary<20>;
}>

Mint a new claim to collect DOTs.

The dispatch origin for this call must be Root.

Parameters:

  • who: The Ethereum address allowed to collect this claim.
  • value: The number of DOTs that will be claimed.
  • vesting_schedule: An optional vesting schedule for these DOTs.
The weight of this call is invariant over the input parameters. We assume worst case that both vesting and statement is being inserted.

Total Complexity: O(1)