일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스마트컨트렉트 함수이름 중복 호출
- SBT표준
- 러스트 기초
- 스마트컨트렉트테스트
- ethers typescript
- 러스트 기초 학습
- erc4337
- ethers v6
- 컨트렉트 동일한 함수이름 호출
- 티스토리챌린지
- 컨트렉트 배포 자동화
- 머신러닝기초
- 러스트기초
- 체인의정석
- Vue
- chainlink 설명
- 스마트컨트렉트 예약어 함수이름 중복
- Vue.js
- 계정추상화
- ambiguous function description
- multicall
- 스마트 컨트렉트 함수이름 중복
- vue기초
- 오블완
- erc4337 contract
- ethers type
- rust 기초
- ethers websocket
- git rebase
- ethers
- Today
- Total
목록블록체인 (225)
체인의정석
Horizon: A Gas-Efficient, Trustless Bridge for Cross-Chain Transactions 크로스 체인 브릿지에 대한 논문 https://arxiv.org/pdf/2101.06000.pdf 레퍼런스에 자주 등장하는 두 논문 [1] Satoshi Nakamoto. Bitcoin: A peer-to-peer electronic cash system, 10 2008. Available at https://bitcoin.org/bitcoin.pdf. [2] Vitalik Buterin. Ethereum’s white paper. https://github.com/ethereum/wiki/wiki/ White-Paper, 2014. Survey of Crosschain Com..
https://www.youtube.com/channel/UCHsRy47P2KlE749oAAjb0Yg 타임해커 교육/과외/컨설팅 문의 - timehacker95@gmail.com 문과생 출신 블록체인 개발자로서, 블록체인에 입문하시는 분들, IT를 배우시려는 분들에게 시간을 절약해드린다는 의미에서 타임해커라고 지었습니 www.youtube.com 회원가입시 보너스를 받을 수 있는 코인리스트 레페럴 => https://coinlist.co/clt?referral_code=PPHFQJ
medium.com/compound-finance/supplying-assets-to-the-compound-protocol-ec2cf5df5aa Supplying Assets to the Compound Protocol Learn how to supply assets to the Compound protocol through JSON RPC and proxy smart contracts medium.com The function first creates references to the production instances of Dai and cDAI contracts using our interface definitions. Then the function logs the exchange rate an..
1. abstarct => 컨트렉트에 있는 함수 중에 전부 또는 하나라도 { } 와 같이 내용이 없고 정의가 안 되어 있는 경우 abstarct를 써주어야 한다. 인터페이스와의 차이는? : 인터페이스는 함수의 내용이 있으면 안되고 상속을 받으면 안되며, 모든 함수는 external로 가시성을 설정해 주어야 한다. 또한 생성자를 선언할 수 없으며, 상태변수도 선언하면 안된다. docs.soliditylang.org/en/v0.6.6/contracts.html?highlight=contract%20abstract#abstract-contracts Contracts — Solidity 0.6.6 documentation State variables can be declared as constant or imm..
AAVE의 경우 테스트넷을 잉요한 유동성 풀 테스트 환경이 매우 잘 되어 있었다. testnet.aave.com/markets Aave - Open Source Liquidity Protocol Aave is an Open Source Protocol to create Non-Custodial Liquidity Markets to earn interest on deposits and borrow assets with a variable or stable interest rate. The protocol is designed for easy integration into your products and services. testnet.aave.com Stable 으로 대출 및 예치가 가능한것을 볼 수 있었..
github.com/Devilla/eth-arbitrage/blob/master/contracts/Arbitrage.sol Devilla/eth-arbitrage A DeFi Arbitrage Bot with DyDx Flashloans. Contribute to Devilla/eth-arbitrage development by creating an account on GitHub. github.com 위 소스코드를 분석하였다. 일단 주소값을 보면 kovan test network와 연결된 소스임을 확인 할 수 있었다. pool에는 DyDx주소를 두어서 인식을 시켜주고, 각각 등록된 화폐를 넣어준다. 여기서 tokenToMarketId는 등록된 토큰에 해당된다. 만약 새로운 종류의 토큰을 등록하고 싶다면..
money-legos.studydefi.com/#/dydx money-legos docs money-legos.studydefi.com solo Margin contract를 이용하여 flash loan사용 가능. 1. X 만큼의 토큰을 Withdraw로 빌린다. 2. Call a function (이미 진행됨) 3. X + 2wei 만큼을 Deoposit으로 갚는다 이 3개를 한번에 시킨다. docs.dydx.exchange/#introduction dYdX Documentation docs.dydx.exchange dydx 공식 문서 However, if you write smart contracts, then our protocol documentation would be useful to you:..