일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 러스트기초
- ethers websocket
- Vue
- Vue.js
- 오블완
- 스마트 컨트렉트 함수이름 중복
- 티스토리챌린지
- 스마트컨트렉트 함수이름 중복 호출
- 체인의정석
- erc4337
- multicall
- rust 기초
- 컨트렉트 배포 자동화
- vue기초
- SBT표준
- 머신러닝기초
- erc4337 contract
- ethers typescript
- ethers
- 컨트렉트 동일한 함수이름 호출
- ethers v6
- 러스트 기초 학습
- 러스트 기초
- ambiguous function description
- chainlink 설명
- 스마트컨트렉트테스트
- git rebase
- 스마트컨트렉트 예약어 함수이름 중복
- ethers type
- 계정추상화
- Today
- Total
목록블록체인/Solidity (68)
체인의정석
erc20토큰을 전송 하면 nft가 민팅 되는 구조를 만들고 있었는데 문제가 발생하였다. 평소에는 async function pushETHwithdraw(erc20Token, myAddress, provider, abi) { clientsETH = [] console.log("pushETHwithdraw") const resObj = {} const topic = [erc20Token.filters.WithdrawETH().topics].toString(); const filter = { address: ERC20, fromBlock: 28546565, topics: [topic] }; const getlogs = await provider.getLogs(filter); let iface = new et..
solidity에서 만약 자료형을 넣어서 에러메세지를 주고 싶다면 에러를 정의한 후 revert를 해주면 된다. // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.10; error InvalidNumber(uint32 required, uint32 passed); contract CustomErrors{ uint32 private constant magicNumber = 42; function checkMagicNumber(uint32 _number) public pure { if (_number != magicNumber) revert InvalidNumber({ required: magicNumber, passed: _number }); // ..

이번에 컨트렉트를 작성하면서 변수명에서 그냥 address가 아닌 CToken cTokenAddress 이런방식의 파라미터가 함수에 쓰이는 경우를 보았다. 이런경우 인터페이스를 작성할 때 Storage 부분을 컨트렉트 형태로 먼저 작성한 후에 contract CTokenStorage { /** * @dev Guard variable for re-entrancy checks */ bool internal _notEntered; /** * @notice EIP-20 token name for this token */ string public name; /** * @notice EIP-20 token symbol for this token */ string public symbol; /** * @notice ..
해당 오류는 constructor의 인자 값이랑 실제 넣은 인자값의 개수가 다를 때 나는 에러이다. 위의 에러를 겪는다면 생성자의 인자값 개수를 다시 한번 살펴보자! https://stackoverflow.com/questions/56944299/how-to-fix-error-types-values-length-mismatch-in-contract-testing How to fix "Error: types/values length mismatch" in contract testing I'm following an Ethereum Dapp tutorial on Udemy. I seem to stumble upon an error somewhere early in the course. I was about ..
https://forum.openzeppelin.com/t/security-advisory-initialize-uups-implementation-contracts/15301/23 Security advisory: Initialize UUPS implementation contracts Thank you @frangio I have upgraded the OpenZeppelin Upgradeable Contracts to version 4.3.2. I am using the following in my Smart Contract, and do not have any Constructor in my Contract itself: contract MyContract is Initializable, ERC72..
https://www.npmjs.com/package/solidity-docgen solidity-docgen Documentation generator for Solidity smart contracts.. Latest version: 0.6.0-beta.34, last published: 13 days ago. Start using solidity-docgen in your project by running `npm i solidity-docgen`. There are 27 other projects in the npm registry using solidit www.npmjs.com 오픈제플린에서 만들었으며, 주석을 잘 달아놓을 시에 문서도 잘 나오는 것을 확인할 수 있었다. 1. 설치 npm i ..
zapper 코드를 분석하다가 Address 부분을 발견하여 글로 한번 남겨본다. https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol GitHub - OpenZeppelin/openzeppelin-contracts: OpenZeppelin Contracts is a library for secure smart contract development. OpenZeppelin Contracts is a library for secure smart contract development. - GitHub - OpenZeppelin/openzeppelin-contracts: OpenZeppelin ..
0.5.0 버전의 코드로 작업중이 였는데 payable을 다루는 과정에서 컴파일 에러가 발생하였다. 에러의 원인은 바로 solidity 버전이 0.5.0 버전 이상이 되면서 주소값을 payable로 지정해 주어야 하는데 payable을 사용하면 다음과 같은 에러가 발생하는 것. 많은 외국인들도 동일한 문제로 헤매고 있는것 같다. 비슷한 케이스에 대한 결과가 다수 확인되었다. 읽어본 결과 여기에 대한 해결책은 다음과 같다. 1. payable 대신에 call에다가 value를 입려서 쓴다. (low level call은 address payable이 아니여도 가능) 2. solidity를 0.6.0 버전 이상으로 올려준 후 컴파일러에서도 맞추어 주면 된다고 한다. (Solidity 버전을 올려야 함) 그 ..