A progressive Node.js framework for building efficient and scalable server-side applications, heavily inspired by Angular.
Pheonix-DAO Server repository. The Application allows users to authenticate themself through MetaMask and Numio. Users can then add proposals, vote on proposals, stake on proposals and view updates. Admin approve the proposals so the users can vote on them. If a proposal is accepted after clearing the voting stage, then user can mark the milestones of proposal as completed and admin reviews and verifies it to issue funds.
PhoenixDAO is a truly decentralized, open-source project that covers identity, payments, tokenization, authentication, and storage, alongside a dApp Store which sits at the heart of the Phoenix ecosystem. A core part of the PhoenixDAO strategy is to actively on-board both individual developers and enterprise level corporations to build using the protocols to power their products. This will enhance decentralization, token utility and the overall ecosystem.
- Functions/Modules
- Admin
- Auth
- User
- Proposal
- Stake
- Transaction
- Cron
Few keys that needed to be updated. Create .env file and update things that are mentioned below
- Updates Required
- DATABASE_URL
- private_key
- SECRET_KEY
- Attributes_DOC_ID
- app_secret
Create these variables in your ".env" file and assign your values to these variables.
- Web3
- Smartcontract
- MetaMask
- Numio
app ├── src │ └── main.ts │ └── app.controller.spec.ts │ └── app.controller.ts │ └── app.module.ts │ └── app.service.ts │ └── Admin │ | ├── admin.service.ts │ | ├── admin.controller.ts │ | ├── admin.model.ts │ | └── admin.module.ts │ └── User │ | ├── user.service.ts │ | ├── user.controller.ts │ | ├── user.model.ts │ | └── user.module.ts │ └── Auth │ | ├── auth.service.ts │ | ├── auth.controller.ts │ | ├── auth.model.ts │ | └── auth.module.ts │ └── Proposal │ | ├── proposal.service.ts │ | ├── proposal.controller.ts │ | ├── proposal.model.ts │ | └── proposal.module.ts │ └── Stake │ | ├── stake.service.ts │ | ├── stake.controller.ts │ | ├── stake.model.ts │ | └── stake.module.ts │ └── Transaction │ | ├── transaction.service.ts │ | ├── transaction.controller.ts │ | ├── transaction.model.ts │ | └── transaction.module.ts │ └── cron │ ├── cron.service.ts │ └── cron.module.ts └── gitignore └── package.json └── package-lock.json └── Readme.md └── nodeModules └── loggerMiddleware.ts └── main.ts └── .env
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
Nest is MIT licensed.