Leo Wallet Docs
Home
  • Wallet Adapter for Aleo Apps
  • packages
    • ui
      • docs
        • modules
        • interfaces
          • WalletIconProps
          • WalletModalContextState
          • WalletModalProps
          • WalletModalProviderProps
    • core
      • base
        • docs
          • modules
          • classes
            • BaseMessageSignerWalletAdapter
            • BaseSignerWalletAdapter
            • BaseWalletAdapter
            • Deployment
            • EventEmitter-1
            • Transaction
            • Transition
            • WalletAccountError
            • WalletConfigError
            • WalletConnectionError
            • WalletDecryptionError
            • WalletDecryptionNotAllowedError
            • WalletDisconnectedError
            • WalletDisconnectionError
            • WalletError
            • WalletKeypairError
            • WalletLoadError
            • WalletNotConnectedError
            • WalletNotReadyError
            • WalletNotSelectedError
            • WalletPublicKeyError
            • WalletRecordsError
            • WalletSendTransactionError
            • WalletSignMessageError
            • WalletSignTransactionError
            • WalletTimeoutError
            • WalletTransactionError
            • WalletWindowBlockedError
            • WalletWindowClosedError
          • enums
            • DecryptPermission
            • WalletAdapterNetwork
            • WalletReadyState
          • interfaces
            • AleoDeployment
            • AleoTransaction
            • AleoTransition
            • EventEmitter.EventEmitterStatic
            • EventEmitter.ListenerFn
            • MessageSignerWalletAdapterProps
            • SignerWalletAdapterProps
            • WalletAdapterEvents
            • WalletAdapterProps
          • modules
            • EventEmitter
      • react
        • docs
          • modules
          • interfaces
            • Wallet
            • WalletContextState
            • WalletProviderProps
    • wallets
      • leo
        • docs
          • modules
          • classes
            • LeoWalletAdapter
          • interfaces
            • LeoWallet
            • LeoWalletAdapterConfig
            • LeoWalletEvents
            • LeoWindow
Powered by GitBook
On this page
  • Enumeration: WalletReadyState
  • Table of contents
  • Enumeration Members

Was this helpful?

  1. packages
  2. core
  3. base
  4. docs
  5. enums

WalletReadyState

PreviousWalletAdapterNetworkNextinterfaces

Last updated 11 months ago

Was this helpful?

/ / WalletReadyState

Enumeration: WalletReadyState

A wallet's readiness describes a series of states that the wallet can be in, depending on what kind of wallet it is. An installable wallet (eg. a browser extension like Phantom) might be Installed if we've found the Phantom API in the global scope, or NotDetected otherwise. A loadable, zero-install runtime (eg. Torus Wallet) might simply signal that it's Loadable. Use this metadata to personalize the wallet list for each user (eg. to show their installed wallets first).

Table of contents

Enumeration Members

Enumeration Members

Installed

• Installed = "Installed"

User-installable wallets can typically be detected by scanning for an API that they've injected into the global context. If such an API is present, we consider the wallet to have been installed.

Defined in


Loadable

• Loadable = "Loadable"

Loadable wallets are always available to you. Since you can load them at any time, it's meaningless to say that they have been detected.

Defined in


NotDetected

• NotDetected = "NotDetected"

Defined in


Unsupported

• Unsupported = "Unsupported"

If a wallet is not supported on a given platform (eg. server-rendering, or mobile) then it will stay in the Unsupported state.

Defined in

adapter.ts:49
adapter.ts:55
adapter.ts:50
adapter.ts:60
@demox-labs/aleo-wallet-adapter-base
Exports
Installed
Loadable
NotDetected
Unsupported