EasyLendStructs.sol 330 B

12345678910111213
  1. // SPDX-License-Identifier: Apache 2
  2. pragma solidity ^0.8.13;
  3. struct Vault {
  4. address tokenCollateral;
  5. address tokenDebt;
  6. uint256 amountCollateral;
  7. uint256 amountDebt;
  8. uint256 minHealthRatio; // 10**18 is 100%
  9. uint256 minPermissionlessHealthRatio;
  10. bytes32 tokenIdCollateral;
  11. bytes32 tokenIdDebt;
  12. }