forked from dydxopsdao/networks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
23 lines (21 loc) · 1.07 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
validate-dydx-mainnet-1-gentx:
docker build --platform linux/amd64 --tag public-mainnet-validate $(CURDIR)
docker run --platform linux/amd64 \
-e VALIDATE_GENESIS_DIR_PATH=./dydx-mainnet-1 \
-e VALIDATE_GENESIS_TAR_URL='https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv0.4.0/dydxprotocold-v0.4.0-linux-amd64.tar.gz' \
-e VALIDATE_GENESIS_STAKE_TOKEN=adydx \
-e GENESIS_FILE_NAME=pregenesis.json \
-e ADD_GENTXS=true \
-v $(CURDIR):/workspace \
public-mainnet-validate
validate-dydx-mainnet-1-final-genesis:
docker build --platform linux/amd64 --tag public-mainnet-validate $(CURDIR)
docker run --platform linux/amd64 \
-e VALIDATE_GENESIS_DIR_PATH=./dydx-mainnet-1 \
-e VALIDATE_GENESIS_TAR_URL='https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv0.4.0/dydxprotocold-v0.4.0-linux-amd64.tar.gz' \
-e VALIDATE_GENESIS_STAKE_TOKEN=adydx \
-e GENESIS_FILE_NAME=genesis.json \
-e ADD_GENTXS=false \
-v $(CURDIR):/workspace \
public-mainnet-validate
.PHONY: validate-dydx-mainnet-1-gentx validate-dydx-mainnet-1-final-genesis