forked from ChainSafe/chainbridge-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (20 loc) · 603 Bytes
/
Makefile
File metadata and controls
26 lines (20 loc) · 603 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
URL?=http://localhost:8545
install-deps:
@echo " > \033[32mInstalling dependencies... \033[0m "
./scripts/install_deps.sh
.PHONY: test
test:
@echo " > \033[32mTesting contracts... \033[0m "
npx truffle test
compile:
@echo " > \033[32mCompiling contracts... \033[0m "
npx truffle compile
start-ganache:
@echo " > \033[32mStarting ganache... \033[0m "
./scripts/start_ganache.sh
start-geth:
@echo " > \033[32mStarting geth... \033[0m "
./scripts/geth/start_geth.sh
bindings: compile
@echo " > \033[32mCreating go bindings for ethereum contracts... \033[0m "
./scripts/create_bindings.sh