aip | title | author | discussions-to | Status | last-call-end-date | type | created | updated | requires |
---|---|---|---|---|---|---|---|---|---|
110 |
Lower the Threshold for Passing a Governance Proposal from 400M APT to 300M APT |
sherry-x |
Draft |
Standard (Framework) |
2025/01/16 |
This AIP proposes reducing the threshold for passing a governance proposal on the Aptos network from 400 million APT to 300 million APT. On-chain statistics indicate that Aptos Governance participation typically ranges between 400M and 430M APT per proposal. As the network continues to grow and APT tokens become further decentralized within the Aptos ecosystem, this change aims to ensure smooth governance operations, improve decision-making efficiency, and maintain network security and integrity.
Several factors motivate this proposal to lower the proposal threshold:
- Ensure Network Operations: The threshold must strike a balance—low enough to enable progress but high enough to maintain security and quality in upgrades. A threshold that is too high could hinder network evolution.
- Community Inclusivity: A lower threshold empowers a broader range of stakeholders to participate in governance decisions, reducing reliance on the Aptos Foundation.
- Address Past Challenges: There have been instances in the past where proposals narrowly missed the 400M APT threshold, requiring revotes to pass. This has resulted in wasted time and effort for the community and validators. Lowering the threshold will help avoid such inefficiencies and ensure smoother governance operations.
- Data Support: On-chain data over the past year consistently shows participation of 400M to 430M APT in governance operations. Reducing the threshold to 300M APT provides a balanced approach, ensuring smooth governance operations while aligning with the shorter lockup cycle and voting period.
On the Aptos network, governance proposals typically see 400M to 430M APT actively participating in voting. Setting the voting threshold at 400M APT requires almost 100% of active participants to vote on every proposal for it to pass. This high requirement has posed significant challenges for governance operations. By lowering the threshold to 300M APT, we would need approximately 70% of active participants to vote on each proposal for it to pass. This adjustment is far more achievable while still engaging a majority of participants to ensure the quality and integrity of governance decisions.
Read more details about Aptos Governance here. https://aptos.dev/en/network/blockchain/governance
Proposed governance parameter changes:
- Current Threshold: 400 million APT
- Proposed Threshold: 300 million APT
script {
use aptos_framework::aptos_governance;
fun main(proposal_id: u64) {
let framework_signer = aptos_governance::resolve_multi_step_proposal(proposal_id, @0x1, vector::empty<u8>());
aptos_governance::update_governance_config(
&framework_signer,
30000000000000000, // 300M min_voting_threshold
aptos_governance::get_required_proposer_stake(),
aptos_governance::get_voting_duration_secs(),
);
}
}
Note
This does not change the early execution threshold, which remains to be more than 50% of the total supply, to execute a proposal without waiting for the full voting period.
- Enhanced Community Participation: A lower threshold enables proposals to gain sufficient support more easily, fostering diverse and inclusive governance, reducing the reliance on Aptos Foundation.
- Efficiency Gains: Reducing the threshold will prevent repeated revotes for proposals that narrowly miss the current threshold, saving time and effort for the community and validators.
Security Concerns: A lower threshold could increase the risk of malicious actors influencing governance outcomes.
Mitigation Measures:
- Active monitoring of proposals to identify and address potential malicious activity.
- Encouraging community vigilance and transparency in communication to mitigate risks.
Reduced Governance Participation: Over time, there is a risk that the amount of APT participating in governance may decrease, leading to reduced community engagement and decision-making quality.
Mitigation Measures:
- Invest in education and documentation to raise awareness about governance.
- Publish blog posts and other resources to keep the community informed and engaged.
- Explore future incentive mechanism, such as rewards or recognition, to encourage active participation in governance activities.
- Foster a culture of transparency and inclusivity to build trust and long-term commitment among stakeholders.