mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 04:37:57 +00:00
Allow "anonymous" proxied accounts (#6236)
* Anonymous proxiers * More testing * More testing * Build fix * Build fix * Benchmarks. * fix benchmarking * add weights * fix line width Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
This commit is contained in:
@@ -35,15 +35,17 @@
|
||||
#![cfg_attr(not(feature = "std"), no_std)]
|
||||
|
||||
use sp_std::prelude::*;
|
||||
use frame_support::{decl_module, decl_event, decl_error, decl_storage, Parameter, ensure};
|
||||
use codec::{Encode, Decode};
|
||||
use sp_io::hashing::blake2_256;
|
||||
use sp_runtime::{DispatchResult, traits::{Dispatchable, Zero}};
|
||||
use sp_runtime::traits::Member;
|
||||
use frame_support::{
|
||||
decl_module, decl_event, decl_error, decl_storage, Parameter, ensure,
|
||||
traits::{Get, ReservableCurrency, Currency, Filter, InstanceFilter},
|
||||
weights::{GetDispatchInfo, constants::{WEIGHT_PER_MICROS, WEIGHT_PER_NANOS}},
|
||||
dispatch::{PostDispatchInfo, IsSubType},
|
||||
};
|
||||
use frame_system::{self as system, ensure_signed};
|
||||
use sp_runtime::{DispatchResult, traits::{Dispatchable, Zero}};
|
||||
use sp_runtime::traits::Member;
|
||||
|
||||
mod tests;
|
||||
mod benchmarking;
|
||||
@@ -53,7 +55,7 @@ type BalanceOf<T> = <<T as Trait>::Currency as Currency<<T as frame_system::Trai
|
||||
/// Configuration trait.
|
||||
pub trait Trait: frame_system::Trait {
|
||||
/// The overarching event type.
|
||||
type Event: From<Event> + Into<<Self as frame_system::Trait>::Event>;
|
||||
type Event: From<Event<Self>> + Into<<Self as frame_system::Trait>::Event>;
|
||||
|
||||
/// The overarching call type.
|
||||
type Call: Parameter + Dispatchable<Origin=Self::Origin, PostInfo=PostDispatchInfo>
|
||||
@@ -115,9 +117,15 @@ decl_error! {
|
||||
|
||||
decl_event! {
|
||||
/// Events type.
|
||||
pub enum Event {
|
||||
pub enum Event<T> where
|
||||
AccountId = <T as frame_system::Trait>::AccountId,
|
||||
ProxyType = <T as Trait>::ProxyType
|
||||
{
|
||||
/// A proxy was executed correctly, with the given result.
|
||||
ProxyExecuted(DispatchResult),
|
||||
/// Anonymous account (first parameter) has been created by new proxy (second) with given
|
||||
/// disambiguation index and proxy type.
|
||||
AnonymousCreated(AccountId, AccountId, ProxyType, u16),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -164,12 +172,12 @@ decl_module! {
|
||||
.ok_or(Error::<T>::NotProxy)?;
|
||||
match call.is_sub_type() {
|
||||
Some(Call::add_proxy(_, ref pt)) | Some(Call::remove_proxy(_, ref pt)) =>
|
||||
ensure!(&proxy_type == pt, Error::<T>::NoPermission),
|
||||
ensure!(pt.is_no_more_permissive(&proxy_type), Error::<T>::NoPermission),
|
||||
_ => (),
|
||||
}
|
||||
ensure!(proxy_type.filter(&call), Error::<T>::Unproxyable);
|
||||
let e = call.dispatch(frame_system::RawOrigin::Signed(real).into());
|
||||
Self::deposit_event(Event::ProxyExecuted(e.map(|_| ()).map_err(|e| e.error)));
|
||||
Self::deposit_event(RawEvent::ProxyExecuted(e.map(|_| ()).map_err(|e| e.error)));
|
||||
}
|
||||
|
||||
/// Register a proxy account for the sender that is able to make calls on its behalf.
|
||||
@@ -186,8 +194,8 @@ decl_module! {
|
||||
/// - DB weight: 1 storage read and write.
|
||||
/// # </weight>
|
||||
#[weight = T::DbWeight::get().reads_writes(1, 1)
|
||||
.saturating_add(18 * WEIGHT_PER_MICROS)
|
||||
.saturating_add((200 * WEIGHT_PER_NANOS).saturating_mul(T::MaxProxies::get().into()))
|
||||
.saturating_add(18 * WEIGHT_PER_MICROS)
|
||||
.saturating_add((200 * WEIGHT_PER_NANOS).saturating_mul(T::MaxProxies::get().into()))
|
||||
]
|
||||
fn add_proxy(origin, proxy: T::AccountId, proxy_type: T::ProxyType) -> DispatchResult {
|
||||
let who = ensure_signed(origin)?;
|
||||
@@ -222,8 +230,8 @@ decl_module! {
|
||||
/// - DB weight: 1 storage read and write.
|
||||
/// # </weight>
|
||||
#[weight = T::DbWeight::get().reads_writes(1, 1)
|
||||
.saturating_add(14 * WEIGHT_PER_MICROS)
|
||||
.saturating_add((160 * WEIGHT_PER_NANOS).saturating_mul(T::MaxProxies::get().into()))
|
||||
.saturating_add(14 * WEIGHT_PER_MICROS)
|
||||
.saturating_add((160 * WEIGHT_PER_NANOS).saturating_mul(T::MaxProxies::get().into()))
|
||||
]
|
||||
fn remove_proxy(origin, proxy: T::AccountId, proxy_type: T::ProxyType) -> DispatchResult {
|
||||
let who = ensure_signed(origin)?;
|
||||
@@ -253,19 +261,119 @@ decl_module! {
|
||||
///
|
||||
/// The dispatch origin for this call must be _Signed_.
|
||||
///
|
||||
/// WARNING: This may be called on accounts created by `anonymous`, however if done, then
|
||||
/// the unreserved fees will be inaccessible. **All access to this account will be lost.**
|
||||
///
|
||||
/// # <weight>
|
||||
/// P is the number of proxies the user has
|
||||
/// - Base weight: 13.73 + .129 * P µs
|
||||
/// - DB weight: 1 storage read and write.
|
||||
/// # </weight>
|
||||
#[weight = T::DbWeight::get().reads_writes(1, 1)
|
||||
.saturating_add(14 * WEIGHT_PER_MICROS)
|
||||
.saturating_add((130 * WEIGHT_PER_NANOS).saturating_mul(T::MaxProxies::get().into()))
|
||||
.saturating_add(14 * WEIGHT_PER_MICROS)
|
||||
.saturating_add((130 * WEIGHT_PER_NANOS).saturating_mul(T::MaxProxies::get().into()))
|
||||
]
|
||||
fn remove_proxies(origin) {
|
||||
let who = ensure_signed(origin)?;
|
||||
let (_, old_deposit) = Proxies::<T>::take(&who);
|
||||
T::Currency::unreserve(&who, old_deposit);
|
||||
}
|
||||
|
||||
/// Spawn a fresh new account that is guaranteed to be otherwise inaccessible, and
|
||||
/// initialize it with a proxy of `proxy_type` for `origin` sender.
|
||||
///
|
||||
/// Requires a `Signed` origin.
|
||||
///
|
||||
/// - `proxy_type`: The type of the proxy that the sender will be registered as over the
|
||||
/// new account. This will almost always be the most permissive `ProxyType` possible to
|
||||
/// allow for maximum flexibility.
|
||||
/// - `index`: A disambiguation index, in case this is called multiple times in the same
|
||||
/// transaction (e.g. with `utility::batch`). Unless you're using `batch` you probably just
|
||||
/// want to use `0`.
|
||||
///
|
||||
/// Fails with `Duplicate` if this has already been called in this transaction, from the
|
||||
/// same sender, with the same parameters.
|
||||
///
|
||||
/// Fails if there are insufficient funds to pay for deposit.
|
||||
///
|
||||
/// # <weight>
|
||||
/// P is the number of proxies the user has
|
||||
/// - Base weight: 36.48 + .039 * P µs
|
||||
/// - DB weight: 1 storage read and write.
|
||||
/// # </weight>
|
||||
#[weight = T::DbWeight::get().reads_writes(1, 1)
|
||||
.saturating_add(36 * WEIGHT_PER_MICROS)
|
||||
.saturating_add((40 * WEIGHT_PER_NANOS).saturating_mul(T::MaxProxies::get().into()))
|
||||
]
|
||||
fn anonymous(origin, proxy_type: T::ProxyType, index: u16) {
|
||||
let who = ensure_signed(origin)?;
|
||||
|
||||
let anonymous = Self::anonymous_account(&who, &proxy_type, index, None);
|
||||
ensure!(!Proxies::<T>::contains_key(&anonymous), Error::<T>::Duplicate);
|
||||
let deposit = T::ProxyDepositBase::get() + T::ProxyDepositFactor::get();
|
||||
T::Currency::reserve(&who, deposit)?;
|
||||
Proxies::<T>::insert(&anonymous, (vec![(who.clone(), proxy_type.clone())], deposit));
|
||||
Self::deposit_event(RawEvent::AnonymousCreated(anonymous, who, proxy_type, index));
|
||||
}
|
||||
|
||||
/// Removes a previously spawned anonymous proxy.
|
||||
///
|
||||
/// WARNING: **All access to this account will be lost.** Any funds held in it will be
|
||||
/// inaccessible.
|
||||
///
|
||||
/// Requires a `Signed` origin, and the sender account must have been created by a call to
|
||||
/// `anonymous` with corresponding parameters.
|
||||
///
|
||||
/// - `spawner`: The account that originally called `anonymous` to create this account.
|
||||
/// - `index`: The disambiguation index originally passed to `anonymous`. Probably `0`.
|
||||
/// - `proxy_type`: The proxy type originally passed to `anonymous`.
|
||||
/// - `height`: The height of the chain when the call to `anonymous` was processed.
|
||||
/// - `ext_index`: The extrinsic index in which the call to `anonymous` was processed.
|
||||
///
|
||||
/// Fails with `NoPermission` in case the caller is not a previously created anonymous
|
||||
/// account whose `anonymous` call has corresponding parameters.
|
||||
///
|
||||
/// # <weight>
|
||||
/// P is the number of proxies the user has
|
||||
/// - Base weight: 15.65 + .137 * P µs
|
||||
/// - DB weight: 1 storage read and write.
|
||||
/// # </weight>
|
||||
#[weight = T::DbWeight::get().reads_writes(1, 1)
|
||||
.saturating_add(15 * WEIGHT_PER_MICROS)
|
||||
.saturating_add((140 * WEIGHT_PER_NANOS).saturating_mul(T::MaxProxies::get().into()))
|
||||
]
|
||||
fn kill_anonymous(origin,
|
||||
spawner: T::AccountId,
|
||||
proxy_type: T::ProxyType,
|
||||
index: u16,
|
||||
#[compact] height: T::BlockNumber,
|
||||
#[compact] ext_index: u32,
|
||||
) {
|
||||
let who = ensure_signed(origin)?;
|
||||
|
||||
let when = (height, ext_index);
|
||||
let proxy = Self::anonymous_account(&spawner, &proxy_type, index, Some(when));
|
||||
ensure!(proxy == who, Error::<T>::NoPermission);
|
||||
|
||||
let (_, deposit) = Proxies::<T>::take(&who);
|
||||
T::Currency::unreserve(&spawner, deposit);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<T: Trait> Module<T> {
|
||||
pub fn anonymous_account(
|
||||
who: &T::AccountId,
|
||||
proxy_type: &T::ProxyType,
|
||||
index: u16,
|
||||
maybe_when: Option<(T::BlockNumber, u32)>,
|
||||
) -> T::AccountId {
|
||||
let (height, ext_index) = maybe_when.unwrap_or_else(|| (
|
||||
system::Module::<T>::block_number(),
|
||||
system::Module::<T>::extrinsic_index().unwrap_or_default()
|
||||
));
|
||||
let entropy = (b"modlpy/proxy____", who, height, ext_index, proxy_type, index)
|
||||
.using_encoded(blake2_256);
|
||||
T::AccountId::decode(&mut &entropy[..]).unwrap_or_default()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user