11 lines
No EOL
294 B
Makefile
11 lines
No EOL
294 B
Makefile
start:
|
|
geth --rpc --rpcaddr "localhost" --rpcport "8545" --datadir="./data" --rpccorsdomain "*" --rpcapi "eth,net,web3" --nodiscover
|
|
|
|
new:
|
|
geth account new --datadir ./data
|
|
|
|
init:
|
|
geth -datadir ./data init ./genesis.json
|
|
|
|
console:
|
|
geth --datadir ./data attach ipc:./data /geth.ipc
|