ERC-721 TOKEN GATING
NFT ownership checks that belong on the server.
Use an ERC-721 policy to turn NFT ownership into deterministic backend permissions without exposing project credentials in the browser.
OWNERSHIP
Require NFT ownership
Create an ERC-721 rule for the collection contract and the minimum ownership count required by your application.
BACKEND
Protect the actual resource, not just the UI
A hidden button is not authorization. Evaluate the wallet from the API route or backend that controls the protected resource.
FAIL CLOSED
Do not confuse outages with non-ownership
AccessVerdict separates denied from verification error so an RPC problem does not become an incorrect authorization decision.