일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 컨트렉트 동일한 함수이름 호출
- 러스트 기초 학습
- ethers typescript
- erc4337
- Vue
- erc4337 contract
- Vue.js
- ethers type
- 스마트 컨트렉트 함수이름 중복
- 오블완
- 머신러닝기초
- ethers websocket
- ambiguous function description
- 러스트 기초
- 체인의정석
- 계정추상화
- SBT표준
- cloud hsm
- cloud hsm 사용하기
- 티스토리챌린지
- redux toolkit 설명
- redux 기초
- vue기초
- rust 기초
- 러스트기초
- 스마트컨트렉트 함수이름 중복 호출
- git rebase
- 스마트컨트렉트 예약어 함수이름 중복
- ethers v6
- cloud hsm 서명
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