JoeLibrary

Git Source

Author: Trader Joe

Helper contract used for Joe V1 related calculations

Functions

sortTokens

function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1);

quote

function quote(uint256 amountA, uint256 reserveA, uint256 reserveB) internal pure returns (uint256 amountB);

getAmountOut

function getAmountOut(uint256 amountIn, uint256 reserveIn, uint256 reserveOut)
    internal
    pure
    returns (uint256 amountOut);

getAmountIn

function getAmountIn(uint256 amountOut, uint256 reserveIn, uint256 reserveOut)
    internal
    pure
    returns (uint256 amountIn);

Errors

JoeLibrary__AddressZero

error JoeLibrary__AddressZero();

JoeLibrary__IdenticalAddresses

error JoeLibrary__IdenticalAddresses();

JoeLibrary__InsufficientAmount

error JoeLibrary__InsufficientAmount();

JoeLibrary__InsufficientLiquidity

error JoeLibrary__InsufficientLiquidity();

Last updated