We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e1ebc2 commit a69245bCopy full SHA for a69245b
src/lib.rs
@@ -135,6 +135,15 @@ decl_module! {
135
/// Deposit one of this module's events by using the default implementation.
136
fn deposit_event() = default;
137
138
+ /// The base amount of currency needed to reserve for creating a proxy.
139
+ const ProxyDepositBase: BalanceOf<T> = T::ProxyDepositBase::get();
140
+
141
+ /// The amount of currency needed per proxy added.
142
+ const ProxyDepositFactor: BalanceOf<T> = T::ProxyDepositFactor::get();
143
144
+ /// The maximum amount of proxies allowed for a single account.
145
+ const MaxProxies: u16 = T::MaxProxies::get();
146
147
/// Dispatch the given `call` from an account that the sender is authorised for through
148
/// `add_proxy`.
149
///
0 commit comments