Documentation

    Type Alias EnokiFlowConfig

    EnokiFlowConfig: EnokiClientConfig & (
        | {
            encryption?: Encryption;
            experimental_nativeCryptoSigner?: unknown;
            store?: SyncStore;
        }
        | {
            encryption?: never;
            experimental_nativeCryptoSigner: true;
            store?: never;
        }
    )

    Type declaration

    • {
          encryption?: Encryption;
          experimental_nativeCryptoSigner?: unknown;
          store?: SyncStore;
      }
      • Optionalencryption?: Encryption

        The encryption interface that will be used to encrypt data before storing it locally. If not provided, it will use a default encryption interface.

      • Optionalexperimental_nativeCryptoSigner?: unknown
      • Optionalstore?: SyncStore

        The storage interface to persist Enoki data locally. If not provided, it will use a sessionStorage-backed store.

    • { encryption?: never; experimental_nativeCryptoSigner: true; store?: never }
      • Optionalencryption?: never
      • experimental_nativeCryptoSigner: true

        Enables the new native crypto signer for the EnokiFlow, which is more secure.

      • Optionalstore?: never

    Use RegisterEnokiWalletsOptions instead

    MMNEPVFCICPMFPCPTTAAATR