일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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기초
- git rebase
- Vue.js
- 스마트컨트렉트테스트
- 러스트기초
- ethers v6
- SBT표준
- 컨트렉트 동일한 함수이름 호출
- ethers
- erc4337 contract
- Vue
- 러스트 기초
- 머신러닝기초
- rust 기초
- ethers websocket
- ambiguous function description
- ethers type
- 러스트 기초 학습
- 스마트컨트렉트 함수이름 중복 호출
- multicall
- erc4337
- 스마트컨트렉트 예약어 함수이름 중복
- chainlink 설명
- 컨트렉트 배포 자동화
- 티스토리챌린지
- 오블완
- ethers typescript
- 체인의정석
- 스마트 컨트렉트 함수이름 중복
- 계정추상화
Archives
- Today
- Total
목록tx hash 디코드 (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