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