ISanctionsList.sol
pragma solidity 0.8.18;
///@notice The interface for the Chainalysis OFAC oracle
interface SanctionsList {
function isSanctioned(address addr) external view returns (bool);
}
Updated about 3 years ago
Did this page help you?