proxy
announcementDepositBase: u128
interface:
proxy.announcementDepositBasesummary: The base amount of currency needed to reserve for creating an announcement.
This is held when a new storage item holding a
Balanceis created (typically 16 bytes).
announcementDepositFactor: u128
interface:
proxy.announcementDepositFactorsummary: The amount of currency needed per announcement made.
This is held for adding an
AccountId,HashandBlockNumber(typically 68 bytes) into a pre-existing storage value.
maxPending: u32
interface:
proxy.maxPendingsummary: The maximum amount of time-delayed announcements that are allowed to be pending.
maxProxies: u32
interface:
proxy.maxProxiessummary: The maximum amount of proxies allowed for a single account.
proxyDepositBase: u128
interface:
proxy.proxyDepositBasesummary: The base amount of currency needed to reserve for creating a proxy.
This is held for an additional storage item whose value size is
sizeof(Balance)bytes and whose key size issizeof(AccountId)bytes.
proxyDepositFactor: u128
interface:
proxy.proxyDepositFactorsummary: The amount of currency needed per proxy added.
This is held for adding 32 bytes plus an instance of
ProxyTypemore into a pre-existing storage value. Thus, when configuringProxyDepositFactorone should take into account32 + proxy_type.encode().len()bytes of data.