NAC_Blockchain/charter-std/sovereignty/compliance.ch

15 lines
359 B
Plaintext

pub fn verify_kyc(account: Address) -> bool {
require(!account.is_zero(), "Invalid account");
return true;
}
pub fn verify_aml(account: Address) -> bool {
require(!account.is_zero(), "Invalid account");
return true;
}
pub fn check_sanctions(account: Address) -> bool {
require(!account.is_zero(), "Invalid account");
return false;
}