| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 체인의정석
- vue기초
- cloud hsm 사용하기
- rust 기초
- cloud hsm 서명
- ethers type
- ethers v6
- 러스트 기초
- 스마트컨트렉트 예약어 함수이름 중복
- SBT표준
- 계정추상화
- 스마트 컨트렉트 함수이름 중복
- Vue.js
- Vue
- cloud hsm
- 러스트 기초 학습
- erc4337 contract
- 스마트컨트렉트 함수이름 중복 호출
- redux toolkit 설명
- redux 기초
- 러스트기초
- ethers typescript
- 컨트렉트 동일한 함수이름 호출
- 티스토리챌린지
- git rebase
- ambiguous function description
- ethers websocket
- erc4337
- 머신러닝기초
- 오블완
Archives
- Today
- Total
목록ethers getSigner (1)
체인의정석
hardhat config 에서 먼저 다음과 같이 네트워크와 프라이빗 키를 넣어준다. wemixTest: { url: 'https://api.test.wemix.com', accounts: [process.env.PRIVATE_KEY!,process.env.PRIVATE_KEY2!], } 해당 private key에 대한 public key를 불러오려면 다음과 같이 쓰면 된다. const signer = await ethers.getSigners(); console.log("getSigner:", signer[0].address); console.log("getSigner:", signer[1].address); 그리고 해당 signer의 경우 const contractName = await ethers..
블록체인/Ethers & web3
2023. 7. 20. 10:50