2021-05-04 11:54:19 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# set -Eeuo pipefail
|
2021-09-30 03:00:25 +00:00
|
|
|
|
2022-02-11 18:17:37 +00:00
|
|
|
# https://notes.ethereum.org/rmVErCfCRPKGqGkUe89-Kg
|
2021-05-04 11:54:19 +00:00
|
|
|
|
2022-02-11 18:17:37 +00:00
|
|
|
# Genesis block hash: 0xfoobar
|
2021-11-10 11:41:02 +00:00
|
|
|
# To start miner, run miner.start()
|
2021-05-20 10:44:13 +00:00
|
|
|
# To increase verbosity: debug.verbosity(4)
|
2021-05-04 11:54:19 +00:00
|
|
|
|
2021-09-30 03:00:25 +00:00
|
|
|
GENESISJSON=$(mktemp)
|
|
|
|
GETHDATADIR=$(mktemp -d)
|
|
|
|
|
|
|
|
echo \{\
|
2021-11-10 11:41:02 +00:00
|
|
|
\"config\": \{\
|
2021-09-30 03:00:25 +00:00
|
|
|
\"chainId\":1,\
|
|
|
|
\"homesteadBlock\":0,\
|
|
|
|
\"eip150Block\":0,\
|
|
|
|
\"eip155Block\":0,\
|
|
|
|
\"eip158Block\":0,\
|
|
|
|
\"byzantiumBlock\":0,\
|
|
|
|
\"constantinopleBlock\":0,\
|
|
|
|
\"petersburgBlock\":0,\
|
|
|
|
\"istanbulBlock\":0,\
|
|
|
|
\"muirGlacierBlock\":0,\
|
|
|
|
\"berlinBlock\":0,\
|
|
|
|
\"londonBlock\":0,\
|
|
|
|
\"clique\": \{\
|
|
|
|
\"period\": 5,\
|
|
|
|
\"epoch\": 30000\
|
|
|
|
\},\
|
2021-11-10 11:41:02 +00:00
|
|
|
\"terminalTotalDifficulty\":0\
|
2021-09-30 03:00:25 +00:00
|
|
|
\},\
|
|
|
|
\"nonce\":\"0x42\",\
|
|
|
|
\"timestamp\":\"0x0\",\
|
|
|
|
\"extraData\":\"0x0000000000000000000000000000000000000000000000000000000000000000a94f5374fce5edbc8e2a8697c15331677e6ebf0b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\",\
|
2021-10-12 11:37:40 +00:00
|
|
|
\"gasLimit\":\"0x1C9C380\",\
|
2021-11-10 11:41:02 +00:00
|
|
|
\"difficulty\":\"0x400000000\",\
|
2021-09-30 03:00:25 +00:00
|
|
|
\"mixHash\":\"0x0000000000000000000000000000000000000000000000000000000000000000\",\
|
|
|
|
\"coinbase\":\"0x0000000000000000000000000000000000000000\",\
|
|
|
|
\"alloc\":\{\
|
|
|
|
\"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\":\{\"balance\":\"0x6d6172697573766477000000\"\} \
|
|
|
|
\},\
|
|
|
|
\"number\":\"0x0\",\
|
|
|
|
\"gasUsed\":\"0x0\",\
|
|
|
|
\"parentHash\":\"0x0000000000000000000000000000000000000000000000000000000000000000\",\
|
|
|
|
\"baseFeePerGas\":\"0x7\"\
|
2021-10-12 11:37:40 +00:00
|
|
|
\} > "${GENESISJSON}"
|
2021-05-04 11:54:19 +00:00
|
|
|
|
2021-10-12 11:37:40 +00:00
|
|
|
# Initialize the genesis
|
2022-02-11 18:17:37 +00:00
|
|
|
~/go-ethereum/build/bin/geth --http --ws -http.api "engine" --datadir "${GETHDATADIR}" init "${GENESISJSON}"
|
2021-10-12 11:37:40 +00:00
|
|
|
|
|
|
|
# Import the signing key (press enter twice for empty password)
|
2022-02-11 18:17:37 +00:00
|
|
|
~/go-ethereum/build/bin/geth --http --ws -http.api "engine" --datadir "${GETHDATADIR}" account import <(echo 45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8)
|
2021-10-12 11:37:40 +00:00
|
|
|
|
|
|
|
# Start the node (and press enter once to unlock the account)
|
2022-03-05 14:40:58 +00:00
|
|
|
~/go-ethereum/build/bin/geth --http --ws --http.api "eth,net,engine" -ws.api "eth,net,engine" --datadir "${GETHDATADIR}" --allow-insecure-unlock --unlock "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b" --password "" --nodiscover console
|