Smart contract architecture
Architecture
Descriptions
WooRouter.sol
is the router contract. Users will only need to approve this contract to spend their ERC20 tokens. Similar to Uniswap, approval is required to interact with any trading pair on this contract. Router contract will interact with the lower layerWooPP.sol
to execute the sell logic and send back users the desired amount of tokens.WooPP.sol
is the basic contract that handles the logic operation of the DEX, including setting the token info, calculating slippage, calculating the exchange amount and so on. This contract stores all tokens that are supported by trading on the WOOFi Swap. In this contract, it defines quote token and base token. Quote token is the reference token in the contract and there is only one quote token. The contract can have multiple base tokens and they can be added by the strategist.Wooracle.sol
is an oracle contract managed and developed by WOO Network team. It uploads the latest trading price, middle price and market spread information from WOO Network to the oracle contract.WooGuardian.sol
is the smart contract that is used to perform final checkup on the trade execution. The smart contract does not process funds. It provides the tolerance threshold of prices by comparing multiple oracles. For the swap amounts and quoted prices, the functions (i.e.,checkSwapAmount()
andcheckSwapPrice()
) in this smart contract are used to check if the swapping amounts and prices are within the thresholds or not.WooFeeManager.sol
collects swap fees of transactions processed in WOOFi's sPMM liquidity pool and distribute to various poolsWooRebateManager.sol
collects and distributes rebates to broker addresses (if any)WooVaultManager.sol
collects the fee allocated to vaults and executes WOO buy back before distributing to vaultsWooStakingVault.sol
is the smart contract to allow users to stake WOO token and receive xWOO token. It also manages the unstaking period and penaltyWooAccessManager.sol
manages the access of WOOFi smart contractsSuperChargerVault.sol
is the WOOFi Earn Supercharger smart contract that users deposit assets intoLendingManager.sol
is the smart contract that the WOOFi LP interacts with to borrow, repay loans and set borrowing interestsWithdrawManager.sol
stores the funds that users request for withdrawal after the settlement processYieldFarmingVault.sol
is the vault that stores assets deployed for external yield farmingYieldFarmingStrategy.sol
manages the external yield farming auto-compounding strategy
Last updated