Skip to content
This repository has been archived by the owner on Aug 6, 2021. It is now read-only.

Commit

Permalink
feat: implement vault holdings endpoints (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguel567 authored Dec 7, 2020
1 parent 5c873d7 commit 5262e73
Show file tree
Hide file tree
Showing 15 changed files with 1,285 additions and 25 deletions.
8 changes: 0 additions & 8 deletions .sample.local.env

This file was deleted.

18 changes: 18 additions & 0 deletions abi/strategyMinABI.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,23 @@
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "balanceOf",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "getName",
"outputs": [{ "internalType": "string", "name": "", "type": "string" }],
"payable": false,
"stateMutability": "pure",
"type": "function"
}
]
7 changes: 4 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
ports:
- "3000:3000"
volumes:
- "./config:/opt/app/config:ro"
- "./services:/opt/app/services:ro"
- "./utils:/opt/app/utils:ro"
- "./config:/opt/app/config:rw"
- "./services:/opt/app/services:rw"
- "./utils:/opt/app/utils:rw"
- "./abi:/opt/app/abi:rw"
Loading

0 comments on commit 5262e73

Please sign in to comment.