## proxy announcementDepositBase: `u128` - **interface**: `proxy.announcementDepositBase` - **summary**: The base amount of currency needed to reserve for creating an announcement. This is held when a new storage item holding a `Balance` is created (typically 16 bytes). announcementDepositFactor: `u128` - **interface**: `proxy.announcementDepositFactor` - **summary**: The amount of currency needed per announcement made. This is held for adding an `AccountId`, `Hash` and `BlockNumber` (typically 68 bytes) into a pre-existing storage value. maxPending: `u32` - **interface**: `proxy.maxPending` - **summary**: The maximum amount of time-delayed announcements that are allowed to be pending. maxProxies: `u32` - **interface**: `proxy.maxProxies` - **summary**: The maximum amount of proxies allowed for a single account. proxyDepositBase: `u128` - **interface**: `proxy.proxyDepositBase` - **summary**: 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 is `sizeof(AccountId)` bytes. proxyDepositFactor: `u128` - **interface**: `proxy.proxyDepositFactor` - **summary**: The amount of currency needed per proxy added. This is held for adding 32 bytes plus an instance of `ProxyType` more into a pre-existing storage value. Thus, when configuring `ProxyDepositFactor` one should take into account `32 + proxy_type.encode().len()` bytes of data.