UNPKG

@turnkey/react-wallet-kit

Version:

The easiest and most powerful way to integrate Turnkey's Embedded Wallets into your React applications.

33 lines (31 loc) 1.09 kB
'use strict'; /**@internal */ exports.ExportType = void 0; (function (ExportType) { ExportType["Wallet"] = "WALLET"; ExportType["PrivateKey"] = "PRIVATE_KEY"; ExportType["WalletAccount"] = "WALLET_ACCOUNT"; })(exports.ExportType || (exports.ExportType = {})); /** * Enum representing the authentication states of the user. * - Unauthenticated: The user is not authenticated. * - Authenticated: The user is authenticated. */ exports.AuthState = void 0; (function (AuthState) { AuthState["Unauthenticated"] = "unauthenticated"; AuthState["Authenticated"] = "authenticated"; })(exports.AuthState || (exports.AuthState = {})); /** * Enum representing the states of the client. * - Loading: The client is currently loading. * - Ready: The client is ready for use. * - Error: An error occurred while initializing the client. */ exports.ClientState = void 0; (function (ClientState) { ClientState["Loading"] = "loading"; ClientState["Ready"] = "ready"; ClientState["Error"] = "error"; })(exports.ClientState || (exports.ClientState = {})); //# sourceMappingURL=base.js.map