👋
Overview Lender V2
  • Overview
  • The Basics
    • Glossary of Key Words
    • Basic lending pool operations
    • Connect and Deposit
    • Reward Manager
    • Verification Manager
    • Strategy Manager
    • Governance: Yet to be built
    • Conclusion
  • LenderPool
    • ILenderPool
  • RedeemPool
    • IRedeemPool
  • Reward
    • IReward
  • RewardManager
    • IRewardManager
  • Token
    • IToken
  • Verification
    • IVerification
Powered by GitBook
On this page
  1. Verification

IVerification

PreviousVerification

Last updated 2 years ago

Also available on .

pragma solidity ^0.8.14;

interface IVerification {
  
    event ValidationLimitUpdated(uint kycLimit);

    function setValidation(address user, bool status) external;

    function updateValidationLimit(uint validationLimit) external;
    
    function isValid(address user) external view returns (bool);

    function isValidationRequired(uint amount) external view returns (bool);
}
Github