ERC-20 TOKEN GATING
Turn ERC-20 balances into backend access decisions.
Define the minimum balance once, then verify wallets through the same authorization API across your application.
POLICY
Set a minimum raw token balance
AccessVerdict evaluates the integer returned by balanceOf. Use the token's smallest-unit value when defining the threshold.
USE CASES
Gate product features, memberships and APIs
Use one policy anywhere your backend needs the same holder rule instead of duplicating RPC calls and error handling.
DECISION
Get a product-ready result
A conclusive balance miss returns denied; provider or verification failure returns error so you can fail closed correctly.