Decentralized Autonomous Organization

Democratize governance through transparent blockchain-based decision-making.

DAO Overview

Proposal System

Create on-chain proposals for EzeniIa changes via voting tokens

Learn More →

Voting System

Vote on proposals using EzeniIa governance tokens

Vote Now

Transparency

View full DAO history and proposals in blockchain explorer

View All

DAO Participation

Create Proposal

Anyone can submit DAO proposals that change protocol parameters, suggest new projects, or vote on key decisions.

Submit Vote

Participate in on-chain voting for proposals you support or oppose.

How DAO Works

Proposal Stage

Anyone can submit a proposal via the DAO interface

Voting

DAO token holders cast votes

Tally

Votes are processed via on-chain tallying and smart contracts

Quorum Met

If minimum stake threshold is met and passed, proposal executes automatically

Code Examples

Create Proposal

                    const { DaoClient } = require('@ezeniia/dao-sdk');

                    const client = new DaoClient();
                    
                    client.createProposal({
                        subject: 'Funding AI Research',
                        description: "Allocate 10000 EZE tokens to the Research SubDAO",
                        start_time: 1734203492908,
                        end_time: 1734979829298,
                        choices: [
                            { name: 'Approve',
                              description: 'Yes'},
                            { name: 'Reject', 
                              description: 'No'}
                        ],
                        metadata: { proposal_id: '1030234' }
                    })
                    .then(res => {
                        console.log({res});
                    });
                

Get Votes

                    const result = await client.getVote({
                        proposalId: '0x12345'
                    });

                    console.log("Quorum:", result.quorum);
                

Join EzeniIa DAO

Participate in on-chain governance to help shape our platform's future.

Explore DAO