Skip to main content
Blnk Watch is currently in beta. Send us a message
Each example below is a full watch script you can drop into your rules directory. These examples trigger on a single comparison or a simple list check. They are useful when you want a rule to react to one clear signal without needing historical context.

Block black listed accounts

This rule blocks a transaction when the source account appears in a blacklist supplied on the current transaction. It works well when your application already maintains a denylist and passes it into Watch as metadata.
BlockBlackListedAccounts.ws

Category BTC check

This rule sends cryptocurrency-tagged activity to review. It is a lightweight pattern for routing a known transaction category into a tighter manual workflow.
CategoryBTCCheck.ws

High risk destination country

This rule blocks transactions headed to countries that your system has already marked as high risk. It keeps the country list outside the DSL so you can update it without rewriting the rule.
HighRiskDestinationCountry.ws

High value transaction check

This rule reviews any transaction above a fixed value threshold. It is a good baseline control for catching unusually large transactions before you layer on more specific checks.
HighValueTransactionCheck.ws

Known fraud entity check

This rule blocks transactions sent to known bad counterparties that are provided on the current transaction. It is useful when your fraud system or case-management tooling already maintains a live list of risky entities.
KnownFraudEntityCheck.ws

Sanctioned country check

This rule blocks transactions going to countries that appear on a sanctions list supplied in metadata. It is a direct pattern for policy-driven controls where the list itself changes more often than the rule logic.
SanctionedCountryCheck.ws

Suspicious MCC check

This rule reviews transactions whose merchant category code falls inside a known high-risk list. It is useful for fast controls around gambling, quasi-cash, or other categories that deserve extra scrutiny.
SuspiciousMCCCheck.ws

See also Setting conditions and Defining verdicts.

Need help?

We are very happy to help you make the most of Blnk, regardless of whether it is your first time or you are switching from another tool. To ask questions or discuss issues, please contact us or join our Discord community.