-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a sushiswap stack and deploy core contracts
- Loading branch information
1 parent
2da03d7
commit 8713e6c
Showing
10 changed files
with
516 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: '3.2' | ||
|
||
services: | ||
# Deploys the UniswapV3Factory contract | ||
sushiswap-v3-core: | ||
image: cerc/sushiswap-v3-core:local | ||
environment: | ||
CERC_RPC_HOST: "fixturenet-eth-geth-1" | ||
CERC_RPC_PORT: "8545" | ||
CERC_RPC: "http://fixturenet-eth-geth-1:8545" | ||
CERC_ACCOUNTS_CSV_URL: "http://fixturenet-eth-bootnode-geth:9898/accounts.csv" | ||
command: | | ||
"./deploy-contracts.sh" | ||
volumes: | ||
- ../config/network/wait-for-it.sh:/app/wait-for-it.sh | ||
- ../config/watcher-sushiswap/v3-core/deploy-contracts.sh:/app/deploy-contracts.sh | ||
- ../config/watcher-sushiswap/hardhat.config.ts:/app/hardhat.config.ts |
Oops, something went wrong.