비정기 스터디 #1 Go-Ethereum
ethereum·@dotkebi·
0.000 HBD비정기 스터디 #1 Go-Ethereum
# intro `ethereum`에 대해 공부해 보려고 한다. 플랫폼을 지향하는 블록체인들은 여러 가지가 있지만, `ethereum`에 대해 공부해보기로 했다. `go`는 처음이지만, 어떤 언어든지 `jetbrains`와 함께라면 두려울게 없다! --- # development environment 원래 개발은 개발환경 세팅이 가장 귀찮은 법. * 저장소 [https://github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) * Go-Lang [https://golang.org/dl/](https://golang.org/dl/) * GoLand [https://www.jetbrains.com/go](https://www.jetbrains.com/go) --- # source fork 자! `비트코인` 아류 씨리즈들이 하드포크 된 것처럼(?) `이더리움` 소스부터 `folk`하자.  # clone 다운로드 ``` git clone https://github.com/dotkebi/go-ethereum ``` --- # open project 내려받은 소스를 열어봤다.  --- 이상없이 잘 열린다. 오늘은 여기까지.
👍