👋
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
  • setValidation
  • updateValidationLimit
  • isValid - isValidationRequired

Verification

setValidation

function setValidation(address user, bool status) external;

updateValidationLimit

function updateValidationLimit(uint validationLimit) external;

isValid - isValidationRequired

function isValid(address user) external view returns (bool);
function isValidationRequired(uint amount) external view returns (bool);

Returns whether a user's KYC is verified or not

Parameter Name
Type
Description

user

address

address of the user to check

PreviousITokenNextIVerification

Last updated 2 years ago