Participating in Governance
Notareum protocol parameters, fee schedules, validator slash rates, resource types, and treasury allocations are governed by veNOTA holders. This guide shows how to acquire veNOTA by locking NOTA, vote on proposals, delegate your voting power, and unlock once your lock matures.The veNOTA model in brief
- Lock NOTA for a duration between the minimum (one week) and the maximum (four years).
- Receive a non-transferable veNOTA balance proportional to
(amount * duration) / maxDuration. - Voting power decays linearly toward zero as the lock approaches maturity.
- Unlock once matured to retrieve the underlying NOTA.
Step 1: Approve NOTA for the veNOTA contract
Step 2: Lock
LockCreated event records your lockId. Save it: you need it to extend or later unlock this position.
Step 3: Check your voting power
Step 4: Vote on a proposal
Proposals are created and executed via the on-chain governance contract set (see Governance for proposal lifecycle, quorum, and timelock). The voting UI is the Notareum governance portal; from an SDK perspective, thegetVotingPower read is what proposals use to weight your vote.
A typical voting workflow from the portal:
- Connect the wallet that holds the veNOTA lock.
- Review proposal text, on-chain calldata, and discussion threads.
- Cast
For,Against, orAbstain. - Wait for voting window to close and timelock to elapse.
- Anyone can execute a passed proposal once the timelock matures.
Step 5: Extend a lock (optional)
Boost voting power without depositing more NOTA by extending lock duration:Step 6: Delegate (optional)
veNOTA voting is delegation-capable. Delegation assigns your voting power to another address without transferring the lock. You keep ownership of the underlying NOTA; the delegate votes in your place. The exact delegation function lives on theveNOTA contract; see its ABI in veNOTA.
Useful when you run validator infrastructure but want an active-governance partner to vote on your behalf.
Step 7: Unlock at maturity
Good participation hygiene
- Read proposals fully before voting. Governance passes calldata that the timelock will execute; subtle parameter changes can move real economic outcomes.
- Pay attention to quorum. A proposal with low turnout but high “For” votes may still pass the quorum floor and take effect.
- Watch for on-chain discussion. The Discord/Twitter/forum channels carry context that the on-chain description field cannot.
- Maintain a live lock. A lock that has decayed to zero gives no voice. Extend periodically if you want sustained influence.

