Add the gate
gateCheck before you grant access. Set a recency window on the gate so a holder who sold does not keep access through an old proof.
Sell access with one gate walks through publishing and server checks.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Require NFT ownership or a minimum token balance before content, rewards, or access unlock, then reuse the holder’s proof at every gate.
| Require | Check |
|---|---|
| An NFT from a collection | nft-ownership |
| A minimum token balance | token-holding |
import { VerifyGate } from '@proofable/sdk/widgets';
export function HolderContent() {
return (
<VerifyGate gateId="gate_your-holder-gate">
<ProtectedContent />
</VerifyGate>
);
}
gateCheck before you grant access. Set a recency window on the gate so a holder who sold does not keep access through an old proof.
Sell access with one gate walks through publishing and server checks.