pub fn create_recovery<T: Config>(
    friends: Vec<T::AccountId>,
    threshold: u16,
    delay_period: BlockNumberFor<T>
)
Expand description

Create a recovery configuration for your account. This makes your account recoverable.

Payment: ConfigDepositBase + FriendDepositFactor * #_of_friends balance will be reserved for storing the recovery configuration. This deposit is returned in full when the user calls remove_recovery.

The dispatch origin for this call must be Signed.

Parameters:

  • friends: A list of friends you trust to vouch for recovery attempts. Should be ordered and contain no duplicate values.
  • threshold: The number of friends that must vouch for a recovery attempt before the account can be recovered. Should be less than or equal to the length of the list of friends.
  • delay_period: The number of blocks after a recovery attempt is initialized that needs to pass before the account can be recovered.

Warning: Doc-Only

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