일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 컨트렉트 배포 자동화
- 러스트 기초 학습
- ethers type
- 스마트 컨트렉트 함수이름 중복
- ethers websocket
- Vue
- 컨트렉트 동일한 함수이름 호출
- 러스트기초
- git rebase
- nest.js설명
- ethers typescript
- 체인의정석
- 오블완
- vue기초
- 스마트컨트렉트프록시
- 스마트컨트렉트 함수이름 중복 호출
- ethers
- chainlink 설명
- 스마트컨트렉트 예약어 함수이름 중복
- 티스토리챌린지
- 프록시배포구조
- ethers v6
- 러스트 기초
- rust 기초
- SBT표준
- multicall
- Vue.js
- 스마트컨트렉트테스트
- ambiguous function description
- 머신러닝기초
Archives
- Today
- Total
체인의정석
TX hash로 부터 정보 뽑아내기 (blockNumber, gasUsed, blockTimestamp, status) 본문
블록체인/Ethers & web3
TX hash로 부터 정보 뽑아내기 (blockNumber, gasUsed, blockTimestamp, status)
체인의정석 2024. 11. 21. 12:17728x90
반응형
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;
const status = txReceipt.status === 1 ? "FINALIZED" : "FAILED";
res.status = status;
return res;
}
module.exports = {
getTxDataFromHash
}
provider의 경우 https의 엔드포인트로부터 다음과 같이 설정해주면 된다.
const provider = new ethers.JsonRpcProvider("endpoint");
728x90
반응형
'블록체인 > Ethers & web3' 카테고리의 다른 글
hardhat gas reporter 외부 설치 없이 사용하기 (0) | 2024.08.02 |
---|---|
ethers & websocket & http로 이벤트 구독 및 크로스체인 트랜잭션 실행, 트랜잭션 정보값 뽑아내기 (0) | 2024.07.18 |
ethers v6 이벤트 구독하고 유지시키는 방법 정리 (0) | 2024.07.04 |
ethers v5 -> v6 문법 (0) | 2024.04.15 |
ethers 6버전 이상에서 ethers.utils가 인식이 안되는 에러 (0) | 2023.12.24 |
Comments