Smart contract architecture
Architecture

Descriptions
MagicRouter.solis 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 layerMagicPP.solto execute the sell logic and send back users the desired amount of tokens.MagicPP.solis 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 Magic 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.Magicoracle.solis an oracle contract managed and developed by Magic Network team. It uploads the latest trading price, middle price and market spread information from Magic Network to the oracle contract.MagicGuardian.solis 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.MagicFeeManager.solcollects swap fees of transactions processed in Magic-Fi's oPMM liquidity pool and distribute to various poolsMagicRebateManager.solcollects and distributes rebates to broker addresses (if any)MagicVaultManager.solcollects the fee allocated to vaults and executes MARBLE buy back before distributing to vaultsMagicStakingVault.solis the smart contract to allow users to stake MARBLE token and receive xMARBLE token. It also manages the unstaking period and penaltyMagicAccessManager.solmanages the access of Magic-Fi smart contractsSuperChargerVault.solis the Magic-Fi Earn Supercharger smart contract that users deposit assets intoLendingManager.solis the smart contract that the Magic-Fi LP interacts with to borrow, repay loans and set borrowing interestsWithdrawManager.solstores the funds that users request for withdrawal after the settlement processYieldFarmingVault.solis the vault that stores assets deployed for external yield farmingYieldFarmingStrategy.solmanages the external yield farming auto-compounding strategy
Last updated
