This repository contains the Liquidity Book contracts, as well as tests and deploy scripts.
-
The LBPair is the contract that contains all the logic of the actual pair for swaps, adds, removals of liquidity and fee claiming. This contract should never be deployed directly, and the factory should always be used for that matter.
-
The LBToken is the contract that is used to calculate the shares of a user. The LBToken is a new token standard that is similar to ERC-1155, but without any callbacks (for safety reasons) and any functions or variables relating to ERC-721.
-
The LBFactory is the contract used to deploy the different pairs and acts as a registry for all the pairs already created. There are also privileged functions such as setting the parameters of the fees, the flashloan fee, setting the pair implementation, set if a pair should be ignored by the quoter and add new presets. Unless the
creationUnlockedistrue, only the owner of the factory can create pairs. -
The LBRouter is the main contract that user will interact with as it adds security checks. Most users shouldn't interact directly with the pair.
-
The LBQuoter is a contract that is used to return the best route of all those given. This should be used before a swap to get the best return on a swap.
For more information, go to the documentation and the whitepaper.
Foundry documentation can be found here.
Open your terminal and type in the following command:
curl -L https://foundry.paradigm.xyz | bash
This will download foundryup. Then install Foundry by running:
foundryup
To update foundry after installation, simply run foundryup again, and it will update to the latest Foundry release.
You can also revert to a specific version of Foundry with foundryup -v $VERSION.
If you use Windows, you need to build from source to get Foundry.
Download and run rustup-init from rustup.rs. It will start the installation in a console.
After this, run the following to build Foundry from source:
cargo install --git https://github.com/foundry-rs/foundry foundry-cli anvil --bins --locked
To update from source, run the same command again.
To install dependencies, run the following to install dependencies:
forge install
To run tests, run the following command:
forge test
This project has been successfully deployed to BSC Testnet with the following addresses:
- LBFactory V2.2:
0x7D73A6eFB91C89502331b2137c2803408838218b - LBRouter V2.2:
0xe98efCE22A8Ec0dd5dDF6C1A81B6ADD740176E98 - LBQuoter:
0x424EcD545DB744371650B39e353339E9BB8fB64A - LBPair Implementation:
0xb7C6C0711C98370bA01C79c8d7BfBa9afb6d7848
- WBNB/USDT Pool:
0xa871c952B96ad832ef4B12F1b96B5244a4106090- Bin Step: 25 (0.25%)
- Active ID: 8388608 (1:1 ratio)
The following scripts are available for testing:
# Create a liquidity pool
forge script script/create-pool.s.sol --rpc-url bsc_testnet --broadcast
# Add liquidity to existing pool
forge script script/add-liquidity.s.sol --rpc-url bsc_testnet --broadcast
# Perform token swaps
forge script script/swap.s.sol --rpc-url bsc_testnet --broadcast
# Wrap BNB to WBNB
forge script script/wrap-bnb.s.sol --rpc-url bsc_testnet --broadcastCreate a .env file with:
PRIVATE_KEY=0xYourPrivateKeyHere
BSCSCAN_API_KEY=YourBSCScanApiKeyHere
BSC Testnet details:
- Chain ID: 97
- RPC URL: https://data-seed-prebsc-1-s1.bnbchain.org:8545
- Explorer: https://testnet.bscscan.com
- Faucet: https://testnet.bnbchain.org/faucet-smart
Latest test run: 261 tests passed, 65 tests failed
Most failures are in edge cases and fuzzing tests related to:
- Oracle helper boundary conditions
- Math library overflow/underflow edge cases
- SafeCast boundary validations
- Parameter validation edge cases
Core functionality tests are passing successfully.