IPC2 (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) IPC IPC Inter Process Communication의 약자로 프로세스 간의 통신을 뜻 Process는 컴퓨터에서 실행되고 있는 프로그램을 의미 IPC 통신 전 개인 이더리움 서버 생성 genesis.json 파일을 만들어서 기본 설정을 해준다 { "difficulty": "200000", "gasLimit": "3100000", "alloc": { "개인 메타마스크 지갑 주소": { "balance": "100000000" } }, "config": { "chainId": 50, "homesteadBlock": 0, "eip150Block": 0, "eip155Block": 0, "eip158Block": 0 } } difficulty : 문제의 난이도 gasLimit : 블록당 가스 지출 제한량 .. 2023. 2. 9. 이전 1 다음