NFT gating
Require NFT ownership before content or rewards.
Use the NFT ownership check. Ownership is point-in-time. Set the contract, token policy, and recency in your published gate.
Last modified on August 20, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Require NFT ownership before content or rewards.
import { VerifyGate } from '@neus/sdk/widgets';
export function NFTGatedContent() {
return (
<VerifyGate gateId="gate_your-nft-gate">
<ProtectedContent />
</VerifyGate>
);
}
