Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Monorepo #5

Merged
merged 8 commits into from
Nov 21, 2023
Merged
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
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
Loading