Geth
Geth를 실행해서 네트워크에 접속해보자.
Geth 설치
Clef 셋업


Start Clef

Start geth

Connecting to Geth


Get ether
Send transaction
Last updated
Geth를 실행해서 네트워크에 접속해보자.






Last updated
brew tap ethereum/ethereum
brew install ethereumsudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereumclef initclef --keystore <GETH_DATA_DIR>/keystore --chainid 5geth --goerli --syncmode "light" --http --signer=<CLEF_LOCATION>/clef.ipcgeth attach <IPC_LOCATION>> personal.listAccounts> eth.sendTransaction({from:"<ADDRESS_0>",to:"<ADDRESS_1>", value: web3.toWei(0.01,"ether")})
> web3.fromWei(eth.getBalance("<ADDRESS_1>"),"ether")