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

Release 0.10.15 #2083

Merged
merged 7 commits into from
Sep 14, 2020
Merged
Show file tree
Hide file tree
Changes from 4 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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.10.15
- Features Added
- update subgraph endpoints

## 0.10.14-2
- Bugs Fixed
- revert subgraph endpoint domain

## 0.10.14-1
- Bugs Fixed
- fix display of DXD and NEC tokens

## 0.10.14
- Features Added
- show raw calldata in proposal details for relevant plugins
Expand Down
4 changes: 2 additions & 2 deletions data/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"name": "Tether USD",
"symbol": "USDT"
},
"0xCc80C051057B774cD75067Dc48f8987C4Eb97A5e": {
"0xcc80c051057b774cd75067dc48f8987c4eb97a5e": {
"decimals": 18,
"name": "Nectar",
"symbol": "NEC"
Expand All @@ -68,7 +68,7 @@
"name": "i4 token",
"symbol": "GEMS"
},
"0xa1d65E8fB6e87b60FECCBc582F7f97804B725521": {
"0xa1d65e8fb6e87b60feccbc582f7f97804b725521": {
"decimals": 18,
"name": "DXdao",
"symbol": "DXD"
Expand Down
9 changes: 5 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
- 3000:3000

graph-node:
image: 'graphprotocol/graph-node:v0.17.1'
image: 'graphprotocol/graph-node:v0.18.0'
ports:
- 8000:8000
- 8001:8001
Expand All @@ -44,20 +44,21 @@ services:
ethereum: private:http://ganache:8545
GRAPH_LOG: "graph.log"
GRAPH_GRAPHQL_MAX_FIRST: 1000
GRAPH_MAX_IPFS_FILE_BYTES: 900000

ipfs:
image: daostack/test-env-ipfs:3.0.33
image: daostack/test-env-ipfs:3.0.38
ports:
- 5001:5001

postgres:
image: daostack/test-env-postgres:3.0.33
image: daostack/test-env-postgres:3.0.38
ports:
- 9432:5432
environment:
POSTGRES_PASSWORD: 'letmein'

ganache:
image: daostack/test-env-ganache:3.0.33
image: daostack/test-env-ganache:3.0.38
ports:
- 8545:8545
Loading