일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- multicall
- 오블완
- 스마트컨트렉트테스트
- ethers
- 러스트기초
- ambiguous function description
- 체인의정석
- 컨트렉트 동일한 함수이름 호출
- Vue
- ethers websocket
- rust 기초
- SBT표준
- chainlink 설명
- 머신러닝기초
- Vue.js
- 러스트 기초
- git rebase
- 스마트 컨트렉트 함수이름 중복
- 티스토리챌린지
- erc4337 contract
- 스마트컨트렉트 예약어 함수이름 중복
- erc4337
- ethers typescript
- ethers type
- 스마트컨트렉트 함수이름 중복 호출
- 계정추상화
- 컨트렉트 배포 자동화
- 러스트 기초 학습
- vue기초
- ethers v6
- Today
- Total
목록분류 전체보기 (496)
체인의정석
먼저 상위경로부터 차례대로 env 파일을 설정하려고 한다면 source_up .envrc 이걸 env 파일 마지막에 추가해주어야 한다. 해당 구문을 넣어주게 되면 해당 경로 위의 경로에 해당하는 모든 envrc를 통하여서 변수를 업데이트 할 수 있다.
https://jamesbachini.com/assembly-in-solidity/ 3 Examples Of How To Use Assembly In Solidity Ethereum developers can directly use assembly in Solidity to improve the performance of their code. When OpenSea released the Seaport upgrade it reported the jamesbachini.com seaport에서 사용되는 어셈블리어 참고링크 https://medium.com/upstate-interactive/a-simple-example-for-how-to-use-soliditys-inline-assembly-d4259ef..
체인링크의 기본 아키텍쳐에 대해서 알아보았다. https://docs.chain.link/docs/architecture-overview/ Data Feeds Architecture | Chainlink Documentation docs.chain.link 크게 3가지로 나누는 거같다. 1. 기본 요청 모델 - 1대 1로 요청에 대해 응답하는 것으로 아래 사이트에서 확인 가능 등록해두면 Id를 받아서 https://docs.chain.link/docs/any-api/get-request/introduction/ Make a GET Request | Chainlink Documentation Learn how to make a GET request to an API from a smart contract,..
이번 프로젝트의 장기적인 로드맵에 있어서 chain link를 연동하는 부분을 고려중이기 때문에 한번 살펴 보았다. 먼저 체인링크의 활용 방안은 스마트컨트렉트 내부에서 url에 대한 요청을 보내서 거기서 받은 응답값을 통해서 활용이 가능한 것이였다. chain link VRF 랜덤 변수를 뽑아낼 때는 최근에 나온 체인링크 VRF를 활용하면 되었는데 https://docs.chain.link/docs/vrf/v2/best-practices/ VRF Best Practices | Chainlink Documentation Best pracices for using Chainlink VRF. docs.chain.link 일단 내부적으로는 랜덤 변수를 생성할 수 없기 때문에 외부에서 데이터를 가져와야 하는데 f..
회사에서 특허에 대한 사항을 작성하기 위하여 Psudo code를 작성해 보았다. 지난학기 논문 작성 때도 Psudo Code를 작성해보려 했기 때문에 한번 이번 기회에 제대로 찾아보기로 하였다. 여기 글이 잘 되어 있는 것 같아서 참고하기로 하였다. https://builtin.com/data-science/pseudocode Pseudocode: What It Is and How to Write It Pseudocode describes the distinct steps of an algorithm in a way that’s easy for anyone with to understand. Here’s how to write your own. builtin.com Psudo Code란? & 컨트렉트에..
특허 출원 업무 및 자사 제품 초기 설계 단계 업무를 받고 차트를 그려야 하는 상황이 되었다. 플로우 다이어그램의 경우 그냥 만들면 정신이 없기 때문에 깔끔한 툴을 쓰는게 좋은데 코드로 작성하면 알아서 표를 그려주는 툴이 있어서 이를 이용하여 산출물을 작성하기로 하였다. 플로우다이어그램/ 플로우 차트 그리기 https://mermaid-js.github.io/mermaid-live-editor/edit/#pako:eNpVkE1qw0AMha8itEohvoAXhcZOsgmk0Ow8WQiPnBmS-WEsU4Ltu3ccU2i1kt77nhAasQ2ascRbomjgUisPuT6ayiTbi6P-CkXxPh1ZwAXPzwl2m2OA3oQYrb-9rfxugaAaTwvGIMb6-7xa1St_9jxB3ZwoSojXv87lO..
https://www.blockchain-council.org/blockchain/layers-of-blockchain-technology/ A Beginner's Guide to Understanding the Layers of Blockchain Technology - In this post, we'll look at how layers are vital in IT ecosystems and how the Blockchain setup works according to the different layers. www.blockchain-council.org 특허와 관련하여 기존 기술에 대한 아키텍쳐를 그리다가 기능을 레이어 별로 나누어서 차별점을 부각시키자는 생각이 들게 되었다. 하지만 어떤 용어가 정..
테스트 코드에서 이더리움을 전송하는 방법에 대해서 찾아보았다. 아래 링크를 보고 참고해서 알 수 있었다. https://ethereum.stackexchange.com/questions/101680/how-do-i-send-eth-from-an-account-to-another-in-hardhat How do I send ETH from an account to another in Hardhat? I tried both signer.sendTransaction({ to, value }); and provider.send("eth_sendTransaction", [{ from, to, value }]);, and neither worked for me. Would be great if your answer..