mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-20 09:15:42 +00:00
7b56ab15b4
* Run cargo fmt on the whole code base * Second run * Add CI check * Fix compilation * More unnecessary braces * Handle weights * Use --all * Use correct attributes... * Fix UI tests * AHHHHHHHHH * 🤦 * Docs * Fix compilation * 🤷 * Please stop * 🤦 x 2 * More * make rustfmt.toml consistent with polkadot Co-authored-by: André Silva <andrerfosilva@gmail.com>
429 lines
14 KiB
Rust
429 lines
14 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2019-2021 Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! # Vesting Pallet
|
|
//!
|
|
//! - [`Config`]
|
|
//! - [`Call`]
|
|
//!
|
|
//! ## Overview
|
|
//!
|
|
//! A simple pallet providing a means of placing a linear curve on an account's locked balance. This
|
|
//! pallet ensures that there is a lock in place preventing the balance to drop below the *unvested*
|
|
//! amount for any reason other than transaction fee payment.
|
|
//!
|
|
//! As the amount vested increases over time, the amount unvested reduces. However, locks remain in
|
|
//! place and explicit action is needed on behalf of the user to ensure that the amount locked is
|
|
//! equivalent to the amount remaining to be vested. This is done through a dispatchable function,
|
|
//! either `vest` (in typical case where the sender is calling on their own behalf) or `vest_other`
|
|
//! in case the sender is calling on another account's behalf.
|
|
//!
|
|
//! ## Interface
|
|
//!
|
|
//! This pallet implements the `VestingSchedule` trait.
|
|
//!
|
|
//! ### Dispatchable Functions
|
|
//!
|
|
//! - `vest` - Update the lock, reducing it in line with the amount "vested" so far.
|
|
//! - `vest_other` - Update the lock of another account, reducing it in line with the amount
|
|
//! "vested" so far.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
mod benchmarking;
|
|
#[cfg(test)]
|
|
mod mock;
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
pub mod weights;
|
|
|
|
use codec::{Decode, Encode};
|
|
use frame_support::{
|
|
ensure,
|
|
pallet_prelude::*,
|
|
traits::{
|
|
Currency, ExistenceRequirement, Get, LockIdentifier, LockableCurrency, VestingSchedule,
|
|
WithdrawReasons,
|
|
},
|
|
};
|
|
use frame_system::{ensure_root, ensure_signed, pallet_prelude::*};
|
|
pub use pallet::*;
|
|
use sp_runtime::{
|
|
traits::{AtLeast32BitUnsigned, Convert, MaybeSerializeDeserialize, StaticLookup, Zero},
|
|
RuntimeDebug,
|
|
};
|
|
use sp_std::{fmt::Debug, prelude::*};
|
|
pub use weights::WeightInfo;
|
|
|
|
type BalanceOf<T> =
|
|
<<T as Config>::Currency as Currency<<T as frame_system::Config>::AccountId>>::Balance;
|
|
type MaxLocksOf<T> =
|
|
<<T as Config>::Currency as LockableCurrency<<T as frame_system::Config>::AccountId>>::MaxLocks;
|
|
|
|
const VESTING_ID: LockIdentifier = *b"vesting ";
|
|
|
|
/// Struct to encode the vesting schedule of an individual account.
|
|
#[derive(Encode, Decode, Copy, Clone, PartialEq, Eq, RuntimeDebug)]
|
|
pub struct VestingInfo<Balance, BlockNumber> {
|
|
/// Locked amount at genesis.
|
|
pub locked: Balance,
|
|
/// Amount that gets unlocked every block after `starting_block`.
|
|
pub per_block: Balance,
|
|
/// Starting block for unlocking(vesting).
|
|
pub starting_block: BlockNumber,
|
|
}
|
|
|
|
impl<Balance: AtLeast32BitUnsigned + Copy, BlockNumber: AtLeast32BitUnsigned + Copy>
|
|
VestingInfo<Balance, BlockNumber>
|
|
{
|
|
/// Amount locked at block `n`.
|
|
pub fn locked_at<BlockNumberToBalance: Convert<BlockNumber, Balance>>(
|
|
&self,
|
|
n: BlockNumber,
|
|
) -> Balance {
|
|
// Number of blocks that count toward vesting
|
|
// Saturating to 0 when n < starting_block
|
|
let vested_block_count = n.saturating_sub(self.starting_block);
|
|
let vested_block_count = BlockNumberToBalance::convert(vested_block_count);
|
|
// Return amount that is still locked in vesting
|
|
let maybe_balance = vested_block_count.checked_mul(&self.per_block);
|
|
if let Some(balance) = maybe_balance {
|
|
self.locked.saturating_sub(balance)
|
|
} else {
|
|
Zero::zero()
|
|
}
|
|
}
|
|
}
|
|
|
|
#[frame_support::pallet]
|
|
pub mod pallet {
|
|
use super::*;
|
|
|
|
#[pallet::config]
|
|
pub trait Config: frame_system::Config {
|
|
/// The overarching event type.
|
|
type Event: From<Event<Self>> + IsType<<Self as frame_system::Config>::Event>;
|
|
|
|
/// The currency trait.
|
|
type Currency: LockableCurrency<Self::AccountId>;
|
|
|
|
/// Convert the block number into a balance.
|
|
type BlockNumberToBalance: Convert<Self::BlockNumber, BalanceOf<Self>>;
|
|
|
|
/// The minimum amount transferred to call `vested_transfer`.
|
|
#[pallet::constant]
|
|
type MinVestedTransfer: Get<BalanceOf<Self>>;
|
|
|
|
/// Weight information for extrinsics in this pallet.
|
|
type WeightInfo: WeightInfo;
|
|
}
|
|
|
|
/// Information regarding the vesting of a given account.
|
|
#[pallet::storage]
|
|
#[pallet::getter(fn vesting)]
|
|
pub type Vesting<T: Config> =
|
|
StorageMap<_, Blake2_128Concat, T::AccountId, VestingInfo<BalanceOf<T>, T::BlockNumber>>;
|
|
|
|
#[pallet::pallet]
|
|
#[pallet::generate_store(pub(super) trait Store)]
|
|
pub struct Pallet<T>(_);
|
|
|
|
#[pallet::genesis_config]
|
|
pub struct GenesisConfig<T: Config> {
|
|
pub vesting: Vec<(T::AccountId, T::BlockNumber, T::BlockNumber, BalanceOf<T>)>,
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl<T: Config> Default for GenesisConfig<T> {
|
|
fn default() -> Self {
|
|
GenesisConfig { vesting: Default::default() }
|
|
}
|
|
}
|
|
|
|
#[pallet::genesis_build]
|
|
impl<T: Config> GenesisBuild<T> for GenesisConfig<T> {
|
|
fn build(&self) {
|
|
use sp_runtime::traits::Saturating;
|
|
|
|
// Generate initial vesting configuration
|
|
// * who - Account which we are generating vesting configuration for
|
|
// * begin - Block when the account will start to vest
|
|
// * length - Number of blocks from `begin` until fully vested
|
|
// * liquid - Number of units which can be spent before vesting begins
|
|
for &(ref who, begin, length, liquid) in self.vesting.iter() {
|
|
let balance = T::Currency::free_balance(who);
|
|
assert!(!balance.is_zero(), "Currencies must be init'd before vesting");
|
|
// Total genesis `balance` minus `liquid` equals funds locked for vesting
|
|
let locked = balance.saturating_sub(liquid);
|
|
let length_as_balance = T::BlockNumberToBalance::convert(length);
|
|
let per_block = locked / length_as_balance.max(sp_runtime::traits::One::one());
|
|
|
|
Vesting::<T>::insert(who, VestingInfo { locked, per_block, starting_block: begin });
|
|
let reasons = WithdrawReasons::TRANSFER | WithdrawReasons::RESERVE;
|
|
T::Currency::set_lock(VESTING_ID, who, locked, reasons);
|
|
}
|
|
}
|
|
}
|
|
|
|
#[pallet::event]
|
|
#[pallet::generate_deposit(pub(super) fn deposit_event)]
|
|
#[pallet::metadata(T::AccountId = "AccountId", BalanceOf<T> = "Balance")]
|
|
pub enum Event<T: Config> {
|
|
/// The amount vested has been updated. This could indicate more funds are available. The
|
|
/// balance given is the amount which is left unvested (and thus locked).
|
|
/// \[account, unvested\]
|
|
VestingUpdated(T::AccountId, BalanceOf<T>),
|
|
/// An \[account\] has become fully vested. No further vesting can happen.
|
|
VestingCompleted(T::AccountId),
|
|
}
|
|
|
|
/// Error for the vesting pallet.
|
|
#[pallet::error]
|
|
pub enum Error<T> {
|
|
/// The account given is not vesting.
|
|
NotVesting,
|
|
/// An existing vesting schedule already exists for this account that cannot be clobbered.
|
|
ExistingVestingSchedule,
|
|
/// Amount being transferred is too low to create a vesting schedule.
|
|
AmountLow,
|
|
}
|
|
|
|
#[pallet::call]
|
|
impl<T: Config> Pallet<T> {
|
|
/// Unlock any vested funds of the sender account.
|
|
///
|
|
/// The dispatch origin for this call must be _Signed_ and the sender must have funds still
|
|
/// locked under this pallet.
|
|
///
|
|
/// Emits either `VestingCompleted` or `VestingUpdated`.
|
|
///
|
|
/// # <weight>
|
|
/// - `O(1)`.
|
|
/// - DbWeight: 2 Reads, 2 Writes
|
|
/// - Reads: Vesting Storage, Balances Locks, [Sender Account]
|
|
/// - Writes: Vesting Storage, Balances Locks, [Sender Account]
|
|
/// # </weight>
|
|
#[pallet::weight(T::WeightInfo::vest_locked(MaxLocksOf::<T>::get())
|
|
.max(T::WeightInfo::vest_unlocked(MaxLocksOf::<T>::get()))
|
|
)]
|
|
pub fn vest(origin: OriginFor<T>) -> DispatchResult {
|
|
let who = ensure_signed(origin)?;
|
|
Self::update_lock(who)
|
|
}
|
|
|
|
/// Unlock any vested funds of a `target` account.
|
|
///
|
|
/// The dispatch origin for this call must be _Signed_.
|
|
///
|
|
/// - `target`: The account whose vested funds should be unlocked. Must have funds still
|
|
/// locked under this pallet.
|
|
///
|
|
/// Emits either `VestingCompleted` or `VestingUpdated`.
|
|
///
|
|
/// # <weight>
|
|
/// - `O(1)`.
|
|
/// - DbWeight: 3 Reads, 3 Writes
|
|
/// - Reads: Vesting Storage, Balances Locks, Target Account
|
|
/// - Writes: Vesting Storage, Balances Locks, Target Account
|
|
/// # </weight>
|
|
#[pallet::weight(T::WeightInfo::vest_other_locked(MaxLocksOf::<T>::get())
|
|
.max(T::WeightInfo::vest_other_unlocked(MaxLocksOf::<T>::get()))
|
|
)]
|
|
pub fn vest_other(
|
|
origin: OriginFor<T>,
|
|
target: <T::Lookup as StaticLookup>::Source,
|
|
) -> DispatchResult {
|
|
ensure_signed(origin)?;
|
|
Self::update_lock(T::Lookup::lookup(target)?)
|
|
}
|
|
|
|
/// Create a vested transfer.
|
|
///
|
|
/// The dispatch origin for this call must be _Signed_.
|
|
///
|
|
/// - `target`: The account that should be transferred the vested funds.
|
|
/// - `amount`: The amount of funds to transfer and will be vested.
|
|
/// - `schedule`: The vesting schedule attached to the transfer.
|
|
///
|
|
/// Emits `VestingCreated`.
|
|
///
|
|
/// # <weight>
|
|
/// - `O(1)`.
|
|
/// - DbWeight: 3 Reads, 3 Writes
|
|
/// - Reads: Vesting Storage, Balances Locks, Target Account, [Sender Account]
|
|
/// - Writes: Vesting Storage, Balances Locks, Target Account, [Sender Account]
|
|
/// # </weight>
|
|
#[pallet::weight(T::WeightInfo::vested_transfer(MaxLocksOf::<T>::get()))]
|
|
pub fn vested_transfer(
|
|
origin: OriginFor<T>,
|
|
target: <T::Lookup as StaticLookup>::Source,
|
|
schedule: VestingInfo<BalanceOf<T>, T::BlockNumber>,
|
|
) -> DispatchResult {
|
|
let transactor = ensure_signed(origin)?;
|
|
ensure!(schedule.locked >= T::MinVestedTransfer::get(), Error::<T>::AmountLow);
|
|
|
|
let who = T::Lookup::lookup(target)?;
|
|
ensure!(!Vesting::<T>::contains_key(&who), Error::<T>::ExistingVestingSchedule);
|
|
|
|
T::Currency::transfer(
|
|
&transactor,
|
|
&who,
|
|
schedule.locked,
|
|
ExistenceRequirement::AllowDeath,
|
|
)?;
|
|
|
|
Self::add_vesting_schedule(
|
|
&who,
|
|
schedule.locked,
|
|
schedule.per_block,
|
|
schedule.starting_block,
|
|
)
|
|
.expect("user does not have an existing vesting schedule; q.e.d.");
|
|
|
|
Ok(())
|
|
}
|
|
|
|
/// Force a vested transfer.
|
|
///
|
|
/// The dispatch origin for this call must be _Root_.
|
|
///
|
|
/// - `source`: The account whose funds should be transferred.
|
|
/// - `target`: The account that should be transferred the vested funds.
|
|
/// - `amount`: The amount of funds to transfer and will be vested.
|
|
/// - `schedule`: The vesting schedule attached to the transfer.
|
|
///
|
|
/// Emits `VestingCreated`.
|
|
///
|
|
/// # <weight>
|
|
/// - `O(1)`.
|
|
/// - DbWeight: 4 Reads, 4 Writes
|
|
/// - Reads: Vesting Storage, Balances Locks, Target Account, Source Account
|
|
/// - Writes: Vesting Storage, Balances Locks, Target Account, Source Account
|
|
/// # </weight>
|
|
#[pallet::weight(T::WeightInfo::force_vested_transfer(MaxLocksOf::<T>::get()))]
|
|
pub fn force_vested_transfer(
|
|
origin: OriginFor<T>,
|
|
source: <T::Lookup as StaticLookup>::Source,
|
|
target: <T::Lookup as StaticLookup>::Source,
|
|
schedule: VestingInfo<BalanceOf<T>, T::BlockNumber>,
|
|
) -> DispatchResult {
|
|
ensure_root(origin)?;
|
|
ensure!(schedule.locked >= T::MinVestedTransfer::get(), Error::<T>::AmountLow);
|
|
|
|
let target = T::Lookup::lookup(target)?;
|
|
let source = T::Lookup::lookup(source)?;
|
|
ensure!(!Vesting::<T>::contains_key(&target), Error::<T>::ExistingVestingSchedule);
|
|
|
|
T::Currency::transfer(
|
|
&source,
|
|
&target,
|
|
schedule.locked,
|
|
ExistenceRequirement::AllowDeath,
|
|
)?;
|
|
|
|
Self::add_vesting_schedule(
|
|
&target,
|
|
schedule.locked,
|
|
schedule.per_block,
|
|
schedule.starting_block,
|
|
)
|
|
.expect("user does not have an existing vesting schedule; q.e.d.");
|
|
|
|
Ok(())
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<T: Config> Pallet<T> {
|
|
/// (Re)set or remove the pallet's currency lock on `who`'s account in accordance with their
|
|
/// current unvested amount.
|
|
fn update_lock(who: T::AccountId) -> DispatchResult {
|
|
let vesting = Self::vesting(&who).ok_or(Error::<T>::NotVesting)?;
|
|
let now = <frame_system::Pallet<T>>::block_number();
|
|
let locked_now = vesting.locked_at::<T::BlockNumberToBalance>(now);
|
|
|
|
if locked_now.is_zero() {
|
|
T::Currency::remove_lock(VESTING_ID, &who);
|
|
Vesting::<T>::remove(&who);
|
|
Self::deposit_event(Event::<T>::VestingCompleted(who));
|
|
} else {
|
|
let reasons = WithdrawReasons::TRANSFER | WithdrawReasons::RESERVE;
|
|
T::Currency::set_lock(VESTING_ID, &who, locked_now, reasons);
|
|
Self::deposit_event(Event::<T>::VestingUpdated(who, locked_now));
|
|
}
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl<T: Config> VestingSchedule<T::AccountId> for Pallet<T>
|
|
where
|
|
BalanceOf<T>: MaybeSerializeDeserialize + Debug,
|
|
{
|
|
type Moment = T::BlockNumber;
|
|
type Currency = T::Currency;
|
|
|
|
/// Get the amount that is currently being vested and cannot be transferred out of this account.
|
|
fn vesting_balance(who: &T::AccountId) -> Option<BalanceOf<T>> {
|
|
if let Some(v) = Self::vesting(who) {
|
|
let now = <frame_system::Pallet<T>>::block_number();
|
|
let locked_now = v.locked_at::<T::BlockNumberToBalance>(now);
|
|
Some(T::Currency::free_balance(who).min(locked_now))
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
|
|
/// Adds a vesting schedule to a given account.
|
|
///
|
|
/// If there already exists a vesting schedule for the given account, an `Err` is returned
|
|
/// and nothing is updated.
|
|
///
|
|
/// On success, a linearly reducing amount of funds will be locked. In order to realise any
|
|
/// reduction of the lock over time as it diminishes, the account owner must use `vest` or
|
|
/// `vest_other`.
|
|
///
|
|
/// Is a no-op if the amount to be vested is zero.
|
|
fn add_vesting_schedule(
|
|
who: &T::AccountId,
|
|
locked: BalanceOf<T>,
|
|
per_block: BalanceOf<T>,
|
|
starting_block: T::BlockNumber,
|
|
) -> DispatchResult {
|
|
if locked.is_zero() {
|
|
return Ok(())
|
|
}
|
|
if Vesting::<T>::contains_key(who) {
|
|
Err(Error::<T>::ExistingVestingSchedule)?
|
|
}
|
|
let vesting_schedule = VestingInfo { locked, per_block, starting_block };
|
|
Vesting::<T>::insert(who, vesting_schedule);
|
|
// it can't fail, but even if somehow it did, we don't really care.
|
|
let res = Self::update_lock(who.clone());
|
|
debug_assert!(res.is_ok());
|
|
Ok(())
|
|
}
|
|
|
|
/// Remove a vesting schedule for a given account.
|
|
fn remove_vesting_schedule(who: &T::AccountId) {
|
|
Vesting::<T>::remove(who);
|
|
// it can't fail, but even if somehow it did, we don't really care.
|
|
let res = Self::update_lock(who.clone());
|
|
debug_assert!(res.is_ok());
|
|
}
|
|
}
|