ZkCappedMinters (v1) were created to allow ZKsync governance to allocate ZK in an immutable and safe way. The first version of ZkCappedMinter (v1) went live prior to the initial airdrop and served it’s purpose. Immutable and capped token allocations were provided in a safe and secure manner to the governance bodies and ZKsync ecosystem entities.
However, recent governance proposals—such as the Era Ignite Proposal—have highlighted previously unknown limitations of the ZkCappedMinter v1. These limitations have also been validated with recent industry challenges, such as the recall vote from Arbitrums gaming fund.
ID | Limitation | Case Study Story | Proposed Solution | Open Questions |
---|---|---|---|---|
1 | There is no internal contract method to “shut down” or “pause” a capped minter. |
Currently, v1 can be cancelled with a Token Assembly vote (~14+ days lead time) or multisig handover to burn address. | A Failed TPP
closeMinter()
method that an admin
cal call. This revokes all roles and makes the contract unusable.Add pauseMinter()
method, based on OZ standard that the admin
can call. | Should cancel be named something else like terminate
? Is there a different naming standard to shut down a contract
What would pause mean in practice? Deny all mint requests? | | 2 | Only ZkCappedMinter Admin (immutable) has power to mint from ZkCappedMinter. | Creating a Sub-Program (Nested Capped Minters)
MINTER_ROLE
as a separate possible role, set by admin
through a grantMinterRole()
function.Add revokeRole()
function. | What other design patterns should the capped minter inherit from the design choices of ZK TokenV1?
Should a separate role for “Cancel” and “Pause” be integrated? This would enable a separation of powers (e.g. a delegate council separate from minters could have power to cancel) | | 3 | Those granted the Minter Role of the ZkCappedMinter cannot be assigned a cap separate from the top-level cap. | See Sub-Program (Above) | NO CHANGE: Assign minter rights to a new capped minter, instead of the specific address itself. | | | 4 | Admin role is ALSO (by default) a minter role. | Pure Admin SteerCo (Non-minter)
ADMIN_ROLE
as a the contract manager role, without minting rights. It is set by default to the admin
address which is immutable and set at deployment. This role is non-transferrable. | Can we use something like Access Control to manage all roles? |
| 5 | Roles cannot be assigned based on token ownership, only specific addresses or contracts themselves. | Extended Eligibility Requirements via TokenCan this helper contract also split up roles based on cappedminter methods (Minters, Cancel, Pause, etc.) | | 6 | There is no way to reference external data / configurations. | Connecting Legal Metadata to Smart-Contract
metadata
mutable parameter set by admin
via new method setMetadata
and availble to read via readMetadata
| What metadata do we think will be used if this is added? |
| 7 | Minter rights have no restrictions on how much can be minted per period / phase (e.g. timelock-based caps). | Multi-Phase ProgramReentrancyGuard
to prevent reentrancy attacks on the minting function? | What improvements are needed, if any, regarding security? |<aside> ❓
What other limitations should be addressed in the v2 design? If you have ideas, please connect with the ZKsync Association Governance Team.
</aside>
ZK Capped Minter v1 Code:
https://github.com/zksync-association/zk-governance/blob/master/l2-contracts/src/ZkCappedMinter.sol
ZK Capped Minter Factory v1 Code (in Development as of October 11, 2024 )
https://github.com/zksync-association/zk-governance/pull/13/files