일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- nGrinder
- perfect
- postgresql
- Materials
- sshpass
- insert
- 28015
- PYTHON
- appium
- 실행권한
- kitura
- STF
- rethinkdb
- create table
- Jupyter
- SWIFT
- Jupyter Notebook
- nohup
- postgres
- ftp
- ssh
- centos
- GoCD
- port forwarding
- openpyxl
- ubuntu
- appium server
- STF_PortForwarding
- nmap
- mysql
- Today
- Total
목록Ethereum (16)
don't stop believing
Mac에서도 Geth를 설치해 봅시다.설치는 간단하며 아래 url을 참고하시면 됩니다.https://github.com/ethereum/go-ethereum/wiki/Installation-Instructions-for-Mac 먼저 brew로 go를 설치해 줍니다. $ brew install go go 버전도 확인해 줍니다. $ go version go version go1.10.3 darwin/amd64 이제 go-ethereum을 git에서 다운받아 설치하겠습니다.저는 Documents 하위에 Test_Ethereum이라고 폴더를 만들었습니다. 이곳에 다운받아 실행하겠습니다. Test_Ethereum 폴더에서 go-ethereum을 다운받습니다.go-ethereum 폴더에서 make 해줍니다. $ c..
채굴하기 (on Local TestNet) Ether를 생성했으니 eth.accounts[0]에서 eth.accounts[1]로 송금해 봅시다.송금은 sendTransaction 명령으로 수행합니다. from에 보내는 주소, to에 받는 주소, value에 송금액을 wei 단위로 적습니다. > eth.sendTransaction({from:eth.accounts[0], to:eth.accounts[1], value:web3.toWei(10,"ether")}) Error: account is locked at web3.js:3119:20 at web3.js:6023:15 at web3.js:4995:36 at :1:1 송금을 실행하면 에러가 발생합니다. 트랜잭션의 발행은 유료이며 from에 지정된 주소에서..
Geth를 설치했다면 Ether를 구하기 위해 채굴해 보겠습니다.채굴은 로컬 테스트넷에서 합니다. 먼저 geth를 실행합니다. $ geth --networkid 45 --nodiscover --maxpeers 0 --datadir /home/ngle/data_testnet console 2>> /home/ngle/data_testnet/geth.log Welcome to the Geth JavaScript console! instance: Geth/v1.8.14-stable-316fc7ec/linux-amd64/go1.10.1 coinbase: 0x26a43bc3dcef48f91b77df47dd353d9f34c163c4 at block: 0 (Thu, 01 Jan 1970 09:00:00 KST) dat..
Ubuntu에 Geth (Go-ethereum)을 설치합니다. 참고한 url은 아래와 같습니다. https://github.com/ethereum/go-ethereum/wiki/Installation-Instructions-for-Ubuntu Geth를 설치하는 방법은 두 가지가 있습니다. PPA로 설치하는 방법과 github에서 source를 다운받아 build를 하는 방법입니다. 저는 간단하게 PPA를 이용해 설치하겠습니다. 먼저 Ubuntu 버전부터 확인하고 가겠습니다. 간단하게 버전을 확인할 경우 cat /etc/issue로 확인할 수 있습니다. $ cat /etc/issue Ubuntu 18.04.1 LTS \n \l 버전을 확인하는 다른 방법은 lsb_release -a 입니다. $ lsb_r..
이더리움 라이브 네트워크 상태 확인 https://ethstats.net https://www.ethernodes.org https://etherscan.io https://www.etherchain.org https://ethstats.net https://www.ethernodes.org https://etherscan.io https://www.etherchain.org
이더리움 클라이언트인 Mist를 다운받아 설치해 보겠습니다.Mist는 여러 OS를 지원합니다. 저는 Mac에서 설치해 보겠습니다. 아래 github에서 다운받을 수 있습니다.https://github.com/ethereum/mist/releases 저는 mac 설치 파일인 Mist-macosx-0-11-1.dmg를 다운로드 했습니다. Applications 폴더로 이동하고 Mist를 실행시킵니다. "확인된 개발자가 등록한 응용 프로그램이 아니기 때문에 'Mist'를 열수 없습니다." 와 같은 메시지가 나올 경우 시스템 환경설정의 보안 및 개인 정보 보호 창에서 "확인 없이 열기'를 클릭해 줍니다. Mist을 열면 첫 화면 입니다. Due to a vulnerability affecting all rele..