├── ActivityPool.sol ├── BSCContracts ├── BDepMining.sol ├── BDepToken.sol ├── Channels-3Pool │ ├── SellLendPlatformToken.sol │ └── threePools.vy ├── FundingManager.sol └── vault │ ├── dCowVault.sol │ ├── dDepAlphaVault.sol │ ├── dDepBxhVault.sol │ └── dDepVenusVault.sol ├── DepositCompound.vy ├── Depth.DAO ├── DAOPool.sol ├── README.md ├── Voting.sol ├── handleLHB-HUSD-USDT.sol └── xDep.sol ├── Depth.DEX ├── DepthFee.sol ├── DepthswapERC20.sol ├── DepthswapFactory.sol ├── DepthswapPair.sol ├── DepthswapRouter.sol ├── Multicall.sol ├── interfaces │ ├── IDepthswapCallee.sol │ ├── IDepthswapERC20.sol │ ├── IDepthswapFactory.sol │ ├── IDepthswapPair.sol │ ├── IDepthswapRouter.sol │ └── IERC20.sol └── library │ ├── DepthswapLibrary.sol │ ├── SafeMath.sol │ ├── TransferHelper.sol │ └── UQ112x112.sol ├── DepthTokenV1.vy ├── HandleCan.sol ├── README.md ├── SingleTokenPool └── SingleTokenPool.sol ├── StableSwapCompoud.vy ├── TokenContracts ├── Breeder.sol ├── DepthToken.sol └── TimeLock.sol ├── channelsPool ├── LPToken.vy ├── channels.vy └── depositChannels.vy ├── depth.otc ├── DepthOtcV2.sol ├── OtcStorageV2.sol ├── OtcV1.sol ├── Storage.sol └── interfaces │ ├── IDepth.sol │ ├── IOtcV1.sol │ └── IOtcV2.sol ├── depth.vault ├── dBackVault.sol ├── dBoosterVault.sol ├── dCompVault.sol ├── dCowVault.sol ├── dPilotVault.sol ├── dVaultRouter.sol └── interface │ └── IVault.sol ├── depthStableSwapV2 ├── SellLendPlatformToken(Filda).sol ├── SellLendPlatformToken(Lendhub).sol └── mainContract.vy ├── fildaPool ├── CurveTokenV1.vy ├── DepositCompound.vy ├── StableSwapCompoundWithCollect.vy └── handleFilda.sol ├── husdSwap.sol ├── lendhub-eth-beth ├── CurveTokenV1.vy ├── DepositCompound.vy ├── StableSwapCompoundWithCollect.vy └── handLHB.sol └── lendhubPool ├── CurveTokenV1.vy ├── DepositCompound.vy ├── StableSwapCompoundWithCollect.vy └── handLHB.sol /ActivityPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/ActivityPool.sol -------------------------------------------------------------------------------- /BSCContracts/BDepMining.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/BSCContracts/BDepMining.sol -------------------------------------------------------------------------------- /BSCContracts/BDepToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/BSCContracts/BDepToken.sol -------------------------------------------------------------------------------- /BSCContracts/Channels-3Pool/SellLendPlatformToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/BSCContracts/Channels-3Pool/SellLendPlatformToken.sol -------------------------------------------------------------------------------- /BSCContracts/Channels-3Pool/threePools.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/BSCContracts/Channels-3Pool/threePools.vy -------------------------------------------------------------------------------- /BSCContracts/FundingManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/BSCContracts/FundingManager.sol -------------------------------------------------------------------------------- /BSCContracts/vault/dCowVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/BSCContracts/vault/dCowVault.sol -------------------------------------------------------------------------------- /BSCContracts/vault/dDepAlphaVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/BSCContracts/vault/dDepAlphaVault.sol -------------------------------------------------------------------------------- /BSCContracts/vault/dDepBxhVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/BSCContracts/vault/dDepBxhVault.sol -------------------------------------------------------------------------------- /BSCContracts/vault/dDepVenusVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/BSCContracts/vault/dDepVenusVault.sol -------------------------------------------------------------------------------- /DepositCompound.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/DepositCompound.vy -------------------------------------------------------------------------------- /Depth.DAO/DAOPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DAO/DAOPool.sol -------------------------------------------------------------------------------- /Depth.DAO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DAO/README.md -------------------------------------------------------------------------------- /Depth.DAO/Voting.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DAO/Voting.sol -------------------------------------------------------------------------------- /Depth.DAO/handleLHB-HUSD-USDT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DAO/handleLHB-HUSD-USDT.sol -------------------------------------------------------------------------------- /Depth.DAO/xDep.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DAO/xDep.sol -------------------------------------------------------------------------------- /Depth.DEX/DepthFee.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/DepthFee.sol -------------------------------------------------------------------------------- /Depth.DEX/DepthswapERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/DepthswapERC20.sol -------------------------------------------------------------------------------- /Depth.DEX/DepthswapFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/DepthswapFactory.sol -------------------------------------------------------------------------------- /Depth.DEX/DepthswapPair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/DepthswapPair.sol -------------------------------------------------------------------------------- /Depth.DEX/DepthswapRouter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/DepthswapRouter.sol -------------------------------------------------------------------------------- /Depth.DEX/Multicall.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/Multicall.sol -------------------------------------------------------------------------------- /Depth.DEX/interfaces/IDepthswapCallee.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/interfaces/IDepthswapCallee.sol -------------------------------------------------------------------------------- /Depth.DEX/interfaces/IDepthswapERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/interfaces/IDepthswapERC20.sol -------------------------------------------------------------------------------- /Depth.DEX/interfaces/IDepthswapFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/interfaces/IDepthswapFactory.sol -------------------------------------------------------------------------------- /Depth.DEX/interfaces/IDepthswapPair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/interfaces/IDepthswapPair.sol -------------------------------------------------------------------------------- /Depth.DEX/interfaces/IDepthswapRouter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/interfaces/IDepthswapRouter.sol -------------------------------------------------------------------------------- /Depth.DEX/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/interfaces/IERC20.sol -------------------------------------------------------------------------------- /Depth.DEX/library/DepthswapLibrary.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/library/DepthswapLibrary.sol -------------------------------------------------------------------------------- /Depth.DEX/library/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/library/SafeMath.sol -------------------------------------------------------------------------------- /Depth.DEX/library/TransferHelper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/library/TransferHelper.sol -------------------------------------------------------------------------------- /Depth.DEX/library/UQ112x112.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/Depth.DEX/library/UQ112x112.sol -------------------------------------------------------------------------------- /DepthTokenV1.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/DepthTokenV1.vy -------------------------------------------------------------------------------- /HandleCan.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/HandleCan.sol -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/README.md -------------------------------------------------------------------------------- /SingleTokenPool/SingleTokenPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/SingleTokenPool/SingleTokenPool.sol -------------------------------------------------------------------------------- /StableSwapCompoud.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/StableSwapCompoud.vy -------------------------------------------------------------------------------- /TokenContracts/Breeder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/TokenContracts/Breeder.sol -------------------------------------------------------------------------------- /TokenContracts/DepthToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/TokenContracts/DepthToken.sol -------------------------------------------------------------------------------- /TokenContracts/TimeLock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/TokenContracts/TimeLock.sol -------------------------------------------------------------------------------- /channelsPool/LPToken.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/channelsPool/LPToken.vy -------------------------------------------------------------------------------- /channelsPool/channels.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/channelsPool/channels.vy -------------------------------------------------------------------------------- /channelsPool/depositChannels.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/channelsPool/depositChannels.vy -------------------------------------------------------------------------------- /depth.otc/DepthOtcV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.otc/DepthOtcV2.sol -------------------------------------------------------------------------------- /depth.otc/OtcStorageV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.otc/OtcStorageV2.sol -------------------------------------------------------------------------------- /depth.otc/OtcV1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.otc/OtcV1.sol -------------------------------------------------------------------------------- /depth.otc/Storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.otc/Storage.sol -------------------------------------------------------------------------------- /depth.otc/interfaces/IDepth.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.otc/interfaces/IDepth.sol -------------------------------------------------------------------------------- /depth.otc/interfaces/IOtcV1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.otc/interfaces/IOtcV1.sol -------------------------------------------------------------------------------- /depth.otc/interfaces/IOtcV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.otc/interfaces/IOtcV2.sol -------------------------------------------------------------------------------- /depth.vault/dBackVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.vault/dBackVault.sol -------------------------------------------------------------------------------- /depth.vault/dBoosterVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.vault/dBoosterVault.sol -------------------------------------------------------------------------------- /depth.vault/dCompVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.vault/dCompVault.sol -------------------------------------------------------------------------------- /depth.vault/dCowVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.vault/dCowVault.sol -------------------------------------------------------------------------------- /depth.vault/dPilotVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.vault/dPilotVault.sol -------------------------------------------------------------------------------- /depth.vault/dVaultRouter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.vault/dVaultRouter.sol -------------------------------------------------------------------------------- /depth.vault/interface/IVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depth.vault/interface/IVault.sol -------------------------------------------------------------------------------- /depthStableSwapV2/SellLendPlatformToken(Filda).sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depthStableSwapV2/SellLendPlatformToken(Filda).sol -------------------------------------------------------------------------------- /depthStableSwapV2/SellLendPlatformToken(Lendhub).sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depthStableSwapV2/SellLendPlatformToken(Lendhub).sol -------------------------------------------------------------------------------- /depthStableSwapV2/mainContract.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/depthStableSwapV2/mainContract.vy -------------------------------------------------------------------------------- /fildaPool/CurveTokenV1.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/fildaPool/CurveTokenV1.vy -------------------------------------------------------------------------------- /fildaPool/DepositCompound.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/fildaPool/DepositCompound.vy -------------------------------------------------------------------------------- /fildaPool/StableSwapCompoundWithCollect.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/fildaPool/StableSwapCompoundWithCollect.vy -------------------------------------------------------------------------------- /fildaPool/handleFilda.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/fildaPool/handleFilda.sol -------------------------------------------------------------------------------- /husdSwap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/husdSwap.sol -------------------------------------------------------------------------------- /lendhub-eth-beth/CurveTokenV1.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/lendhub-eth-beth/CurveTokenV1.vy -------------------------------------------------------------------------------- /lendhub-eth-beth/DepositCompound.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/lendhub-eth-beth/DepositCompound.vy -------------------------------------------------------------------------------- /lendhub-eth-beth/StableSwapCompoundWithCollect.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/lendhub-eth-beth/StableSwapCompoundWithCollect.vy -------------------------------------------------------------------------------- /lendhub-eth-beth/handLHB.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/lendhub-eth-beth/handLHB.sol -------------------------------------------------------------------------------- /lendhubPool/CurveTokenV1.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/lendhubPool/CurveTokenV1.vy -------------------------------------------------------------------------------- /lendhubPool/DepositCompound.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/lendhubPool/DepositCompound.vy -------------------------------------------------------------------------------- /lendhubPool/StableSwapCompoundWithCollect.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/lendhubPool/StableSwapCompoundWithCollect.vy -------------------------------------------------------------------------------- /lendhubPool/handLHB.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depthfinance/contract/HEAD/lendhubPool/handLHB.sol --------------------------------------------------------------------------------