일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ethers websocket
- multicall
- ethers v6
- 러스트 기초
- vue기초
- erc4337
- SBT표준
- 컨트렉트 동일한 함수이름 호출
- ethers
- 오블완
- 스마트 컨트렉트 함수이름 중복
- 컨트렉트 배포 자동화
- 스마트컨트렉트 예약어 함수이름 중복
- git rebase
- Vue.js
- 머신러닝기초
- 스마트컨트렉트 함수이름 중복 호출
- erc4337 contract
- 체인의정석
- rust 기초
- 티스토리챌린지
- ethers typescript
- ethers type
- 러스트 기초 학습
- chainlink 설명
- 계정추상화
- ambiguous function description
- Vue
- redux 기초
- 러스트기초
- Today
- Total
목록2024/01 (4)
체인의정석
Error: VM Exception while processing transaction: reverted with panic code 0x32 (Array accessed at an out-of-bounds or negative index) 해당 에러는 solidity에서 동적 배열안에 인덱스를 걸어서 요소를 넣을 때 발생한다. https://ethereum.stackexchange.com/questions/125089/error-vm-exception-while-processing-transaction-reverted-with-panic-code-0x32 Error: VM Exception while processing transaction: reverted with panic code 0x32 (Ar..
원래 하드햇 기본 세팅대로 자동 생성된 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: ..
여러개의 컨트렉트를 만드는 contractFactory 컨트렉트를 만들어야 하는 상황이 생겼다. 이런경우 사용가능한 함수는 create1,2,3가 있다. 이번엔 create1과 2에 대해 정리하려고한다. 출처 : https://docs.openzeppelin.com/cli/2.8/deploying-with-create2 Deploying Smart Contracts Using CREATE2 - OpenZeppelin Docs Under normal circumstances, sending funds to a random Ethereum address is a bad idea. Here however, we know we’ll be able to deploy Vault at the computed addr..
상황 : 내가 참조하고 있는 원본 브랜치가 내가 수정하는 동안 rebase를 해서 변경된 상황. 해당 상황에서는 일반적인 방법으로 해결이 어렵니다. 해결방안 : 해당 브랜치를 로컬에서 삭제하고 다시 받아온 후 다시 rebase를 해준다. 1. 로컬에서 브랜치 삭제 git branch -d 브랜치이름 2. 에러 발생시 If you are sure you want to delete it, run 'git branch -D 브랜치이름'. 3. 에러 무시하고 로컬 브랜치 삭제하기 git branch -D 브랜치이름 4. 삭제한 브랜치 다시 들어가기 git checkout 삭제한브랜치 5. 들어가서 pull 받기 git pull 6. 제대로 되었는지 확인하기 git reflog - reflog에 대해 정리가 잘 ..