-
Notifications
You must be signed in to change notification settings - Fork 26
/
Makefile
36 lines (34 loc) · 982 Bytes
/
Makefile
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
27
28
29
30
31
32
33
34
35
36
build-binaries:
go clean -modcache
cd ./prysm-stratis && go build -o=../bin/beacon-chain ./cmd/beacon-chain
cd ./go-stratis && go build -o=../bin/geth ./cmd/geth
run-geth-testnet:
./bin/geth \
--auroria \
--http \
--http.api=eth,engine,net,web3 \
--http.addr=0.0.0.0 \
--http.corsdomain=* \
--ws \
--ws.api=eth,engine,net,web3 \
--ws.addr=0.0.0.0 \
--ws.origins=* \
--authrpc.vhosts=* \
--authrpc.addr=0.0.0.0 \
--authrpc.jwtsecret=configs/testnet/jwtsecret \
--datadir=data/testnet/geth \
--syncmode=full
run-beacon-testnet:
./bin/beacon-chain \
--p2p-static-id \
--auroria \
--datadir=data/testnet/beacon \
--min-sync-peers=3 \
--rpc-host=0.0.0.0 \
--grpc-gateway-host=0.0.0.0 \
--execution-endpoint=http://localhost:8551 \
--accept-terms-of-use \
--jwt-secret=configs/testnet/jwtsecret \
--suggested-fee-recipient=0x123463a4B065722E99115D6c222f267d9cABb524 \
--minimum-peers-per-subnet=0 \
--enable-debug-rpc-endpoints