<GatedComponent />

Usage

To use <GatedComponent/>, wrap any content you wish to gate with this component, and provide the required props, including an array of policyIds and a walletAddress. If the policy rules associated with the provided policyIds are satisfied for the given walletAddress, the children components will be rendered. Otherwise, the content will not be displayed.

<GatedComponent policyIds={['policy1', 'policy2']} walletAddress="0x123...">
  {/* Content to be gated */}
  <div>
    This content is only visible if the policy rules are satisfied.
  </div>
</GatedComponent>

 

Props

NameTypeDescription
policyIdsArray<string>An array of policy IDs. These are identifiers for the policies that will be evaluated to determine if the child components should be rendered. It is essential to have these policies created and configured beforehand.
walletAddressstringThe wallet address to be evaluated against the specified policies. The content within the <GatedComponent/> will only be rendered if the wallet address satisfies the conditions defined by the policies identified in policyIds.
childrenReact.ReactNodeThe content or components that are to be conditionally rendered based on the policy evaluation outcome. If the policy conditions are met for the provided walletAddress, these children components will be displayed.