For the complete documentation index, see llms.txt. This page is also available as Markdown.

active

Retrieve all active entitlements for a user on the current device.

NamiEntitlementManager.active() -> [NamiEntitlement]
NamiEntitlementManager.active(): List<NamiEntitlement>
NamiEntitlementManager.active();
import {NamiEntitlementManager, NamiEntitlement} from 'react-native-nami-sdk';

const allEntitlements = await NamiEntitlementManager.active();
// returns all active entitlements for a user on the current device

var activeEntitlements = NamiEntitlementManager.Active();

Returns

Array of NamiEntitlement objects for all entitlements the current device has access to.

Last updated