mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-16 22:31:03 +00:00
cb944dc548
### Summary This PR introduces new dispatchables to the treasury pallet, allowing spends of various asset types. The enhanced features of the treasury pallet, in conjunction with the asset-rate pallet, are set up and enabled for Westend and Rococo. ### Westend and Rococo runtimes. Polkadot/Kusams/Rococo Treasury can accept proposals for `spends` of various asset kinds by specifying the asset's location and ID. #### Treasury Instance New Dispatchables: - `spend(AssetKind, AssetBalance, Beneficiary, Option<ValidFrom>)` - propose and approve a spend; - `payout(SpendIndex)` - payout an approved spend or retry a failed payout - `check_payment(SpendIndex)` - check the status of a payout; - `void_spend(SpendIndex)` - void previously approved spend; > existing spend dispatchable renamed to spend_local in this context, the `AssetKind` parameter contains the asset's location and it's corresponding `asset_id`, for example: `USDT` on `AssetHub`, ``` rust location = MultiLocation(0, X1(Parachain(1000))) asset_id = MultiLocation(0, X2(PalletInstance(50), GeneralIndex(1984))) ``` the `Beneficiary` parameter is a `MultiLocation` in the context of the asset's location, for example ``` rust // the Fellowship salary pallet's location / account FellowshipSalaryPallet = MultiLocation(1, X2(Parachain(1001), PalletInstance(64))) // or custom `AccountId` Alice = MultiLocation(0, AccountId32(network: None, id: [1,...])) ``` the `AssetBalance` represents the amount of the `AssetKind` to be transferred to the `Beneficiary`. For permission checks, the asset amount is converted to the native amount and compared against the maximum spendable amount determined by the commanding spend origin. the `spend` dispatchable allows for batching spends with different `ValidFrom` arguments, enabling milestone-based spending. If the expectations tied to an approved spend are not met, it is possible to void the spend later using the `void_spend` dispatchable. Asset Rate Pallet provides the conversion rate from the `AssetKind` to the native balance. #### Asset Rate Instance Dispatchables: - `create(AssetKind, Rate)` - initialize a conversion rate to the native balance for the given asset - `update(AssetKind, Rate)` - update the conversion rate to the native balance for the given asset - `remove(AssetKind)` - remove an existing conversion rate to the native balance for the given asset the pallet's dispatchables can be executed by the Root or Treasurer origins. ### Treasury Pallet Treasury Pallet can accept proposals for `spends` of various asset kinds and pay them out through the implementation of the `Pay` trait. New Dispatchables: - `spend(Config::AssetKind, AssetBalance, Config::Beneficiary, Option<ValidFrom>)` - propose and approve a spend; - `payout(SpendIndex)` - payout an approved spend or retry a failed payout; - `check_payment(SpendIndex)` - check the status of a payout; - `void_spend(SpendIndex)` - void previously approved spend; > existing spend dispatchable renamed to spend_local The parameters' types of the `spend` dispatchable exposed via the pallet's `Config` and allows to propose and accept a spend of a certain amount. An approved spend can be claimed via the `payout` within the `Config::SpendPeriod`. Clients provide an implementation of the `Pay` trait which can pay an asset of the `AssetKind` to the `Beneficiary` in `AssetBalance` units. The implementation of the Pay trait might not have an immediate final payment status, for example if implemented over `XCM` and the actual transfer happens on a remote chain. The `check_status` dispatchable can be executed to update the spend's payment state and retry the `payout` if the payment has failed. --------- Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> Co-authored-by: command-bot <>
249 lines
7.7 KiB
Rust
249 lines
7.7 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 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.
|
|
|
|
//! # Asset Rate Pallet
|
|
//!
|
|
//! - [`Config`]
|
|
//! - [`Call`]
|
|
//!
|
|
//! ## Overview
|
|
//!
|
|
//! The AssetRate pallet provides means of setting conversion rates for some asset to native
|
|
//! balance.
|
|
//!
|
|
//! The supported dispatchable functions are documented in the [`Call`] enum.
|
|
//!
|
|
//! ### Terminology
|
|
//!
|
|
//! * **Asset balance**: The balance type of an arbitrary asset. The network might only know about
|
|
//! the identifier of the asset and nothing more.
|
|
//! * **Native balance**: The balance type of the network's native currency.
|
|
//!
|
|
//! ### Goals
|
|
//!
|
|
//! The asset-rate system in Substrate is designed to make the following possible:
|
|
//!
|
|
//! * Providing a soft conversion for the balance of supported assets to a default asset class.
|
|
//! * Updating existing conversion rates.
|
|
//!
|
|
//! ## Interface
|
|
//!
|
|
//! ### Permissioned Functions
|
|
//!
|
|
//! * `create`: Creates a new asset conversion rate.
|
|
//! * `remove`: Removes an existing asset conversion rate.
|
|
//! * `update`: Overwrites an existing assert conversion rate.
|
|
//!
|
|
//! Please refer to the [`Call`] enum and its associated variants for documentation on each
|
|
//! function.
|
|
//!
|
|
//! ### Assumptions
|
|
//!
|
|
//! * Conversion rates are only used as estimates, and are not designed to be precise or closely
|
|
//! tracking real world values.
|
|
//! * All conversion rates reflect the ration of some asset to native, e.g. native = asset * rate.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
use frame_support::traits::{fungible::Inspect, tokens::ConversionFromAssetBalance};
|
|
use sp_runtime::{traits::Zero, FixedPointNumber, FixedU128};
|
|
use sp_std::boxed::Box;
|
|
|
|
pub use pallet::*;
|
|
pub use weights::WeightInfo;
|
|
|
|
#[cfg(feature = "runtime-benchmarks")]
|
|
mod benchmarking;
|
|
#[cfg(test)]
|
|
mod mock;
|
|
#[cfg(test)]
|
|
mod tests;
|
|
pub mod weights;
|
|
#[cfg(feature = "runtime-benchmarks")]
|
|
pub use benchmarking::AssetKindFactory;
|
|
|
|
// Type alias for `frame_system`'s account id.
|
|
type AccountIdOf<T> = <T as frame_system::Config>::AccountId;
|
|
// This pallet's asset kind and balance type.
|
|
type AssetKindOf<T> = <T as Config>::AssetKind;
|
|
// Generic fungible balance type.
|
|
type BalanceOf<T> = <<T as Config>::Currency as Inspect<AccountIdOf<T>>>::Balance;
|
|
|
|
#[frame_support::pallet]
|
|
pub mod pallet {
|
|
use super::*;
|
|
use frame_support::pallet_prelude::*;
|
|
use frame_system::pallet_prelude::*;
|
|
|
|
#[pallet::pallet]
|
|
pub struct Pallet<T>(_);
|
|
|
|
#[pallet::config]
|
|
pub trait Config: frame_system::Config {
|
|
/// The Weight information for extrinsics in this pallet.
|
|
type WeightInfo: WeightInfo;
|
|
|
|
/// The runtime event type.
|
|
type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;
|
|
|
|
/// The origin permissioned to create a conversion rate for an asset.
|
|
type CreateOrigin: EnsureOrigin<Self::RuntimeOrigin>;
|
|
|
|
/// The origin permissioned to remove an existing conversion rate for an asset.
|
|
type RemoveOrigin: EnsureOrigin<Self::RuntimeOrigin>;
|
|
|
|
/// The origin permissioned to update an existiing conversion rate for an asset.
|
|
type UpdateOrigin: EnsureOrigin<Self::RuntimeOrigin>;
|
|
|
|
/// The currency mechanism for this pallet.
|
|
type Currency: Inspect<Self::AccountId>;
|
|
|
|
/// The type for asset kinds for which the conversion rate to native balance is set.
|
|
type AssetKind: Parameter + MaxEncodedLen;
|
|
|
|
/// Helper type for benchmarks.
|
|
#[cfg(feature = "runtime-benchmarks")]
|
|
type BenchmarkHelper: crate::AssetKindFactory<Self::AssetKind>;
|
|
}
|
|
|
|
/// Maps an asset to its fixed point representation in the native balance.
|
|
///
|
|
/// E.g. `native_amount = asset_amount * ConversionRateToNative::<T>::get(asset_kind)`
|
|
#[pallet::storage]
|
|
pub type ConversionRateToNative<T: Config> =
|
|
StorageMap<_, Blake2_128Concat, T::AssetKind, FixedU128, OptionQuery>;
|
|
|
|
#[pallet::event]
|
|
#[pallet::generate_deposit(pub(super) fn deposit_event)]
|
|
pub enum Event<T: Config> {
|
|
// Some `asset_kind` conversion rate was created.
|
|
AssetRateCreated { asset_kind: T::AssetKind, rate: FixedU128 },
|
|
// Some `asset_kind` conversion rate was removed.
|
|
AssetRateRemoved { asset_kind: T::AssetKind },
|
|
// Some existing `asset_kind` conversion rate was updated from `old` to `new`.
|
|
AssetRateUpdated { asset_kind: T::AssetKind, old: FixedU128, new: FixedU128 },
|
|
}
|
|
|
|
#[pallet::error]
|
|
pub enum Error<T> {
|
|
/// The given asset ID is unknown.
|
|
UnknownAssetKind,
|
|
/// The given asset ID already has an assigned conversion rate and cannot be re-created.
|
|
AlreadyExists,
|
|
}
|
|
|
|
#[pallet::call]
|
|
impl<T: Config> Pallet<T> {
|
|
/// Initialize a conversion rate to native balance for the given asset.
|
|
///
|
|
/// ## Complexity
|
|
/// - O(1)
|
|
#[pallet::call_index(0)]
|
|
#[pallet::weight(T::WeightInfo::create())]
|
|
pub fn create(
|
|
origin: OriginFor<T>,
|
|
asset_kind: Box<T::AssetKind>,
|
|
rate: FixedU128,
|
|
) -> DispatchResult {
|
|
T::CreateOrigin::ensure_origin(origin)?;
|
|
|
|
ensure!(
|
|
!ConversionRateToNative::<T>::contains_key(asset_kind.as_ref()),
|
|
Error::<T>::AlreadyExists
|
|
);
|
|
ConversionRateToNative::<T>::set(asset_kind.as_ref(), Some(rate));
|
|
|
|
Self::deposit_event(Event::AssetRateCreated { asset_kind: *asset_kind, rate });
|
|
Ok(())
|
|
}
|
|
|
|
/// Update the conversion rate to native balance for the given asset.
|
|
///
|
|
/// ## Complexity
|
|
/// - O(1)
|
|
#[pallet::call_index(1)]
|
|
#[pallet::weight(T::WeightInfo::update())]
|
|
pub fn update(
|
|
origin: OriginFor<T>,
|
|
asset_kind: Box<T::AssetKind>,
|
|
rate: FixedU128,
|
|
) -> DispatchResult {
|
|
T::UpdateOrigin::ensure_origin(origin)?;
|
|
|
|
let mut old = FixedU128::zero();
|
|
ConversionRateToNative::<T>::mutate(asset_kind.as_ref(), |maybe_rate| {
|
|
if let Some(r) = maybe_rate {
|
|
old = *r;
|
|
*r = rate;
|
|
|
|
Ok(())
|
|
} else {
|
|
Err(Error::<T>::UnknownAssetKind)
|
|
}
|
|
})?;
|
|
|
|
Self::deposit_event(Event::AssetRateUpdated {
|
|
asset_kind: *asset_kind,
|
|
old,
|
|
new: rate,
|
|
});
|
|
Ok(())
|
|
}
|
|
|
|
/// Remove an existing conversion rate to native balance for the given asset.
|
|
///
|
|
/// ## Complexity
|
|
/// - O(1)
|
|
#[pallet::call_index(2)]
|
|
#[pallet::weight(T::WeightInfo::remove())]
|
|
pub fn remove(origin: OriginFor<T>, asset_kind: Box<T::AssetKind>) -> DispatchResult {
|
|
T::RemoveOrigin::ensure_origin(origin)?;
|
|
|
|
ensure!(
|
|
ConversionRateToNative::<T>::contains_key(asset_kind.as_ref()),
|
|
Error::<T>::UnknownAssetKind
|
|
);
|
|
ConversionRateToNative::<T>::remove(asset_kind.as_ref());
|
|
|
|
Self::deposit_event(Event::AssetRateRemoved { asset_kind: *asset_kind });
|
|
Ok(())
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Exposes conversion of an arbitrary balance of an asset to native balance.
|
|
impl<T> ConversionFromAssetBalance<BalanceOf<T>, AssetKindOf<T>, BalanceOf<T>> for Pallet<T>
|
|
where
|
|
T: Config,
|
|
{
|
|
type Error = pallet::Error<T>;
|
|
|
|
fn from_asset_balance(
|
|
balance: BalanceOf<T>,
|
|
asset_kind: AssetKindOf<T>,
|
|
) -> Result<BalanceOf<T>, pallet::Error<T>> {
|
|
let rate = pallet::ConversionRateToNative::<T>::get(asset_kind)
|
|
.ok_or(pallet::Error::<T>::UnknownAssetKind.into())?;
|
|
Ok(rate.saturating_mul_int(balance))
|
|
}
|
|
/// Set a conversion rate to `1` for the `asset_id`.
|
|
#[cfg(feature = "runtime-benchmarks")]
|
|
fn ensure_successful(asset_id: AssetKindOf<T>) {
|
|
pallet::ConversionRateToNative::<T>::set(asset_id.clone(), Some(1.into()));
|
|
}
|
|
}
|