AugustDAO is a decentralized autonomous organization (DAO) framework built on the Solana blockchain, designed for transparency, fairness, and easy governance.
This project is currently in DEMO MODE. The frontend is functional but is using mock data as the smart contracts are not yet deployed to the Solana devnet.
- ✅ Frontend developed with Next.js
- ✅ Mock data integration for UI demonstration
⚠️ Solana smart contracts (written in Rust using Anchor) have build issues- ❌ Smart contracts not yet deployed to devnet
frontend/- Next.js application with Solana wallet integrationdao-contracts/- Anchor/Rust smart contracts (governance, treasury, token)
- View active proposals
- Connect Solana wallet
- Delegate voting power (simulated)
- Revoke delegations (simulated)
- View proposal status and voting results
cd frontend
npm install
npm run devThe frontend will run in demo mode with mock data.
The smart contracts are currently experiencing build issues on Apple Silicon Macs. We're working on resolving these issues.
cd dao-contracts
anchor build # Note: This currently fails on macOS Apple SiliconIf you encounter the error "Module not found: Can't resolve 'pino-pretty'", install the dependency:
cd frontend
npm install pino-pretty- Fix Solana BPF toolchain issues for Apple Silicon Macs
- Complete and deploy smart contracts to Solana devnet
- Integrate frontend with actual on-chain contracts
- Implement Snapshot integration for off-chain voting
- Add Proof-of-Humanity integration for Sybil resistance
MIT