{
"config": {
"chainId": 14333,
"homesteadBlock": 0,
"eip150Block": 0,
"eip155Block": 0,
"eip158Block": 0,
"byzantiumBlock": 0,
"constantinopleBlock": 0,
"petersburgBlock": 0,
"istanbulBlock": 0,
"berlinBlock": 0,
"clique": {
"period": 30,
"epoch": 30000
}
},
"difficulty": "1",
"gasLimit": "8000000",
"extradata": "0x00000000000000000000000000000000000000000000000000000000000000003db6e0872c90a34a681b40decd3aa6a0d55a1f7f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"alloc": {
"3db6e0872c90a34a681b40decd3aa6a0d55a1f7f": { "balance": "300000000000000000000" },
"c216Be4b5bC605D9d30F2312BF057192f4C83AD8": { "balance": "400000000000000000000" },
}
}
initialize_Node
bootnode -genkey boot.key
start_Node
bootnode -nodekey ./boot.key -verbosity 7 -addr 127.0.0.1:30301
initialize_Node
geth --datadir ./data init ../[NAME_OF_GENESIS_CONFIG].json
start_Node
geth --networkid 14333 --bootnodes enode://c1f11d32ccc9f68ac48a2b3a6a2cd4b5828454b3f5fa8cce66a50e7d24e2e8ab1a3c72ca065a06e6951729f53e433954e714f2cd3be4ac48dfd5029071293df9@127.0.0.1:0 --datadir ./data --port 30303 --ipcdisable --syncmode 'full' --http --allow-insecure-unlock --http.corsdomain “*” --http.port 8545 --authrpc.port 9551 --unlock '0x3db6e0872c90a34a681b40decd3aa6a0d55a1f7f' --password password.txt --mine --miner.etherbase '0x3db6e0872c90a34a681b40decd3aa6a0d55a1f7f' console
get_Balance
eth.getBalance('0x3db6e0872c90a34a681b40decd3aa6a0d55a1f7f')
send_Transaction
eth.sendTransaction({from:'0x3db6e0872c90a34a681b40decd3aa6a0d55a1f7f', to: '0xc216Be4b5bC605D9d30F2312BF057192f4C83AD8', value: '100000000000000000'})
initialize_Node
geth --datadir ./data init ../[NAME_OF_GENESIS_CONFIG].json
start_Node
geth --networkid 14333 --bootnodes enode://c1f11d32ccc9f68ac48a2b3a6a2cd4b5828454b3f5fa8cce66a50e7d24e2e8ab1a3c72ca065a06e6951729f53e433954e714f2cd3be4ac48dfd5029071293df9@127.0.0.1:0 --datadir ./data --port 30304 --ipcdisable --syncmode 'full' --http --allow-insecure-unlock --http.corsdomain “*” --http.port 8546 --authrpc.port 9552 --unlock '0xc216Be4b5bC605D9d30F2312BF057192f4C83AD8' --password password.txt console
get_Balance
eth.getBalance('0xc216Be4b5bC605D9d30F2312BF057192f4C83AD8')
send_Transaction
eth.sendTransaction({from:'0xc216Be4b5bC605D9d30F2312BF057192f4C83AD8', to: '0x3db6e0872c90a34a681b40decd3aa6a0d55a1f7f', value: '100000000000000000'})
eth Commands |
---|
eth.accounts |
eth.blockNumber |
eth.getTransactionFromBlock() |
eth.pendingTransactions |
eth.mining |
admin Commands |
---|
admin.nodeInfo |
admin.peers |
net Commands |
---|
net.peerCount |