Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions InvestmentDAO/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
42 changes: 42 additions & 0 deletions InvestmentDAO/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
node_modules
.env
packages/*/.env
packages/*/.env.*

# IntelliJ project files
*.iml
*.ipr
*.iws
.idea

*.gitkeep

# eclipse project file
.settings/
.classpath
.project

# NetBeans specific
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# OS
.DS_Store

# Miscellaneous
*.class
*.log
*.pyc
*.swp

PROPOSAL.md
21 changes: 21 additions & 0 deletions InvestmentDAO/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 DevRel Team & Community

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
41 changes: 41 additions & 0 deletions InvestmentDAO/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Investment DAO

## Description
DAOalyzer is a data visualization platform that aggregates and displays key metrics of investment activity within an investment DAO. The platform will be designed to provide value to both existing and potential investors in the DAO, and enable them to make informed decisions about their investments.

Features:

Real-time visualization: The platform will display investment data and key performance metrics in real-time. This will include data on assets invested, performance of those assets, investment strategies employed, and more.

Customizable dashboard: The platform will allow users to customize their dashboard to display only the metrics that matter most to them.

Historical data: Users can also view historical data on investment activity. This can be used to track the performance of investments over time and make better-informed investment decisions.

Comparison features: The platform will allow users to compare the performance of various assets and investment strategies within the DAO. This can help investors understand which investments are performing best and why.

Investment functionality: The platform will enable investors to make investments in the DAO directly from the platform.



## Requirements

- [Remix](https://remix.ethereum.org/) - Online editor for writing smart contracts or any code editor you choose.
- [Metamask](https://metamask.io/) - For managing our wallet.
- [Hardhat](https://hardhat.org/) - For compiling and deploying the smart contract
- [Alfajores Testnet Account](https://developers.celo.org/3-simple-steps-to-connect-your-metamask-wallet-to-celo-732d4a139587) - Required to connect to the dApp and make test transactions.
- [Node.js](https://nodejs.org/en/) - From V12. or higher
- [Celo Composer](https://github.com/celo-org/celo-composer) - For quick web3 project scaffolding
- [Open Zeppelin Defender Account](https://defender.openzeppelin.com/) — You need an account with Open Zeppelin for automating on-chain data.

## Installation

```js
npm install
```

## Start

```js
npm run dev
```
12 changes: 12 additions & 0 deletions InvestmentDAO/netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Settings in the [build] context are global and are applied to
# all contexts unless otherwise overridden by more specific contexts.
[build]
# Directory to change to before starting a build.
# This is where we will look for package.json/.nvmrc/etc.
# If not set, defaults to the root directory.
base = "/"
publish = "packages/react-app/.next"
command = "yarn build-ui"

[[plugins]]
package = "@netlify/plugin-nextjs"
Loading