Dinero Vault
function balanceOf(address account) external view returns (uint256);
Summary
It returns the number of underlying tokens the user has deposited.
function maxDineroAmount() external view returns (uint256);
Summary
It returns the maximum amount of Dinero this contract can mint.
function mintedDineroAmount() external view returns (uint256);
Summary
It current amount of Dinero minted by this contract.
function deposit(uint256 amount) external;
Summary
It allows a user to deposit an underlying token and receive an equivalent amount in Dinero.
function withdraw(uint256 amount) external;
Summary
It allows a user to withdraw his deposited underlying tokens in exchange for Dinero.
Last modified 4mo ago