일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 websocket
- rust 기초
- ethers v6
- ambiguous function description
- 러스트 기초
- Vue
- 러스트기초
- ethers
- 프록시배포구조
- 컨트렉트 동일한 함수이름 호출
- ethers typescript
- 스마트컨트렉트테스트
- 스마트컨트렉트프록시
- 깃허브명령어
- 스마트 컨트렉트 함수이름 중복
- nest.js설명
- ethers type
- 컨트렉트 배포 자동화
- multicall
- Vue.js
- nestjs 튜토리얼
- 스마트컨트렉트 예약어 함수이름 중복
- git rebase
- chainlink 설명
- SBT표준
- vue기초
- 머신러닝기초
Archives
- Today
- Total
체인의정석
Module '"hardhat"' has no exported member 'ethers' 에러 해결법 본문
블록체인/Ethers & web3
Module '"hardhat"' has no exported member 'ethers' 에러 해결법
체인의정석 2023. 7. 21. 10:13728x90
반응형
1. tsConfig 살펴보기
tsConfig에서 scripts 경로가 지정되어있는지 확인한다.
include 안에 들어가있는지 보면된다.
{
"compilerOptions": {
"target": "ES2017",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"strict": true,
"rootDirs": ["./src", "./scripts", "./test"],
"esModuleInterop": true
},
"exclude": ["dist", "node_modules"],
"include": ["./test", "./src", "./scripts"],
"files": ["./hardhat.config.ts"]
}
2. hardhat.config.ts 살펴보기
import '@nomiclabs/hardhat-ethers'
hardhat-ethers가 잇는지 확인한다.
3. npm 설치 다시해보기
npm install --save-dev @nomiclabs/hardhat-ethers 'ethers@^5.0.0'
4. nodemodules 삭제 후 공식 문서 보고 처음부터 다시해보기
https://hardhat.org/hardhat-runner/plugins/nomicfoundation-hardhat-ethers
npm install --save-dev @nomiclabs/hardhat-ethers 'ethers@^5.0.0'
728x90
반응형
'블록체인 > Ethers & web3' 카테고리의 다른 글
ethers 6버전 이상에서 ethers.utils가 인식이 안되는 에러 (0) | 2023.12.24 |
---|---|
hardhat, ethers 의 ProviderError: HttpProviderError (0) | 2023.07.21 |
ethers & typechain 사용해서 타입 정의하기 (0) | 2023.07.20 |
hardhat, ethers, typescript 에서 서명정보 및 공개키 등록 및 가져오기 (getSigners, getContractAt) (0) | 2023.07.20 |
블록체인에서 발생한 이벤트 데이터 정리해서 엑셀 파일로 만들기 (ethers, hardhat, excel) (0) | 2023.07.10 |
Comments