๐ŸฆPotion Vault

The Potion Vault contract is the heart of Poison Finance - allowing users to mint new pTokens.

This contract has been audited by Solidity Finance. You can view the audit here.

The PotionVault is the main Poison.Finance contract, it implements the logic for Vault, through which users can mint new pTokens against their supported collateral tokens. Current prices of minted pTokens are provided by Chainlink Price Oracles and determine the Cratio of each Vault. The PotionVault Contract also contains the logic for liquidating Vaults with Cratios below the minimum for their minted pTokens.

interface IPotionVault {
    
    function open(uint collateral, uint amount, uint id, uint synid) external;
    
    function close(uint id) external;
    
    function deposit(uint id, uint collateral) external;
    
    function withdraw(uint id, uint amount) external;
    
    function burn(uint id, uint amount) external;
    
    function mint(uint id, uint amount) external;
    
    function liquidate(uint id, address account, uint amount) external;
    
}

Last updated