Skip to content

Commit

Permalink
Add missing artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
sembrestels committed Oct 25, 2020
1 parent 94b5f43 commit 4f84842
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#### 🐲 Project Stage: Mainnet

The Transactions app has been published to `open.aragonpm.eth` on Mainnet and Rinkeby networks. If you are interested in contributing please see our [open issues](https://github.com/1hive/transactions-app).
The Transactions app has been published to `open.aragonpm.eth` on Mainnet, Rinkeby, and xDAI networks. If you are interested in contributing please see our [open issues](https://github.com/1hive/transactions-app).

#### 🚨 Security Review Status: pre-audit

Expand All @@ -16,7 +16,7 @@ The transactions app does not need any parameter to be initialized.

## How to run Transactions app locally

First make sure that you have node, npm, and the aragonCLI installed and working. Instructions on how to set that up can be found [here](https://hack.aragon.org/docs/cli-intro.html). You'll also need to have [Metamask](https://metamask.io) or some kind of web wallet enabled to sign transactions in the browser.
First make sure that you have node and yarn installed and working. You'll also need to have [Metamask](https://metamask.io) or some kind of web wallet enabled to sign transactions in the browser.

Git clone this repo.

Expand All @@ -33,13 +33,13 @@ cd transactions-app
Install npm dependencies.

```sh
npm i
yarn
```

Deploy a dao with Token Manager and Voting apps installed on your local environment.
Deploy a dao with Token Manager, Voting, and Finance apps installed on your local environment.

```sh
npm run start:ipfs:template
yarn start
```

## How to deploy to an organization
Expand All @@ -56,7 +56,7 @@ env="--environment aragon:mainnet --ipfs-rpc https://ipfs.eth.aragon.network/ipf
dao=<your_dao_address>
# set a variable for the voting app
voting=0x35b74057a93280eb57f9863298f6a6908b38898a
voting=<your-voting-app-address>
# install the app to the DAO
aragon dao install $dao transactions.open.aragonpm.eth $env
Expand Down Expand Up @@ -90,6 +90,6 @@ We welcome community contributions!

Please check out our [open Issues](https://github.com/1Hive/transactions-app/issues) to get started.

If you discover something that could potentially impact security, please notify us immediately. The quickest way to reach us is via the #dev channel in our [team Keybase chat](https://1hive.org/contribute/keybase). Just say hi and that you discovered a potential security vulnerability and we'll DM you to discuss details.
If you discover something that could potentially impact security, please notify us immediately. The quickest way to reach us is via the #dev channel in our [Discord chat](https://discord.gg/mP75t4n). Just say hi and that you discovered a potential security vulnerability and we'll DM you to discuss details.

<br />
10 changes: 10 additions & 0 deletions contracts/test/TestImports.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
pragma solidity ^0.4.24;

// import "@aragon/minime/contracts/MiniMeToken.sol";
import "@aragon/apps-token-manager/contracts/TokenManager.sol";

contract TestImports {
constructor() public {
// solium-disable-previous-line no-empty-blocks
}
}
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
"version": "1.0.0",
"description": "Create a vote with multiple token mintings or token transfers",
"dependencies": {
"@aragon/minime": "^1.0.0",
"@aragon/apps-token-manager": "2.1.0",
"@aragon/os": "^4.3.0"
},
"devDependencies": {
"@aragon/apps-shared-minime": "^1.0.2",
"@aragon/apps-token-manager": "2.1.0",
"@aragon/apps-voting": "2.1.0",
"@aragon/buidler-aragon": "^0.2.9",
"@aragon/templates-shared": "^1.0.1",
"@aragon/test-helpers": "^2.0.0",
Expand Down

0 comments on commit 4f84842

Please sign in to comment.