Admin contract in detail
The Admin owns the Ethereum account that controls the Consensus contract, and it is the only account that can call the following functions;setTrustedSequencersetForceBatchAllowedsetTrustedSequencerURLsetTrustedAggregatorsetTrustedAggregatorTimeoutsetPendingStateTimeoutsetMultiplierBatchFeesetVeryBatchTimeTargetsetAdmindeactivateEmergencyState
Timelock controller
The Timelock Controller has been added to the zkEVM Protocol in order to improve user security and confidence. The Admin can schedule and commit maintenance operations transactions in L1 using a Timelock Controller, and the timelock can be activated to carry out the transactions when a specifiedminDelay time has passed.
The Polygon zkEVM team has decided to use the OpenZeppelin’s TimelockController.sol contract to inherit security as well to avoid the lengthy and complicated audit process. We have changed the getMinDelay method in the contract and this modified implementation is named PolygonZkEVMTimelock.sol contract.
In the event that the zkEVM contract system is in Emergency Mode, the new getMinDelay sets the time minDelay to 0. This is when the Security Council Multisig takes control.
The zKEVM Protocol’s Admin role is set to an instance of PolygonZkEVMTimelock.sol contract address since the deployment of the zk-rollup.
Governance of zKEVM contracts
The Admin carries significant and critical responsibility, which is why it is composed of three (3) members as opposed to just one person. For this reason, the Admin Ethereum account of aPolygonZkEVMTimelock.sol contract instance is assigned to a multisig contract that acts as a governance tool for the zkEVM Protocol, therefore achieving some degree of overall decentralization.
Below figure shows the governance tree of Polygon zkEVM L1 contracts.

Due to the governance chain among protocol contracts, all transactions generally follow the below steps.
- Maintenance operations transactions are proposed and stored into governance multisig contract. Polygon team reaches a consensus on whether or not to apply these operations. Voting inherits security from L1.
- Once a decision has been reached, and the results are favorable to perform maintenance operations, the governance multisig can be triggered to schedule the transactions to be executed but only when the 10-day time delay has passed.
- Once a time delay has passed, the Timelock Contract dubbed PolygonZkEVMTimelock.sol executes the scheduled transactions.