일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vue기초
- Vue
- 스마트컨트렉트테스트
- 러스트기초
- ethers typescript
- Vue.js
- 스마트 컨트렉트 함수이름 중복
- ethers websocket
- git rebase
- 계정추상화
- 스마트컨트렉트 함수이름 중복 호출
- ambiguous function description
- chainlink 설명
- 오블완
- 스마트컨트렉트 예약어 함수이름 중복
- multicall
- 러스트 기초
- rust 기초
- 러스트 기초 학습
- 컨트렉트 동일한 함수이름 호출
- ethers type
- ethers
- 머신러닝기초
- ethers v6
- 체인의정석
- erc4337 contract
- 티스토리챌린지
- erc4337
- 컨트렉트 배포 자동화
- SBT표준
- Today
- Total
목록블록체인 (225)
체인의정석
Solidity를 오랜만에 보고 있기 때문에 최신 코딩 스타일을 참고하기 위해 소스들을 살펴보았다. https://github.com/ProjectOpenSea/seaport/tree/main/contracts GitHub - ProjectOpenSea/seaport: Seaport is a marketplace protocol for safely and efficiently buying and selling NFTs. Seaport is a marketplace protocol for safely and efficiently buying and selling NFTs. - GitHub - ProjectOpenSea/seaport: Seaport is a marketplace protocol for sa..
const bigNumberChainId = await exchangeCore.getChainId(); chainId = ethers.BigNumber.from(bigNumberChainId).toNumber(); 다음과 같이 ChainID를 조회하는 경우 bignumber가 나오는 경우에서 위와 같이 bigNumber를 먼저 구한 후 .toNumber()를 해주면 숫자형으로 바뀐다. 일반적인 decimal과 관련된 경우 소수점을 표시하고 싶은 경우 아래와 같이 바꿔서 표시해 줄 수 있다. https://ethereum.stackexchange.com/questions/101356/how-to-convert-bignumber-to-normal-number-using-ethers-js How to conv..
먼저 solidity에서 enum을 정의하는 부분은 다음과 같이 진행한다. 소스는 오픈씨의 새로나온 Seaport의 스타일을 참고하여 다루었다. 먼저 컨트렉트 부분이다. enum을 정의하는 경로는 따로 만들어서 관리하였다. solidity에서 컨트렉트를 배포할 때는 어차피 통합되어 배포되기 때문에 요즘 스타일은 이런식을 많이 쓰는 것 같다. Sturct 및 enum에 부분을 다음과 같이 따로 구현하였다. /** Side 0: order is made from seller 1: order is made from buyer */ enum Side { SELL, BUY } 여기에 있는 테스트 코드는 다음과 같이 작성하였다. it("check test Enum", async function () { consol..
EIP712 형태의 서명에서 domain separator를 할 때 체인아이디가 들어가야 하기 때문에 이를 위해서 체인아이디를 통일 시키는 방법을 알아 보았다. 먼저 하드햇 네트워크 실행의 경우 npx hardhat node 를 입력하면 테스트 네트워크가 노드 형태로 올라가게 된다. 여기서 공개키와 비밀키가 같이 나오므로 나온 비밀키를 메타마스크에 임포트 시켜서 메타마스크 연결이 가능하다. lambda256@lambda256-ethan% npx hardhat node You are using a version of Node.js that is not supported by Hardhat, and it may work incorrectly, or not work at all. Please, make sur..
https://nft.mirror.xyz/VdF3BYwuzXgLrJglw5xF6CHcQfAVbqeJVtueCr4BUzs Horton Hears A Who! Neutralizing a critical vulnerability in Wyvern Protocol nft.mirror.xyz https://github.com/ethers-io/ethers.js/issues/687 Add EIP-712 Ancillary Package for v5. · Issue #687 · ethers-io/ethers.js This is a feature a few people have requested. While I'm not a fan of EIP-712 it is a feature that some people are u..
호출 부분 /** * @dev Internal view function to verify the signature of an order. An * ERC-1271 fallback will be attempted if either the signature length * is not 32 or 33 bytes or if the recovered signer does not match the * supplied offerer. Note that in cases where a 32 or 33 byte signature * is supplied, only standard ECDSA signatures that recover to a * non-zero address are supported. * * @param..
https://ethereum.stackexchange.com/questions/15641/how-does-a-contract-find-out-if-another-address-is-a-contract How does a contract find out if another address is a contract? Is it possible, from within a contract written in Solidity, to check if a contract is placed on a specific address or if this address does not contain any code? ethereum.stackexchange.com 오픈씨의 wyvernExchange의 경우 아래와 같은 코드가..
0.4.24 버전의 솔리디티를 업그레이드 가능한 컨트렉트로 바꾸는 과정에서 위의 에러가 났다. https://ethereum.stackexchange.com/questions/2397/internal-compiler-error-accessors-for-mapping-with-dynamically-sized-keys-not-y Internal compiler error: Accessors for mapping with dynamically-sized keys not yet implemented I have a mapping(string => Person) public map: struct Person { string name; string description; address primaryAddress; ..