일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 러스트 기초 학습
- 스마트컨트렉트 함수이름 중복 호출
- 스마트컨트렉트프록시
- 체인의정석
- 러스트 기초
- 스마트컨트렉트 예약어 함수이름 중복
- 스마트컨트렉트테스트
- vue기초
- 티스토리챌린지
- rust 기초
- Vue.js
- ethers type
- chainlink 설명
- 프록시배포구조
- ethers v6
- 오블완
- ambiguous function description
- 러스트기초
- 머신러닝기초
- git rebase
- 컨트렉트 배포 자동화
- ethers typescript
- ethers
- 스마트 컨트렉트 함수이름 중복
- Vue
- multicall
- 컨트렉트 동일한 함수이름 호출
- nest.js설명
- ethers websocket
- SBT표준
Archives
- Today
- Total
목록SyntaxError: Identifier expected. 'const' is a reserved word that cannot be used here (1)
체인의정석
SyntaxError: Identifier expected. 'const' is a reserved word that cannot be used here. 에러 해결
원래 하드햇 기본 세팅대로 자동 생성된 hardhat confing.ts는 다음과 같다. import { HardhatUserConfig } from "hardhat/config"; import "@nomicfoundation/hardhat-toolbox"; const config: HardhatUserConfig = { solidity: "0.8.19", }; export default config; 하지만 만약 ethers v6 를 사용할 경우 type-chain과정에서 다음과 같은 에러가 발생한다. Generating typings for: 19 artifacts in dir: typechain-types for target: ethers-v6 An unexpected error occurred: ..
블록체인/Solidity
2024. 1. 8. 17:11