@bsv/wallet-toolbox-client 2.9.0 → 2.10.0

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.
@@ -3279,7 +3279,7 @@ declare class EntitySyncState extends EntityBase<TableSyncState> {
3279
3279
  mergeExisting(storage: EntityStorage, since: Date | undefined, ei: TableSyncState, syncMap: SyncMap, trx?: TrxToken): Promise<boolean>;
3280
3280
  makeRequestSyncChunkArgs(forIdentityKey: string, forStorageIdentityKey: string, maxRoughSize?: number, maxItems?: number): RequestSyncChunkArgs;
3281
3281
  static syncChunkSummary(c: SyncChunk): string;
3282
- processSyncChunk(writer: EntityStorage, args: RequestSyncChunkArgs, chunk: SyncChunk): Promise<{
3282
+ processSyncChunk(writer: EntityStorage, args: RequestSyncChunkArgs, chunk: SyncChunk, trx?: TrxToken): Promise<{
3283
3283
  done: boolean;
3284
3284
  maxUpdated_at: Date | undefined;
3285
3285
  updates: number;
@@ -9593,7 +9593,7 @@ interface UMPTokenInteractor {
9593
9593
  * @returns The UMP token if found; otherwise, undefined.
9594
9594
  * @throws Implementations should throw when no verified token or clean empty response is available.
9595
9595
  */
9596
- findByPresentationKeyHash: (hash: number[]) => Promise<UMPToken | undefined>;
9596
+ findByPresentationKeyHash: (hash: number[], options?: UMPTokenLookupOptions) => Promise<UMPToken | undefined>;
9597
9597
  /**
9598
9598
  * Locates the latest valid copy of a UMP token (including its outpoint)
9599
9599
  * based on the recovery key hash.
@@ -9602,7 +9602,7 @@ interface UMPTokenInteractor {
9602
9602
  * @returns The UMP token if found; otherwise, undefined.
9603
9603
  * @throws Implementations should throw when no verified token or clean empty response is available.
9604
9604
  */
9605
- findByRecoveryKeyHash: (hash: number[]) => Promise<UMPToken | undefined>;
9605
+ findByRecoveryKeyHash: (hash: number[], options?: UMPTokenLookupOptions) => Promise<UMPToken | undefined>;
9606
9606
  /**
9607
9607
  * Creates (and optionally consumes the previous version of) a UMP token on-chain.
9608
9608
  *
@@ -9615,6 +9615,14 @@ interface UMPTokenInteractor {
9615
9615
  buildAndSend: (wallet: WalletInterface // This wallet MUST be the one built for the default profile
9616
9616
  , adminOriginator: OriginatorDomainNameStringUnder250Bytes, token: UMPToken, oldTokenToConsume?: UMPToken) => Promise<OutpointString>;
9617
9617
  }
9618
+ interface UMPTokenLookupOptions {
9619
+ /**
9620
+ * WAB-administered fallback used only when normal lineage resolution leaves
9621
+ * more than one verified matching token. The outpoint must be one of the
9622
+ * verified lookup candidates or it has no effect.
9623
+ */
9624
+ pinnedOutpoint?: OutpointString;
9625
+ }
9618
9626
  interface UMPTokenLookupDiagnostics {
9619
9627
  hostCount: number;
9620
9628
  completedHosts: number;
@@ -9678,7 +9686,7 @@ declare class OverlayUMPTokenInteractor implements UMPTokenInteractor {
9678
9686
  * @param hash The 32-byte SHA-256 hash of the presentation key.
9679
9687
  * @returns A UMPToken object (including currentOutpoint) if found, otherwise undefined.
9680
9688
  */
9681
- findByPresentationKeyHash(hash: number[]): Promise<UMPToken | undefined>;
9689
+ findByPresentationKeyHash(hash: number[], options?: UMPTokenLookupOptions): Promise<UMPToken | undefined>;
9682
9690
  /**
9683
9691
  * Finds a UMP token on-chain by the given recovery key hash, if it exists.
9684
9692
  * Uses the ls_users overlay service to perform the lookup.
@@ -9686,7 +9694,7 @@ declare class OverlayUMPTokenInteractor implements UMPTokenInteractor {
9686
9694
  * @param hash The 32-byte SHA-256 hash of the recovery key.
9687
9695
  * @returns A UMPToken object (including currentOutpoint) if found, otherwise undefined.
9688
9696
  */
9689
- findByRecoveryKeyHash(hash: number[]): Promise<UMPToken | undefined>;
9697
+ findByRecoveryKeyHash(hash: number[], options?: UMPTokenLookupOptions): Promise<UMPToken | undefined>;
9690
9698
  private findToken;
9691
9699
  /**
9692
9700
  * Picks the newest rendition among distinct verified tokens, when possible.
@@ -9707,19 +9715,19 @@ declare class OverlayUMPTokenInteractor implements UMPTokenInteractor {
9707
9715
  * hash — on-chain proof that the candidate is an update of a same-identity
9708
9716
  * predecessor rather than an independently minted token.
9709
9717
  */
9710
- private consumesSameIdentityToken;
9718
+ private consumesIdentity;
9711
9719
  /**
9712
9720
  * Accumulates every outpoint spent by `tx` and by the ancestor transactions
9713
9721
  * embedded in its BEEF, so supersession is detected even when intermediate
9714
9722
  * renditions are absent from the lookup answer. Iterative so arbitrarily
9715
9723
  * long update chains cannot exhaust the call stack.
9716
9724
  */
9717
- private collectSpentOutpoints;
9718
- private emptyLookupDiagnostics;
9719
- private toLookupDiagnostics;
9720
- private lookupDiagnosticAttributes;
9721
- private captureLookupCompleted;
9722
- private captureLookupFailure;
9725
+ private collectSpends;
9726
+ private emptyStats;
9727
+ private diagnosticsFor;
9728
+ private lookupAttrs;
9729
+ private lookupDone;
9730
+ private lookupFailed;
9723
9731
  /**
9724
9732
  * Creates or updates (replaces) a UMP token on-chain. If `oldTokenToConsume` is provided,
9725
9733
  * it is spent in the same transaction that creates the new token output. The new token is
@@ -9735,18 +9743,18 @@ declare class OverlayUMPTokenInteractor implements UMPTokenInteractor {
9735
9743
  buildAndSend(wallet: WalletInterface // This wallet MUST be the one built for the default profile
9736
9744
  , adminOriginator: OriginatorDomainNameStringUnder250Bytes, token: UMPToken, oldTokenToConsume?: UMPToken): Promise<OutpointString>;
9737
9745
  /** Assembles the ordered number[][] fields array from a UMPToken. */
9738
- private buildUMPTokenFields;
9746
+ private tokenFields;
9739
9747
  /** Looks up the old token on the overlay; returns undefined resolved token if not found. */
9740
- private resolveOldTokenInput;
9748
+ private resolveOldInput;
9741
9749
  /** Creates the UMP action without dropping a required old-token input on failure. */
9742
- private createUMPAction;
9750
+ private createAction;
9743
9751
  /** Handles a fully-finalized (no signable tx) createAction result — broadcasts and returns outpoint. */
9744
- private broadcastFinishedUMPAction;
9752
+ private broadcastFinal;
9745
9753
  /** Signs the old-token input and broadcasts — used during UMP token renewal. */
9746
- private signAndBroadcastWithOldToken;
9754
+ private renewToken;
9747
9755
  /** Signs without input spending and broadcasts — used when creating a brand-new UMP token. */
9748
- private signAndBroadcastNewToken;
9749
- private assertSuccessfulBroadcast;
9756
+ private broadcastNew;
9757
+ private assertBroadcast;
9750
9758
  /**
9751
9759
  * Attempts to parse a LookupAnswer from the UMP lookup service. If successful,
9752
9760
  * extracts the token fields from the resulting transaction and constructs
@@ -9757,7 +9765,7 @@ declare class OverlayUMPTokenInteractor implements UMPTokenInteractor {
9757
9765
  */
9758
9766
  private parseLookupAnswer;
9759
9767
  private parseLookupAnswers;
9760
- private parseLookupOutput;
9768
+ private parseOutput;
9761
9769
  /**
9762
9770
  * Finds by outpoint for unlocking / spending previous tokens.
9763
9771
  * @param outpoint The outpoint we are searching by
@@ -9875,17 +9883,19 @@ declare class CWIStyleWalletManager implements WalletInterface {
9875
9883
  constructor(...[adminOriginator, walletBuilder, interactor, recoveryKeySaver, passwordRetriever, newWalletFunder, stateSnapshot, kdfConfig, telemetry]: [adminOriginator: OriginatorDomainNameStringUnder250Bytes, walletBuilder: (profilePrimaryKey: number[], profilePrivilegedKeyManager: PrivilegedKeyManager, profileId: number[]) => Promise<WalletInterface>, interactor: UMPTokenInteractor | undefined, recoveryKeySaver: (key: number[]) => Promise<true>, passwordRetriever: (reason: string, test: (passwordCandidate: string) => boolean | Promise<boolean>) => Promise<string>, newWalletFunder?: (presentationKey: number[], wallet: WalletInterface, adminOriginator: OriginatorDomainNameStringUnder250Bytes) => Promise<void>, stateSnapshot?: number[], kdfConfig?: KdfConfig, telemetry?: TelemetryConfig]);
9876
9884
  private _init;
9877
9885
  /**
9878
- * Provides the presentation key.
9886
+ * Provides the presentation key. A WAB operator pin may be supplied by the
9887
+ * authentication manager; normal lookup and lineage resolution always run
9888
+ * before this ambiguity-only fallback.
9879
9889
  */
9880
- providePresentationKey(key: number[]): Promise<void>;
9890
+ providePresentationKey(key: number[], lookupOptions?: UMPTokenLookupOptions): Promise<void>;
9881
9891
  /**
9882
9892
  * Provides the password.
9883
9893
  */
9884
9894
  providePassword(password: string): Promise<void>;
9885
9895
  /** Handles the password step for an existing user — derives keys, sets up infrastructure. */
9886
- private handleExistingUserPassword;
9896
+ private unlockExisting;
9887
9897
  /** Handles the password step for a new user — generates keys, builds UMP token, publishes on-chain. */
9888
- private handleNewUserPassword;
9898
+ private createNewUser;
9889
9899
  /**
9890
9900
  * Provides the recovery key.
9891
9901
  */
@@ -9971,12 +9981,12 @@ declare class CWIStyleWalletManager implements WalletInterface {
9971
9981
  * @param getRoot If true and factorName is 'privilegedKey', returns the root privileged key bytes directly.
9972
9982
  * @returns The decrypted key bytes.
9973
9983
  */
9974
- private getFactor;
9984
+ protected getFactor(factorName: 'passwordKey' | 'presentationKey' | 'recoveryKey' | 'privilegedKey'): Promise<number[]>;
9975
9985
  /**
9976
9986
  * Recomputes UMP token fields with updated factors and profiles, then publishes the update.
9977
9987
  * This operation requires the *root* privileged key and the *default* profile wallet.
9978
9988
  */
9979
- private updateAuthFactors;
9989
+ private updateFactors;
9980
9990
  /**
9981
9991
  * Serializes a UMP token to binary format (Version 3 with KDF metadata, Version 2 with profiles).
9982
9992
  * V3 Layout: [1 byte version=3] + [11 * (varint len + bytes) for standard fields] + [1 byte profile_flag] + [IF flag=1 THEN varint len + profile bytes] + [1 byte kdf_flag] + [IF flag=1 THEN kdf metadata] + [varint len + outpoint bytes]
@@ -9994,8 +10004,8 @@ declare class CWIStyleWalletManager implements WalletInterface {
9994
10004
  * @param rootPrimaryKey The user's root primary key (32 bytes).
9995
10005
  * @param ephemeralRootPrivilegedKey Optional root privileged key (e.g., during recovery flows).
9996
10006
  */
9997
- private setupRootInfrastructure;
9998
- private checkAuthAndUnderlying;
10007
+ private setupRoot;
10008
+ private assertReady;
9999
10009
  getPublicKey(args: GetPublicKeyArgs, originator?: OriginatorDomainNameStringUnder250Bytes): Promise<GetPublicKeyResult>;
10000
10010
  revealCounterpartyKeyLinkage(args: RevealCounterpartyKeyLinkageArgs, originator?: OriginatorDomainNameStringUnder250Bytes): Promise<RevealCounterpartyKeyLinkageResult>;
10001
10011
  revealSpecificKeyLinkage(args: RevealSpecificKeyLinkageArgs, originator?: OriginatorDomainNameStringUnder250Bytes): Promise<RevealSpecificKeyLinkageResult>;
@@ -10298,32 +10308,26 @@ declare class WABTransport {
10298
10308
  readonly serverUrl: string;
10299
10309
  readonly serverOrigin: string;
10300
10310
  readonly telemetry: Telemetry;
10301
- private readonly fetchClient;
10302
- private readonly timeoutMs;
10303
- private readonly maxRequestBytes;
10304
- private readonly maxResponseBytes;
10311
+ private readonly fetcher;
10312
+ private readonly timeout;
10313
+ private readonly requestLimit;
10314
+ private readonly responseLimit;
10305
10315
  constructor(serverUrl: string, options?: WABTransportOptions);
10306
10316
  createCorrelationId(): string;
10307
10317
  request<T>(path: string, options: WABRequestOptions): Promise<T>;
10308
- private createRequestMetadata;
10309
- private captureRequestStarted;
10310
- private encodeRequestBody;
10311
- private startRequestTimeout;
10312
- private fetchResponse;
10313
- private createResponseContext;
10314
- private assertSuccessfulResponse;
10315
- private readResponseText;
10316
- private parseResponseObject;
10317
- private captureRequestFailure;
10318
- private readBoundedResponse;
10319
- private rejectOversizedDeclaredResponse;
10320
- private readBoundedArrayBuffer;
10321
- private readBoundedStream;
10322
- private decodeChunks;
10323
- private responseTooLargeError;
10324
- private cancelResponseBody;
10325
- private cancelResponseReader;
10326
- private captureFailure;
10318
+ private bodyFor;
10319
+ private startTimer;
10320
+ private fetch;
10321
+ private checkResponse;
10322
+ private readText;
10323
+ private parse;
10324
+ private read;
10325
+ private readBuffer;
10326
+ private readStream;
10327
+ private sizeError;
10328
+ private stopBody;
10329
+ private stopReader;
10330
+ private report;
10327
10331
  }
10328
10332
  //#endregion
10329
10333
  //#region ../src/wab-client/auth-method-interactors/AuthMethodInteractor.d.ts
@@ -10343,6 +10347,12 @@ interface CompleteAuthResponse {
10343
10347
  accountStatus?: 'new-user' | 'existing-user';
10344
10348
  /** Compatibility signal accepted from WAB deployments using a boolean. */
10345
10349
  existingUser?: boolean;
10350
+ /** Operator-selected UMP ambiguity fallback supplied by newer WAB servers. */
10351
+ umpTokenOutpoint?: string;
10352
+ /** Staged key returned while a verified phone change awaits WAB finalization. */
10353
+ pendingPresentationKey?: string;
10354
+ /** Identifier used to idempotently finalize a staged phone change. */
10355
+ pendingPhoneChangeId?: number;
10346
10356
  }
10347
10357
  /**
10348
10358
  * Abstract client-side interactor for an Auth Method.
@@ -10537,6 +10547,7 @@ declare class WalletAuthenticationManager extends CWIStyleWalletManager {
10537
10547
  private readonly wabClient;
10538
10548
  private authMethod?;
10539
10549
  private authSession?;
10550
+ private phoneChangeSession?;
10540
10551
  private readonly authSessionTtlMs;
10541
10552
  constructor(...[adminOriginator, walletBuilder, interactor, recoveryKeySaver, passwordRetriever, wabClient, authMethod, stateSnapshot, options]: [adminOriginator: string, walletBuilder: (primaryKey: number[], privilegedKeyManager: PrivilegedKeyManager) => Promise<WalletInterface>, interactor: UMPTokenInteractor | undefined, recoveryKeySaver: (key: number[]) => Promise<true>, passwordRetriever: (reason: string, test: (passwordCandidate: string) => boolean | Promise<boolean>) => Promise<string>, wabClient: WABClient, authMethod?: AuthMethodInteractor, stateSnapshot?: number[], options?: WalletAuthenticationManagerOptions]);
10542
10553
  /**
@@ -10554,7 +10565,26 @@ declare class WalletAuthenticationManager extends CWIStyleWalletManager {
10554
10565
  */
10555
10566
  completeAuth(payload: AuthPayload): Promise<void>;
10556
10567
  cancelAuth(): void;
10568
+ private readPendingPhoneChange;
10569
+ private provideWABPresentationKey;
10570
+ private finalizePendingPhoneChange;
10571
+ /**
10572
+ * Starts OTP verification for a replacement phone number. The same number
10573
+ * is valid and intentionally produces a fresh presentation key/hash.
10574
+ */
10575
+ startPhoneNumberChange(phoneNumber: string): Promise<void>;
10576
+ /**
10577
+ * Completes phone verification and stages the WAB association before
10578
+ * publishing the UMP key rotation. WAB retains both the current and pending
10579
+ * presentation keys until finalization, so either side of an interrupted
10580
+ * transition remains recoverable on the next verified login.
10581
+ */
10582
+ completePhoneNumberChange(otp: string): Promise<{
10583
+ changeId: number;
10584
+ }>;
10585
+ cancelPhoneNumberChange(): void;
10557
10586
  destroy(): void;
10587
+ private phoneChange;
10558
10588
  private inferAccountStatus;
10559
10589
  private constantTimeHexEqual;
10560
10590
  private generateTemporaryPresentationKey;
@@ -11564,5 +11594,5 @@ declare class WalletPermissionsManager implements WalletInterface {
11564
11594
  private buildActiveRequestKey;
11565
11595
  }
11566
11596
  //#endregion
11567
- export { ARGON2ID_DEFAULT_HASH_LENGTH, ARGON2ID_DEFAULT_ITERATIONS, ARGON2ID_DEFAULT_MEMORY_KIB, ARGON2ID_DEFAULT_PARALLELISM, ARGON2ID_MAX_ITERATIONS, ARGON2ID_MAX_MEMORY_KIB, ARGON2ID_MAX_PARALLELISM, ActionBatchStatus, AdminStatsResult, AnyBlockHeader, AuthMethodInteractor, AuthPayload, BHServiceClient, BRC153_REFERENCE_PREFIX, BRC38ImportOptions, BRC38ImportResult, BRC38Tables, BRC38WalletData, BRC39Options, type BaseBlockHeader, type BlockHeader, BulkFileDataCacheApi, BulkFileDataManager, BulkFileDataManagerMergeResult, BulkFileDataManagerOptions, BulkFileDataManagerStats, BulkFileDataReader, BulkFileDataValidationError, BulkFileDataValidationRequest, BulkFileDataValidationResult, BulkFileDataValidatorApi, BulkFileDataValidatorStats, BulkFileDownloadBudgetApi, BulkFileDownloadBudgetSnapshot, BulkFilesReader, BulkFilesReaderFs, BulkFilesReaderStorage, BulkHeaderFile, BulkHeaderFileFs, BulkHeaderFileInfo, BulkHeaderFileStorage, BulkHeaderFiles, BulkHeaderFilesInfo, BulkIngestorApi, BulkIngestorBase, BulkIngestorBaseOptions, BulkIngestorCDN, BulkIngestorCDNBabbage, BulkIngestorCDNOptions, BulkIngestorChaintracks, BulkIngestorChaintracksOptions, BulkIngestorWhatsOnChainCdn, BulkIngestorWhatsOnChainOptions, BulkStorageApi, BulkStorageBase, BulkStorageBaseOptions, BulkSyncResult, ByteEncoding, ByteInput, CWIStyleWalletManager, Certifier, type Chain, Chaintracks, ChaintracksApi, ChaintracksAppendableFileApi, ChaintracksArgumentsTail, ChaintracksAvailabilitySnapshotApi, ChaintracksBulkDataStatsApi, ChaintracksChainTracker, ChaintracksChainTrackerOptions, ChaintracksClientApi, ChaintracksDownloadOptions, ChaintracksFetch, ChaintracksFetchApi, ChaintracksFetchError, ChaintracksFetchOptions, ChaintracksFsApi, ChaintracksInfoApi, ChaintracksIngestorParams, ChaintracksManagementApi, ChaintracksOptions, ChaintracksPackageInfoApi, ChaintracksReadableFileApi, ChaintracksServiceClient, ChaintracksServiceClientOptions, ChaintracksSourceOptions, ChaintracksSourceStatusApi, ChaintracksStorageApi, ChaintracksStorageBase, ChaintracksStorageBaseOptions, ChaintracksStorageBulkFileApi, ChaintracksStorageIdb, ChaintracksStorageIdbOptions, ChaintracksStorageIdbSchema, ChaintracksStorageIngestApi, ChaintracksStorageNoDb, ChaintracksStorageNoDbOptions, ChaintracksStorageQueryApi, ChaintracksWritableFileApi, CompleteAuthResponse, ContactRecord, ContactSource, CounterpartyPermissionEventHandler, CounterpartyPermissionRequest, CounterpartyPermissions, CreatedChaintracks, DEFAULT_MANAGED_CHANGE_MAX_OUTPUTS_PER_ACTION, DEFAULT_MANAGED_CHANGE_MIGRATION_INPUTS_PER_ACTION, DEFAULT_MANAGED_CHANGE_MINIMUM_SATOSHIS, DEFAULT_MANAGED_CHANGE_PENDING_COMPARISON_INPUTS, DEFAULT_MANAGED_CHANGE_TARGET_UTXOS, DEFAULT_PROFILE_ID, DEFAULT_SETTINGS, DeactivedHeader, DefaultChaintracksArguments, DevConsoleInteractor, EnqueueHandler, EntityBase, EntityCertificate, EntityCertificateField, EntityCommission, EntityOutput, EntityOutputBasket, EntityOutputTag, EntityOutputTagMap, EntityProvenTx, EntityProvenTxReq, EntityStorage, EntitySyncMap, EntitySyncState, EntityTransaction, EntityTxLabel, EntityTxLabelMap, EntityUser, ErrorHandler, FixedWindowBulkFileDownloadBudget, FixedWindowBulkFileDownloadBudgetOptions, GetHeaderByteFileLinksResult, GoChaintracksServiceClient, GoChaintracksServiceClientOptions, GroupedPermissionEventHandler, GroupedPermissionRequest, GroupedPermissions, HeaderListener, HeightRange, HeightRangeApi, HeightRanges, InlineBulkFileDataValidator, InsertHeaderResult, KDF_MAX_HASH_LENGTH, KdfConfig, KeyPairAddress, LEGACY_MANAGED_CHANGE_MINIMUM_SATOSHIS, LineItemType, ListActionsSpecOp, ListOutputsSpecOp, LiveBlockHeader, LiveIngestorApi, LiveIngestorBase, LiveIngestorBaseOptions, LiveIngestorChaintracksSSE, LiveIngestorChaintracksSSEOptions, LiveIngestorWhatsOnChainOptions, LiveIngestorWhatsOnChainPoll, LocalChainTracker, LocalChainTrackerConsistency, LocalChainTrackerMode, LocalChainTrackerOptions, LocalChainTrackerRecoveryEvidence, LocalChainTrackerStatus, MAX_STATE_SNAPSHOT_BYTES, ManagedChangeBasketDefaults, ManagedChangePolicy, ManagedChangePolicyOptions, MergeEntity, Monitor, MonitorOptions, MonitorStartupTaskMode, MonitorStorage, OverlayUMPTokenInteractor, PBKDF2_MAX_ITERATIONS, PBKDF2_NUM_ROUNDS, ParsedBrc114ActionTimeLabels, PendingSignAction, PendingStorageInput, PermissionEventHandler, PermissionRequest, PermissionToken, PermissionsManagerConfig, PermissionsModule, PersonaIDInteractor, PrivilegedKeyManager, Profile, ProvenTxFromTxidResult, ProvenTxReqHistory, ProvenTxReqHistorySummaryApi, ProvenTxReqNotify, ReorgListener, ResolvedDefaultChaintracksParams, ScriptTemplateBRC29, ScriptTemplateParamsBRC29, SecurityLevel, Services, SetupClient, SetupClientWalletArgs, SetupClientWalletClientArgs, SetupWallet, SetupWalletClient, SetupWalletIdb, SetupWalletIdbArgs, SimpleWalletManager, StartAuthResponse, StorageAdminStats, StorageClient, StorageIdb, StorageIdbOptions, StorageProvider, StorageProviderOptions, StorageSyncReader, SyncError, SyncMap, TESTNET_DEFAULT_SETTINGS, TableActionBatch, TableActionBatchBlob, TableActionBatchOutput, TableAuthSession, TableCertificate, TableCertificateField, TableCertificateX, TableCommission, TableMonitorEvent, TableOutput, TableOutputBasket, TableOutputTag, TableOutputTagMap, TableOutputX, TableProvenTx, TableProvenTxReq, TableProvenTxReqDynamics, TableSettings, TableSyncState, TableTransaction, TableTxLabel, TableTxLabelMap, TableUser, TrustSettings, TscMerkleProofApi, TwilioPhoneInteractor, TxScriptOffsets, UMPToken, UMPTokenInteractor, UMPTokenLookupDiagnostics, UMPTokenLookupError, UMPTokenLookupFailureReason, VerifyAndRepairBeefResult, WABAccountContinuityError, WABClient, WABClientError, WABClientErrorCode, WABClientErrorOptions, WABClientOptions, WABFaucetResponse, WABOperationResponse, WABRequestOptions, WABServerInfo, WABTransport, WABTransportOptions, Wallet, WalletArgs, WalletAuthenticationManager, WalletAuthenticationManagerOptions, WalletLogger, WalletLoggerArgs, WalletLoggerLevel, WalletPermissionsManager, WalletPermissionsManagerCallbacks, WalletSettings, WalletSettingsManager, WalletSettingsManagerConfig, WalletSigner, WalletStorageManager, WalletTheme, WhatsOnChainServices, WhatsOnChainServicesOptions, WocGetHeaderByteFileLinks, WocGetHeadersHeader, applyBrc153ReferenceLabel, arcDefaultUrl, arcGorillaPoolUrl, arcadeDefaultUrl, arraysEqual, asArray, asBsvSdkPrivateKey, asBsvSdkPublickKey, asBsvSdkScript, asBsvSdkTx, asString, asUint8Array, brc29ProtocolID, buildChaintracksOptionsWithIngestors, convertProofToMerklePath, createAndStartDefaultChaintracks, createDefaultBulkFileDataManager, createDefaultChaintracksClient, createDefaultChaintracksStorageOptions, createDefaultIdbChaintracksOptions, createDefaultNoDbChaintracksOptions, createDefaultWalletServicesOptions, createIdbChaintracks, createNoDbChaintracks, createSyncMap, decryptBRC39, defaultManagedChangePolicy, doubleSha256BE, doubleSha256LE, encryptBRC39, exportBRC38, exportBRC38Json, exportBRC39, getIdentityKey, getLabelToSpecOp, getListOutputsSpecOp, importBRC38, importBRC39, isAutoSpendableChangeOutput, isBaseBlockHeader, isBlockHeader, isBrc153ReferenceLabel, isLegacyManagedChangeBasketDefault, isLive, isLiveBlockHeader, isManagedChangeOutput, logCreateActionArgs, logWalletError, logger, makeAtomicBeef, makeBrc114ActionTimeLabel, makeBrc153ReferenceLabel, managedChangeOutputFields, maxDate, optionalArraysEqual, outputColumnsWithoutLockingScript, parseBRC38Json, parseBrc114ActionTimeLabels, parseBrc153ReferenceLabel, parseFileLink, parseTxScriptOffsets, partitionActionLabels, randomBytes, randomBytesBase64, randomBytesHex, resolveDefaultChaintracksArguments, index_d_exports as sdk, selectBulkHeaderFiles, sha256Hash, stampLog, stampLogFormat, startChaintracks, tableAuthSessionToPeerSession, throwDummyReviewActions, toBinaryBaseBlockHeader, toDefaultChaintracksArguments, toLookupNetworkPreset, toWalletNetwork, transactionColumnsWithoutRawTx, upgradeLegacyManagedChangeBasketDefault, blockHeaderUtilities_d_exports as utils, validateManagedChangePolicy, validateScriptHash, validateSecondsSinceEpoch, validateStorageFeeModel, verifyHexString, verifyId, verifyInteger, verifyNumber, verifyOne, verifyOneOrNone, verifyOptionalHexString, verifyTruthy, wait, wocGetHeadersHeaderToBlockHeader };
11597
+ export { ARGON2ID_DEFAULT_HASH_LENGTH, ARGON2ID_DEFAULT_ITERATIONS, ARGON2ID_DEFAULT_MEMORY_KIB, ARGON2ID_DEFAULT_PARALLELISM, ARGON2ID_MAX_ITERATIONS, ARGON2ID_MAX_MEMORY_KIB, ARGON2ID_MAX_PARALLELISM, ActionBatchStatus, AdminStatsResult, AnyBlockHeader, AuthMethodInteractor, AuthPayload, BHServiceClient, BRC153_REFERENCE_PREFIX, BRC38ImportOptions, BRC38ImportResult, BRC38Tables, BRC38WalletData, BRC39Options, type BaseBlockHeader, type BlockHeader, BulkFileDataCacheApi, BulkFileDataManager, BulkFileDataManagerMergeResult, BulkFileDataManagerOptions, BulkFileDataManagerStats, BulkFileDataReader, BulkFileDataValidationError, BulkFileDataValidationRequest, BulkFileDataValidationResult, BulkFileDataValidatorApi, BulkFileDataValidatorStats, BulkFileDownloadBudgetApi, BulkFileDownloadBudgetSnapshot, BulkFilesReader, BulkFilesReaderFs, BulkFilesReaderStorage, BulkHeaderFile, BulkHeaderFileFs, BulkHeaderFileInfo, BulkHeaderFileStorage, BulkHeaderFiles, BulkHeaderFilesInfo, BulkIngestorApi, BulkIngestorBase, BulkIngestorBaseOptions, BulkIngestorCDN, BulkIngestorCDNBabbage, BulkIngestorCDNOptions, BulkIngestorChaintracks, BulkIngestorChaintracksOptions, BulkIngestorWhatsOnChainCdn, BulkIngestorWhatsOnChainOptions, BulkStorageApi, BulkStorageBase, BulkStorageBaseOptions, BulkSyncResult, ByteEncoding, ByteInput, CWIStyleWalletManager, Certifier, type Chain, Chaintracks, ChaintracksApi, ChaintracksAppendableFileApi, ChaintracksArgumentsTail, ChaintracksAvailabilitySnapshotApi, ChaintracksBulkDataStatsApi, ChaintracksChainTracker, ChaintracksChainTrackerOptions, ChaintracksClientApi, ChaintracksDownloadOptions, ChaintracksFetch, ChaintracksFetchApi, ChaintracksFetchError, ChaintracksFetchOptions, ChaintracksFsApi, ChaintracksInfoApi, ChaintracksIngestorParams, ChaintracksManagementApi, ChaintracksOptions, ChaintracksPackageInfoApi, ChaintracksReadableFileApi, ChaintracksServiceClient, ChaintracksServiceClientOptions, ChaintracksSourceOptions, ChaintracksSourceStatusApi, ChaintracksStorageApi, ChaintracksStorageBase, ChaintracksStorageBaseOptions, ChaintracksStorageBulkFileApi, ChaintracksStorageIdb, ChaintracksStorageIdbOptions, ChaintracksStorageIdbSchema, ChaintracksStorageIngestApi, ChaintracksStorageNoDb, ChaintracksStorageNoDbOptions, ChaintracksStorageQueryApi, ChaintracksWritableFileApi, CompleteAuthResponse, ContactRecord, ContactSource, CounterpartyPermissionEventHandler, CounterpartyPermissionRequest, CounterpartyPermissions, CreatedChaintracks, DEFAULT_MANAGED_CHANGE_MAX_OUTPUTS_PER_ACTION, DEFAULT_MANAGED_CHANGE_MIGRATION_INPUTS_PER_ACTION, DEFAULT_MANAGED_CHANGE_MINIMUM_SATOSHIS, DEFAULT_MANAGED_CHANGE_PENDING_COMPARISON_INPUTS, DEFAULT_MANAGED_CHANGE_TARGET_UTXOS, DEFAULT_PROFILE_ID, DEFAULT_SETTINGS, DeactivedHeader, DefaultChaintracksArguments, DevConsoleInteractor, EnqueueHandler, EntityBase, EntityCertificate, EntityCertificateField, EntityCommission, EntityOutput, EntityOutputBasket, EntityOutputTag, EntityOutputTagMap, EntityProvenTx, EntityProvenTxReq, EntityStorage, EntitySyncMap, EntitySyncState, EntityTransaction, EntityTxLabel, EntityTxLabelMap, EntityUser, ErrorHandler, FixedWindowBulkFileDownloadBudget, FixedWindowBulkFileDownloadBudgetOptions, GetHeaderByteFileLinksResult, GoChaintracksServiceClient, GoChaintracksServiceClientOptions, GroupedPermissionEventHandler, GroupedPermissionRequest, GroupedPermissions, HeaderListener, HeightRange, HeightRangeApi, HeightRanges, InlineBulkFileDataValidator, InsertHeaderResult, KDF_MAX_HASH_LENGTH, KdfConfig, KeyPairAddress, LEGACY_MANAGED_CHANGE_MINIMUM_SATOSHIS, LineItemType, ListActionsSpecOp, ListOutputsSpecOp, LiveBlockHeader, LiveIngestorApi, LiveIngestorBase, LiveIngestorBaseOptions, LiveIngestorChaintracksSSE, LiveIngestorChaintracksSSEOptions, LiveIngestorWhatsOnChainOptions, LiveIngestorWhatsOnChainPoll, LocalChainTracker, LocalChainTrackerConsistency, LocalChainTrackerMode, LocalChainTrackerOptions, LocalChainTrackerRecoveryEvidence, LocalChainTrackerStatus, MAX_STATE_SNAPSHOT_BYTES, ManagedChangeBasketDefaults, ManagedChangePolicy, ManagedChangePolicyOptions, MergeEntity, Monitor, MonitorOptions, MonitorStartupTaskMode, MonitorStorage, OverlayUMPTokenInteractor, PBKDF2_MAX_ITERATIONS, PBKDF2_NUM_ROUNDS, ParsedBrc114ActionTimeLabels, PendingSignAction, PendingStorageInput, PermissionEventHandler, PermissionRequest, PermissionToken, PermissionsManagerConfig, PermissionsModule, PersonaIDInteractor, PrivilegedKeyManager, Profile, ProvenTxFromTxidResult, ProvenTxReqHistory, ProvenTxReqHistorySummaryApi, ProvenTxReqNotify, ReorgListener, ResolvedDefaultChaintracksParams, ScriptTemplateBRC29, ScriptTemplateParamsBRC29, SecurityLevel, Services, SetupClient, SetupClientWalletArgs, SetupClientWalletClientArgs, SetupWallet, SetupWalletClient, SetupWalletIdb, SetupWalletIdbArgs, SimpleWalletManager, StartAuthResponse, StorageAdminStats, StorageClient, StorageIdb, StorageIdbOptions, StorageProvider, StorageProviderOptions, StorageSyncReader, SyncError, SyncMap, TESTNET_DEFAULT_SETTINGS, TableActionBatch, TableActionBatchBlob, TableActionBatchOutput, TableAuthSession, TableCertificate, TableCertificateField, TableCertificateX, TableCommission, TableMonitorEvent, TableOutput, TableOutputBasket, TableOutputTag, TableOutputTagMap, TableOutputX, TableProvenTx, TableProvenTxReq, TableProvenTxReqDynamics, TableSettings, TableSyncState, TableTransaction, TableTxLabel, TableTxLabelMap, TableUser, TrustSettings, TscMerkleProofApi, TwilioPhoneInteractor, TxScriptOffsets, UMPToken, UMPTokenInteractor, UMPTokenLookupDiagnostics, UMPTokenLookupError, UMPTokenLookupFailureReason, UMPTokenLookupOptions, VerifyAndRepairBeefResult, WABAccountContinuityError, WABClient, WABClientError, WABClientErrorCode, WABClientErrorOptions, WABClientOptions, WABFaucetResponse, WABOperationResponse, WABRequestOptions, WABServerInfo, WABTransport, WABTransportOptions, Wallet, WalletArgs, WalletAuthenticationManager, WalletAuthenticationManagerOptions, WalletLogger, WalletLoggerArgs, WalletLoggerLevel, WalletPermissionsManager, WalletPermissionsManagerCallbacks, WalletSettings, WalletSettingsManager, WalletSettingsManagerConfig, WalletSigner, WalletStorageManager, WalletTheme, WhatsOnChainServices, WhatsOnChainServicesOptions, WocGetHeaderByteFileLinks, WocGetHeadersHeader, applyBrc153ReferenceLabel, arcDefaultUrl, arcGorillaPoolUrl, arcadeDefaultUrl, arraysEqual, asArray, asBsvSdkPrivateKey, asBsvSdkPublickKey, asBsvSdkScript, asBsvSdkTx, asString, asUint8Array, brc29ProtocolID, buildChaintracksOptionsWithIngestors, convertProofToMerklePath, createAndStartDefaultChaintracks, createDefaultBulkFileDataManager, createDefaultChaintracksClient, createDefaultChaintracksStorageOptions, createDefaultIdbChaintracksOptions, createDefaultNoDbChaintracksOptions, createDefaultWalletServicesOptions, createIdbChaintracks, createNoDbChaintracks, createSyncMap, decryptBRC39, defaultManagedChangePolicy, doubleSha256BE, doubleSha256LE, encryptBRC39, exportBRC38, exportBRC38Json, exportBRC39, getIdentityKey, getLabelToSpecOp, getListOutputsSpecOp, importBRC38, importBRC39, isAutoSpendableChangeOutput, isBaseBlockHeader, isBlockHeader, isBrc153ReferenceLabel, isLegacyManagedChangeBasketDefault, isLive, isLiveBlockHeader, isManagedChangeOutput, logCreateActionArgs, logWalletError, logger, makeAtomicBeef, makeBrc114ActionTimeLabel, makeBrc153ReferenceLabel, managedChangeOutputFields, maxDate, optionalArraysEqual, outputColumnsWithoutLockingScript, parseBRC38Json, parseBrc114ActionTimeLabels, parseBrc153ReferenceLabel, parseFileLink, parseTxScriptOffsets, partitionActionLabels, randomBytes, randomBytesBase64, randomBytesHex, resolveDefaultChaintracksArguments, index_d_exports as sdk, selectBulkHeaderFiles, sha256Hash, stampLog, stampLogFormat, startChaintracks, tableAuthSessionToPeerSession, throwDummyReviewActions, toBinaryBaseBlockHeader, toDefaultChaintracksArguments, toLookupNetworkPreset, toWalletNetwork, transactionColumnsWithoutRawTx, upgradeLegacyManagedChangeBasketDefault, blockHeaderUtilities_d_exports as utils, validateManagedChangePolicy, validateScriptHash, validateSecondsSinceEpoch, validateStorageFeeModel, verifyHexString, verifyId, verifyInteger, verifyNumber, verifyOne, verifyOneOrNone, verifyOptionalHexString, verifyTruthy, wait, wocGetHeadersHeaderToBlockHeader };
11568
11598
  //# sourceMappingURL=index.client.d.mts.map