Ethereum Development with Go (2)
Import 해야하는 패키지는 다음과 같습니다. go get 명령어로 가져오면 됩니다. package main import ( "context" "fmt" "log" "math" "math/big" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/ethclient" ) 계좌 잔액을 읽는 방법은 매우 간단합니다. 계좌 주소와 블록 번호(선택 사항)를 전달하여 클라이언트의 BalanceAt 메서드를 호출하면 됩니다. 블록 번호로 nil을 설정하면 최신 잔액이 반환됩니다. account := common.HexToAddress("0x09B225298c2C9F8428c198068588d10B677d1A08") fmt.Printl..
Blockchain/Ethereum
2023. 3. 30. 23:16