LFJ Developer Docs
  • Liquidity Book
  • Introduction
  • LB V2.2 Key Changes
  • Guides
    • Swap Tokens
    • Add/Remove Liquidity
    • Tracking Volume
    • Tracking Pool Balances
    • Finding The Best Quote
    • Byte32 Decoding
    • Price From Bin Id
    • Bin Id From Price
    • Finding Liquidity Depth
    • User Balances
  • Concepts
    • Concentrated Liquidity
    • Bin Math
    • Bin Liquidity
    • Swaps
    • Fees
    • Oracle
  • Contracts
    • Interfaces
      • ILBLegacyFactory
      • ILBLegacyToken
      • ILBLegacyPair
      • ILBLegacyRouter
      • ILBFlashLoanCallback
      • IPendingOwnable
      • IJoeFactory
      • IJoePair
      • IJoeRouter01
      • IJoeRouter02
      • IWNATIVE
      • ILBFactory
      • ILBHooks
      • ILBPair
      • ILBRouter
      • ILBToken
    • Libraries
      • Math
        • BitMath
        • Encoded
        • LiquidityConfigurations
        • PackedUint128Math
        • SafeCast
        • SampleMath
        • TreeMath
        • Uint128x128Math
        • Uint256x256Math
      • BinHelper
      • Clone
      • Constants
      • FeeHelper
      • Hooks
      • ImmutableClone
      • JoeLibrary
      • OracleHelper
      • PairParameterHelper
      • PriceHelper
      • ReentrancyGuardUpgradeable
      • TokenHelper
    • LBBaseHooks
    • LBFactory
    • LBPair
    • LBQuoter
    • LBRouter
    • LBToken
  • Deployment Addresses
    • Avalanche C-Chain
    • Fuji Testnet
    • Arbitrum One
    • Binance Smart Chain
    • Binance Smart Chain Testnet
    • Ethereum Mainnet
    • Monad Testnet
  • SDK
    • Introduction
    • Making a Trade
    • Adding Liquidity
    • Removing Liquidity
  • Audits
  • AMM
    • Joe V1 Contracts
    • Joe V1 Audits
  • LFJ DEX API
    • Dex Analytics
    • Pools
    • Rewards
    • User
    • User Lifetime Stats
    • Vaults
    • Models
  • LFJ Aggregator API
    • Default
    • Models
Powered by GitBook
On this page
  • State Variables
  • SCALE_OFFSET
  • SCALE
  • PRECISION
  • SQUARED_PRECISION
  • MAX_FEE
  • MAX_PROTOCOL_SHARE
  • BASIS_POINT_MAX
  • MAX_LIQUIDITY_PER_BIN
  • CALLBACK_SUCCESS
  1. Contracts
  2. Libraries

Constants

PreviousCloneNextFeeHelper

Last updated 8 days ago

Author: Trader Joe

Set of constants for Liquidity Book contracts

State Variables

SCALE_OFFSET

uint8 internal constant SCALE_OFFSET = 128;

SCALE

uint256 internal constant SCALE = 1 << SCALE_OFFSET;

PRECISION

uint256 internal constant PRECISION = 1e18;

SQUARED_PRECISION

uint256 internal constant SQUARED_PRECISION = PRECISION * PRECISION;

MAX_FEE

uint256 internal constant MAX_FEE = 0.1e18;

MAX_PROTOCOL_SHARE

uint256 internal constant MAX_PROTOCOL_SHARE = 2_500;

BASIS_POINT_MAX

uint256 internal constant BASIS_POINT_MAX = 10_000;

MAX_LIQUIDITY_PER_BIN

uint256 internal constant MAX_LIQUIDITY_PER_BIN =
    65251743116719673010965625540244653191619923014385985379600384103134737;

CALLBACK_SUCCESS

The expected return after a successful flash loan

bytes32 internal constant CALLBACK_SUCCESS = keccak256("LBPair.onFlashLoan");
Git Source