일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 체인의정석
- erc4337 contract
- 러스트기초
- 컨트렉트 배포 자동화
- ethers websocket
- chainlink 설명
- 스마트컨트렉트 예약어 함수이름 중복
- 오블완
- 러스트 기초
- 머신러닝기초
- rust 기초
- SBT표준
- ambiguous function description
- 계정추상화
- ethers typescript
- 스마트컨트렉트테스트
- vue기초
- erc4337
- 스마트컨트렉트 함수이름 중복 호출
- Vue
- ethers type
- ethers v6
- git rebase
- 티스토리챌린지
- multicall
- 스마트 컨트렉트 함수이름 중복
- Vue.js
- 러스트 기초 학습
- ethers
- 컨트렉트 동일한 함수이름 호출
- Today
- Total
목록오블완 (2)
체인의정석
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; ..
트랜잭션 실행 전에 먼저 아래와 같이 estimateGas를 쓰면 트랜잭션을 보내기 전에 오류 메세지를 받아올 수 있다.contract.someMethod.estimateGas(arg0, arg2)그런데Error: execution reverted (unknown custom error)이런식으로 에러가 날 수 있다.Error: execution reverted (unknown custom error) (action="estimateGas", data="0xe2517d3f0000000000000000000000001ff0718d46e7d2b30995e52caf83b5f1916a975b2aeb38be3df14d720aeb10a2de6df09b0fb3cd5c5ec256283a22d4593110ca40", r..