@miden-sdk/react 0.14.4 → 0.14.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -259,7 +259,7 @@ interface CreateWalletOptions {
259
259
  storageMode?: StorageMode;
260
260
  /** Whether code can be updated. Default: true */
261
261
  mutable?: boolean;
262
- /** Auth scheme. Default: AuthScheme.AuthRpoFalcon512 */
262
+ /** Auth scheme. Default: `AuthScheme.Falcon` */
263
263
  authScheme?: AuthScheme;
264
264
  /** Initial seed for deterministic account ID */
265
265
  initSeed?: Uint8Array;
@@ -273,7 +273,7 @@ interface CreateFaucetOptions {
273
273
  maxSupply: bigint | number;
274
274
  /** Storage mode. Default: private */
275
275
  storageMode?: StorageMode;
276
- /** Auth scheme. Default: AuthScheme.AuthRpoFalcon512 */
276
+ /** Auth scheme. Default: `AuthScheme.Falcon` */
277
277
  authScheme?: AuthScheme;
278
278
  }
279
279
  type ImportAccountOptions = {
@@ -505,7 +505,7 @@ declare const DEFAULTS: {
505
505
  readonly AUTO_SYNC_INTERVAL: 15000;
506
506
  readonly STORAGE_MODE: "private";
507
507
  readonly WALLET_MUTABLE: true;
508
- readonly AUTH_SCHEME: AuthScheme.AuthRpoFalcon512;
508
+ readonly AUTH_SCHEME: "falcon";
509
509
  readonly NOTE_TYPE: "private";
510
510
  readonly FAUCET_DECIMALS: 8;
511
511
  };