pub fn mint_claim<T: Config>(
    who: EthereumAddress,
    value: <<<T as Config>::VestingSchedule as VestingSchedule<<T as Config>::AccountId>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
    vesting_schedule: Option<(<<<T as Config>::VestingSchedule as VestingSchedule<<T as Config>::AccountId>>::Currency as Currency<<T as Config>::AccountId>>::Balance, <<<T as Config>::VestingSchedule as VestingSchedule<<T as Config>::AccountId>>::Currency as Currency<<T as Config>::AccountId>>::Balance, BlockNumberFor<T>)>,
    statement: Option<StatementKind>
)
Expand description

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)

§Warning: Doc-Only

This function is an automatically generated, and is doc-only, uncallable stub. See the real version in Pallet::mint_claim.