Post

Geth 기본 명령어

Geth 기본 명령어

Ethereum 실행하기

1
% geth --datadir {경로} console

Geth에서 자주 쓰이는 명령어

계좌 정보

모든 계좌 확인하기

1
> eth.accounts

특정 계좌 확인하기

1
> eth.accounts[숫자]

잔고 확인하기

1
> eth.getBalance(eth.accounts[숫자])

계좌 잠금을 풀 때

1
2
> personal.unlockAccount(eth.accounts[숫자])
> personal.unlockAccount(eth.accounts[숫자], "기존 비밀번호")

채굴

1
2
> miner.start()
> miner.stop()

채굴 전엔 잔액이 0이었으나, 채굴 후엔 아래 사진과 같이 잔액이 늘어난 것을 확인할 수 있음.

img

  • 0번째 계좌만 잔액이 늘어난 이유는 기본 계좌가 0번 계좌로 설정되어 있기 때문임.
This post is licensed under CC BY 4.0 by the author.