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

docs: update TributeUI.md #407

Merged
merged 3 commits into from
Sep 22, 2021
Merged
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
12 changes: 12 additions & 0 deletions website/docs/tutorial/dao/TributeUI.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,11 @@ ALLOWED_DOMAINS=http://localhost:3000
ALCHEMY_API_URL=https://eth-rinkeby.alchemyapi.io/v2/<ACCESS_TOKEN>
```

Add your Alchemy API access token to `ALCHEMY_API_URL` in `.env.local`

Next add a 64 digit hexadecimal number to `RELAYER_PK` in `.env.local`.
A hexadecimal creator can be found here: https://numbergenerator.org/random-64-digit-hex-codes-generator

From the `snapshot-hub` root folder install the dependencies:

```bash
Expand All @@ -217,6 +222,10 @@ Finally, start the snapshot-hub erc712 service:
docker-compose up
```

You should see this in the terminal:

![image](https://user-images.githubusercontent.com/6320310/134381117-80075a7d-db3a-46b8-a1d8-55f187d89c0e.png)

## Running the Tribute UI dApp

Alright, we are almost done. Now we will set up the Tribute UI dApp, so you can interact with your DAO that was deployed to Rinkeby.
Expand All @@ -235,6 +244,9 @@ Start the dApp:
npm start
```

You should see this in your terminal:
![image](https://user-images.githubusercontent.com/6320310/134383377-77226885-20b9-4042-bc33-9364cc878852.png)

## Interacting with the DAO

Open your browser and access http://localhost:3001.
Expand Down