github.com/cwntr/go-defi@v0.0.0-20210629134751-07f9ec2f7e66/contracts/interface/IRegistry.sol (about)

     1  pragma solidity ^0.5.0;
     2  
     3  interface IRegistry {
     4      function isValid(address handler) external view returns (bool result);
     5  
     6      function getInfo(address handler) external view returns (bytes32 info);
     7  }