Skip to content

Commit

Permalink
Squashed commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bbenligiray committed Mar 7, 2021
1 parent 14893c3 commit 77008b3
Show file tree
Hide file tree
Showing 129 changed files with 31,105 additions and 83,387 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
@@ -0,0 +1,3 @@
**/coverage/**

packages/ui/**
17 changes: 17 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,17 @@
module.exports = {
"env": {
"node": true
},
"extends": "eslint:recommended",
"globals": {
"beforeEach": false,
"context": false,
"describe": false,
"ethers": false,
"it": false
},
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
}
};
18 changes: 11 additions & 7 deletions .gitignore
@@ -1,7 +1,11 @@
yarn-error.log
node_modules/
node_modules
.DS_Store
.env
artifacts/
cache/
**/node_modules/**

**/cache/**
**/artifacts/**
**/coverage/**
**/diff/**

**/credentials.json
**/*.flat.sol
**/coverage.json
**/gas_report
8 changes: 8 additions & 0 deletions .prettierignore
@@ -0,0 +1,8 @@
**/node_modules/**
.eslintrc.js

packages/ui/**

**/cache/**
**/artifacts/**
**/coverage/**
9 changes: 9 additions & 0 deletions .solhint.json
@@ -0,0 +1,9 @@
{
"extends": "solhint:recommended",
"rules": {
"compiler-version": "off",
"no-empty-blocks": "off",
"not-rely-on-time": "off",
"max-states-count": "off"
}
}
19 changes: 6 additions & 13 deletions README.md
@@ -1,15 +1,8 @@
## API3 DAO
## What is API3 DAO?
# API3 DAO

[API3 DAO](https://dao.api3.org) To decentralize the governance of both dAPIs and the project as a whole, API3 will be governed by a DAO. The governance will be entirely decentralized and open, meaning that all stakeholders will be able to participate in the governance of the project directly.
- Install the dependencies
```sh
npm run bootstrap
```

## Contents

- [1. Packages](/packages)
- [1.1. API3 DAO](/docs/api3-dao.md)
- [1.2. API3 DAO UI](/packages/ui)

- [2. DAO](/docs/dao.md)
- [2.1. Implementation](/docs/implementation.md)

API3 DAO documentation is kept as a regular repository of Markdown files to be easily contributable by everyone.
See the READMEs of the individual packages for more information
1 change: 0 additions & 1 deletion docs/api3-dao.md

This file was deleted.

9 changes: 9 additions & 0 deletions lerna.json
@@ -0,0 +1,9 @@
{
"command": {
"bootstrap": {
"hoist": true
}
},
"packages": ["packages/*"],
"version": "0.0.0"
}

0 comments on commit 77008b3

Please sign in to comment.