go2 (BlockChain) MetaMask axios 통신 request 방식 정의 const request = axios.create({ method: "POST", baseURL: "http://localhost:8080", // metamask 네트워크에 설정한 주소와 port 번호 header: { "content-type": "application/json", }, }); 계정 생성 request({ data: { id: 50, jsonrpc: "2.0", method: "personal_newAccount", params: [e.target["new-pw"].value], // 계정 생성하면서 설정할 비밀번호 입력할 input창의 value }, }); 지갑정보 보기 계정들 중 클릭 한 계정 정보 보기 const walletListElem = docu.. 2023. 2. 9. (BlockChain) Geth & Go 설정 Geth를 위한 설정 Geth : Go 언어로 구현된 ethereum(이더리움) 서버 Golang Google에서 개발한 프로그래밍 언어 (컴파일 언어) 이름은 Go이지만 검색 등에서 불편해서 Golang이라고 부른다 Go 설치 sudo apt-get install golang Go version 확인 go version geth 라이브러리 sudo apt-get install libgmp3-dev tree make build-essential libgmp3-dev : 다중 정밀도 산술 라이브러리 tree : 디렉터리를 tree 형태로 보여준다 make : 통합 컴파일러, 다양한 언어에 대해서 알아서 빌드를 해준다 build-essential : 빌드에 필요한 기본 라이브러리들을 제공 Go-Ethereu.. 2023. 2. 9. 이전 1 다음