web3로 블럭, tx, txReceipt 가져오기
목차 블럭 가져오기 transaction 가져오기 transaction receipt 가져오기 1. 블럭 가져오기 1-1. 문법(syntax) web3.eth.getBlock(1,2,3) 1-2. 매개변수(parameters) String|Number|BN|BigNumber - 블록 번호 또는 블록 해시. 또는 "earliest", "latest" or "pending 불리언(선택, 디폴트는 false) - 만약 true라면, 반환된 블록의 transactions의 배열은 {}, false라면 tx 해시로 반환됨 함수(선택) - 첫번째 매개변수로 error 객체, 두번째 매개변수로 result를 반환하는 콜백함수 3. 반환(return): block 객체 { difficulty: '558380',//블록..
2022. 7. 1.
puppeth 명령어를 통한 genesis.json 생성하기
// genesis.json { "config": { "chainId": 7722, "homesteadBlock": 0, "eip150Block": 0, "eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000", "eip155Block": 0, "eip158Block": 0, "byzantiumBlock": 0, "constantinopleBlock": 0, "petersburgBlock": 0, "istanbulBlock": 0, "ethash": {} }, "nonce": "0x0", "timestamp": "0x62bd7dc2", "extraData": "0x0000000000000000000000000000..
2022. 7. 1.