일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 typescript
- vue기초
- erc4337 contract
- 스마트 컨트렉트 함수이름 중복
- git rebase
- 러스트기초
- SBT표준
- 러스트 기초
- Vue.js
- erc4337
- ethers
- ethers v6
- ambiguous function description
- 체인의정석
- rust 기초
- Vue
- 스마트컨트렉트 함수이름 중복 호출
- multicall
- chainlink 설명
- 컨트렉트 동일한 함수이름 호출
- ethers websocket
- 러스트 기초 학습
Archives
- Today
- Total
목록ProviderError: HttpProviderError (1)
체인의정석
hardhat, ethers 의 ProviderError: HttpProviderError
provider에 console.log를 찍어보니 HTTP provider가 로컬호스트로만 작동하고 해결이 안되고 있었다. 해당 부분을 보니 설정 문제인거 같은데 설정 파일을 바꾸고 체크를 해봐도 해결이 되지 않았다. 그래서 그냥 hardhat의 config를 사용하는 대신 수동으로 모두 지정해 주기로 하였다. import { BigNumber, BigNumberish, Signer } from "ethers"; import { ethers } from "hardhat"; export const basicSettings = async (): Promise => { const provider = new ethers.providers.JsonRpcProvider("RPC_URL"); const wallet ..
블록체인/Ethers & web3
2023. 7. 21. 11:37