WildcatSanctionsEscrow.sol
A WildcatSanctionsEscrow contract holds assets for a particular account until it is removed from the Chainalysis sanctions list or until the borrower overrides the account's sanction status.
sentinel
 address public immutable override sentinel;borrower
 address public immutable override borrower;account
 address public immutable override account;balance
 function balance()
   public view override returns (uint256);canReleaseEscrow
 function canReleaseEscrow()
   public view override returns (bool);escrowedAsset
 function escrowedAsset()
   public view override returns (address, uint256);releaseEscrow
 function releaseEscrow()
   public override;Last updated