Skip to content

Commit

Permalink
fix(Brig): Fix issues with Weth address
Browse files Browse the repository at this point in the history
  • Loading branch information
owodunni committed Dec 13, 2020
1 parent febffcf commit 92760f1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Arbie/resources/contracts/contract_addresses.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"token":{
"Weth":{"mainnet":"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"}
"tokens":{
"Weth":{"mainnet":"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"}
},
"balancer":{
"BFactory":{
Expand Down
2 changes: 1 addition & 1 deletion Brig/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ task dockerArbie(type: Exec) {
workingDir projectDir

commandLine "docker", "build", "-f", "Dockerfile.arbie",
"-t", "arbie:prod", "."
"-t", "arbie:prod", ".", "--no-cache"
}


Expand Down
16 changes: 14 additions & 2 deletions Brig/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,39 @@ services:

PoolFinder:
image: arbie:prod
depends_on:
- Node
- redis
volumes:
- ./PoolFinder:/arbie
command: Arbie -f pool_finder.yml

PoolUpdater:
image: arbie:prod
depends_on:
- Node
- redis
volumes:
- ./PoolUpdater:/arbie
command: Arbie -f pool_updater.yml

PathFinder:
image: arbie:prod
depends_on:
- Node
- redis
volumes:
- ./PathFinder:/arbie
command: Arbie -f path_finder.yml
command: Arbie -f path_finder.yml

Trader:
image: arbie:prod
depends_on:
- Node
- redis
volumes:
- ./Trader:/arbie
command: Arbie -f trader.yml
command: Arbie -f trader.yml

Node:
image: hardhat:node
Expand Down

0 comments on commit 92760f1

Please sign in to comment.