Skip to content

Commit

Permalink
Merge pull request #5 from DAObox/monorepo
Browse files Browse the repository at this point in the history
Monorepo
  • Loading branch information
pythonpete32 authored Nov 21, 2023
2 parents da9254e + 9ce5079 commit 189e937
Show file tree
Hide file tree
Showing 12 changed files with 9,787 additions and 4,166 deletions.
35 changes: 31 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,38 @@

<br />

## Getting Started
## Overview

Budget is an Aragon OSx Plugin that allows the execution of payments bypassing the need for regular voting. Authorized
entities can directly perform payments using the DAO's funds if they are within the spending allowance of a specific
budget. This primitive empowers agents in the _Orginasation_ with the _Autonomy_ to make spending decitions, while at the same
time ensuring accountability, transparency, and strong security

## Project

The root folder of the repo includes three subfolders:

```markdown
.
├── packages/contracts
│ ├── src
│ ├── ...
│ └── package.json
├── packages/hooks
│ ├── src
│ ├── ...
│ └── package.json
├── ...
└── package.json
```

## Contracts

```sh
$ git clone [email protected]:DAObox/budget.git
$ cd budget
$ cd packages/budget
$ forge install
$ pnpm install # install Solhint, Prettier, and other Node.js deps
$ pnpm test
```
Expand All @@ -41,7 +68,7 @@ If this is your first time with Foundry, check out the

<br />

## Overview
## Contracts Overview

Budget is an Aragon OSx Plugin that allows the execution of payments bypassing the need for regular voting. Authorized
entities can directly perform payments using the DAO's funds if they are within the spending allowance of a specific
Expand Down
8 changes: 5 additions & 3 deletions active_contracts.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
"ens-domain": "budget.plugin.dao.eth",
"goerli": {
"BudgetSetup": "0x636Dc42B54029702ee5bDd39059bF8f75696B1C9",
"BudgetRepo": "0x9b72Af17B8aE55AE2F3C06E46A44D9bEaFb10801",
"dao": "0xce780fea1c950a29769b4f10817a9c51154d12af",
"budget": "0xfea7C89Ae8168f0f0FB9bA053b79C02819eC8C91"
"BudgetRepo": "0x9b72Af17B8aE55AE2F3C06E46A44D9bEaFb10801"
},
"baseMainnet": {
"BudgetSetup": "0x073B3CFb5b0d8Ee0985B69325645a1D7D0Bf3C3A",
"BudgetRepo": "0xFdC77B3fcF78e0Bc24526250288A530Fca9B285C"
}
}
1 change: 1 addition & 0 deletions packages/hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"@wagmi/cli": "^1.0.0",
"buffer": "^6.0.3",
"connectkit": "^1.4.0",
"ethers": "5",
"graphql-request": "^6.1.0",
"process": "^0.11.10",
"react": "^18.2.0",
Expand Down
Loading

0 comments on commit 189e937

Please sign in to comment.