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);
}