일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- vue기초
- 러스트 기초
- 스마트 컨트렉트 함수이름 중복
- 컨트렉트 동일한 함수이름 호출
- 스마트컨트렉트 예약어 함수이름 중복
- 러스트기초
- 스마트컨트렉트 함수이름 중복 호출
- 티스토리챌린지
- ethers type
- chainlink 설명
- 스마트컨트렉트프록시
- ambiguous function description
- Vue
- ethers typescript
- 러스트 기초 학습
- multicall
- rust 기초
- nest.js설명
- ethers
- 스마트컨트렉트테스트
- 체인의정석
- 머신러닝기초
- 오블완
- ethers websocket
- SBT표준
- 컨트렉트 배포 자동화
- 프록시배포구조
- git rebase
- ethers v6
- Vue.js
Archives
- Today
- Total
목록get data from txhash (1)
체인의정석
TX hash로 부터 정보 뽑아내기 (blockNumber, gasUsed, blockTimestamp, status)
txhash로 부터 데이터를 뽑아낼 때에는 다음과 같이 뽑아내면 된다.const getTxDataFromHash = async (provider, txhash) => { const txReceipt = await provider.getTransactionReceipt(txhash); const res = {}; res.blockNumber = Number(txReceipt.blockNumber); res.gasUsed = Number(txReceipt.gasUsed); const blockTimestamp = await provider.getBlock(Number(txReceipt.blockNumber)); res.blockTimestamp = blockTimestamp.timestamp; ..
블록체인/Ethers & web3
2024. 11. 21. 12:17