Coder Social home page Coder Social logo

rareskills-week3's Introduction

  • Re-implement Uniswap V2 with the following requirements
  • use solidity 0.8.0 or higher. You need to be conscious of when the original implementation originally intended to overflow in the oracle
  • Use the Solady ERC20 library to accomplish the LP token, also use the Solady library to accomplish the square root
  • The uniswap re-entrancy lock is not gas efficient anymore because of changes in the EVM
  • Your code should have built-in safety checks for swap, mint, and burn. You should not assume people will use a router but instead directly interface with your contract
  • The swap function should not support flash swaps, you should build a separate flashloan function that is compliant with ERC-3156
  • Don’t use safemath with 0.8.0 or higher
  • You should only implement the factory and the pair (which inherits from ERC20), don’t implement other contracts
  • Write a markdown file explaining how to use the TWAP oracle with Uniswap V2. You need to answer the following questions:
    • Why does the price0CumulativeLast and price1CumulativeLast never decrement?
    • How do you write a contract that uses the oracle?
    • Why are price0CumulativeLast and price1CumulativeLast stored separately? Why not just calculate ``price1CumulativeLast = 1/price0CumulativeLast`?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.