@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.
@@ -3280,7 +3280,7 @@ declare class EntitySyncState extends EntityBase<TableSyncState> {
3280
3280
  mergeExisting(storage: EntityStorage, since: Date | undefined, ei: TableSyncState, syncMap: SyncMap, trx?: TrxToken): Promise<boolean>;
3281
3281
  makeRequestSyncChunkArgs(forIdentityKey: string, forStorageIdentityKey: string, maxRoughSize?: number, maxItems?: number): RequestSyncChunkArgs;
3282
3282
  static syncChunkSummary(c: SyncChunk): string;
3283
- processSyncChunk(writer: EntityStorage, args: RequestSyncChunkArgs, chunk: SyncChunk): Promise<{
3283
+ processSyncChunk(writer: EntityStorage, args: RequestSyncChunkArgs, chunk: SyncChunk, trx?: TrxToken): Promise<{
3284
3284
  done: boolean;
3285
3285
  maxUpdated_at: Date | undefined;
3286
3286
  updates: number;
@@ -9594,7 +9594,7 @@ interface UMPTokenInteractor {
9594
9594
  * @returns The UMP token if found; otherwise, undefined.
9595
9595
  * @throws Implementations should throw when no verified token or clean empty response is available.
9596
9596
  */
9597
- findByPresentationKeyHash: (hash: number[]) => Promise<UMPToken | undefined>;
9597
+ findByPresentationKeyHash: (hash: number[], options?: UMPTokenLookupOptions) => Promise<UMPToken | undefined>;
9598
9598
  /**
9599
9599
  * Locates the latest valid copy of a UMP token (including its outpoint)
9600
9600
  * based on the recovery key hash.
@@ -9603,7 +9603,7 @@ interface UMPTokenInteractor {
9603
9603
  * @returns The UMP token if found; otherwise, undefined.
9604
9604
  * @throws Implementations should throw when no verified token or clean empty response is available.
9605
9605
  */
9606
- findByRecoveryKeyHash: (hash: number[]) => Promise<UMPToken | undefined>;
9606
+ findByRecoveryKeyHash: (hash: number[], options?: UMPTokenLookupOptions) => Promise<UMPToken | undefined>;
9607
9607
  /**
9608
9608
  * Creates (and optionally consumes the previous version of) a UMP token on-chain.
9609
9609
  *
@@ -9616,6 +9616,14 @@ interface UMPTokenInteractor {
9616
9616
  buildAndSend: (wallet: WalletInterface // This wallet MUST be the one built for the default profile
9617
9617
  , adminOriginator: OriginatorDomainNameStringUnder250Bytes, token: UMPToken, oldTokenToConsume?: UMPToken) => Promise<OutpointString>;
9618
9618
  }
9619
+ interface UMPTokenLookupOptions {
9620
+ /**
9621
+ * WAB-administered fallback used only when normal lineage resolution leaves
9622
+ * more than one verified matching token. The outpoint must be one of the
9623
+ * verified lookup candidates or it has no effect.
9624
+ */
9625
+ pinnedOutpoint?: OutpointString;
9626
+ }
9619
9627
  interface UMPTokenLookupDiagnostics {
9620
9628
  hostCount: number;
9621
9629
  completedHosts: number;
@@ -9679,7 +9687,7 @@ declare class OverlayUMPTokenInteractor implements UMPTokenInteractor {
9679
9687
  * @param hash The 32-byte SHA-256 hash of the presentation key.
9680
9688
  * @returns A UMPToken object (including currentOutpoint) if found, otherwise undefined.
9681
9689
  */
9682
- findByPresentationKeyHash(hash: number[]): Promise<UMPToken | undefined>;
9690
+ findByPresentationKeyHash(hash: number[], options?: UMPTokenLookupOptions): Promise<UMPToken | undefined>;
9683
9691
  /**
9684
9692
  * Finds a UMP token on-chain by the given recovery key hash, if it exists.
9685
9693
  * Uses the ls_users overlay service to perform the lookup.
@@ -9687,7 +9695,7 @@ declare class OverlayUMPTokenInteractor implements UMPTokenInteractor {
9687
9695
  * @param hash The 32-byte SHA-256 hash of the recovery key.
9688
9696
  * @returns A UMPToken object (including currentOutpoint) if found, otherwise undefined.
9689
9697
  */
9690
- findByRecoveryKeyHash(hash: number[]): Promise<UMPToken | undefined>;
9698
+ findByRecoveryKeyHash(hash: number[], options?: UMPTokenLookupOptions): Promise<UMPToken | undefined>;
9691
9699
  private findToken;
9692
9700
  /**
9693
9701
  * Picks the newest rendition among distinct verified tokens, when possible.
@@ -9708,19 +9716,19 @@ declare class OverlayUMPTokenInteractor implements UMPTokenInteractor {
9708
9716
  * hash — on-chain proof that the candidate is an update of a same-identity
9709
9717
  * predecessor rather than an independently minted token.
9710
9718
  */
9711
- private consumesSameIdentityToken;
9719
+ private consumesIdentity;
9712
9720
  /**
9713
9721
  * Accumulates every outpoint spent by `tx` and by the ancestor transactions
9714
9722
  * embedded in its BEEF, so supersession is detected even when intermediate
9715
9723
  * renditions are absent from the lookup answer. Iterative so arbitrarily
9716
9724
  * long update chains cannot exhaust the call stack.
9717
9725
  */
9718
- private collectSpentOutpoints;
9719
- private emptyLookupDiagnostics;
9720
- private toLookupDiagnostics;
9721
- private lookupDiagnosticAttributes;
9722
- private captureLookupCompleted;
9723
- private captureLookupFailure;
9726
+ private collectSpends;
9727
+ private emptyStats;
9728
+ private diagnosticsFor;
9729
+ private lookupAttrs;
9730
+ private lookupDone;
9731
+ private lookupFailed;
9724
9732
  /**
9725
9733
  * Creates or updates (replaces) a UMP token on-chain. If `oldTokenToConsume` is provided,
9726
9734
  * it is spent in the same transaction that creates the new token output. The new token is
@@ -9736,18 +9744,18 @@ declare class OverlayUMPTokenInteractor implements UMPTokenInteractor {
9736
9744
  buildAndSend(wallet: WalletInterface // This wallet MUST be the one built for the default profile
9737
9745
  , adminOriginator: OriginatorDomainNameStringUnder250Bytes, token: UMPToken, oldTokenToConsume?: UMPToken): Promise<OutpointString>;
9738
9746
  /** Assembles the ordered number[][] fields array from a UMPToken. */
9739
- private buildUMPTokenFields;
9747
+ private tokenFields;
9740
9748
  /** Looks up the old token on the overlay; returns undefined resolved token if not found. */
9741
- private resolveOldTokenInput;
9749
+ private resolveOldInput;
9742
9750
  /** Creates the UMP action without dropping a required old-token input on failure. */
9743
- private createUMPAction;
9751
+ private createAction;
9744
9752
  /** Handles a fully-finalized (no signable tx) createAction result — broadcasts and returns outpoint. */
9745
- private broadcastFinishedUMPAction;
9753
+ private broadcastFinal;
9746
9754
  /** Signs the old-token input and broadcasts — used during UMP token renewal. */
9747
- private signAndBroadcastWithOldToken;
9755
+ private renewToken;
9748
9756
  /** Signs without input spending and broadcasts — used when creating a brand-new UMP token. */
9749
- private signAndBroadcastNewToken;
9750
- private assertSuccessfulBroadcast;
9757
+ private broadcastNew;
9758
+ private assertBroadcast;
9751
9759
  /**
9752
9760
  * Attempts to parse a LookupAnswer from the UMP lookup service. If successful,
9753
9761
  * extracts the token fields from the resulting transaction and constructs
@@ -9758,7 +9766,7 @@ declare class OverlayUMPTokenInteractor implements UMPTokenInteractor {
9758
9766
  */
9759
9767
  private parseLookupAnswer;
9760
9768
  private parseLookupAnswers;
9761
- private parseLookupOutput;
9769
+ private parseOutput;
9762
9770
  /**
9763
9771
  * Finds by outpoint for unlocking / spending previous tokens.
9764
9772
  * @param outpoint The outpoint we are searching by
@@ -9876,17 +9884,19 @@ declare class CWIStyleWalletManager implements WalletInterface {
9876
9884
  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]);
9877
9885
  private _init;
9878
9886
  /**
9879
- * Provides the presentation key.
9887
+ * Provides the presentation key. A WAB operator pin may be supplied by the
9888
+ * authentication manager; normal lookup and lineage resolution always run
9889
+ * before this ambiguity-only fallback.
9880
9890
  */
9881
- providePresentationKey(key: number[]): Promise<void>;
9891
+ providePresentationKey(key: number[], lookupOptions?: UMPTokenLookupOptions): Promise<void>;
9882
9892
  /**
9883
9893
  * Provides the password.
9884
9894
  */
9885
9895
  providePassword(password: string): Promise<void>;
9886
9896
  /** Handles the password step for an existing user — derives keys, sets up infrastructure. */
9887
- private handleExistingUserPassword;
9897
+ private unlockExisting;
9888
9898
  /** Handles the password step for a new user — generates keys, builds UMP token, publishes on-chain. */
9889
- private handleNewUserPassword;
9899
+ private createNewUser;
9890
9900
  /**
9891
9901
  * Provides the recovery key.
9892
9902
  */
@@ -9972,12 +9982,12 @@ declare class CWIStyleWalletManager implements WalletInterface {
9972
9982
  * @param getRoot If true and factorName is 'privilegedKey', returns the root privileged key bytes directly.
9973
9983
  * @returns The decrypted key bytes.
9974
9984
  */
9975
- private getFactor;
9985
+ protected getFactor(factorName: 'passwordKey' | 'presentationKey' | 'recoveryKey' | 'privilegedKey'): Promise<number[]>;
9976
9986
  /**
9977
9987
  * Recomputes UMP token fields with updated factors and profiles, then publishes the update.
9978
9988
  * This operation requires the *root* privileged key and the *default* profile wallet.
9979
9989
  */
9980
- private updateAuthFactors;
9990
+ private updateFactors;
9981
9991
  /**
9982
9992
  * Serializes a UMP token to binary format (Version 3 with KDF metadata, Version 2 with profiles).
9983
9993
  * 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]
@@ -9995,8 +10005,8 @@ declare class CWIStyleWalletManager implements WalletInterface {
9995
10005
  * @param rootPrimaryKey The user's root primary key (32 bytes).
9996
10006
  * @param ephemeralRootPrivilegedKey Optional root privileged key (e.g., during recovery flows).
9997
10007
  */
9998
- private setupRootInfrastructure;
9999
- private checkAuthAndUnderlying;
10008
+ private setupRoot;
10009
+ private assertReady;
10000
10010
  getPublicKey(args: GetPublicKeyArgs, originator?: OriginatorDomainNameStringUnder250Bytes): Promise<GetPublicKeyResult>;
10001
10011
  revealCounterpartyKeyLinkage(args: RevealCounterpartyKeyLinkageArgs, originator?: OriginatorDomainNameStringUnder250Bytes): Promise<RevealCounterpartyKeyLinkageResult>;
10002
10012
  revealSpecificKeyLinkage(args: RevealSpecificKeyLinkageArgs, originator?: OriginatorDomainNameStringUnder250Bytes): Promise<RevealSpecificKeyLinkageResult>;
@@ -10299,32 +10309,26 @@ declare class WABTransport {
10299
10309
  readonly serverUrl: string;
10300
10310
  readonly serverOrigin: string;
10301
10311
  readonly telemetry: Telemetry;
10302
- private readonly fetchClient;
10303
- private readonly timeoutMs;
10304
- private readonly maxRequestBytes;
10305
- private readonly maxResponseBytes;
10312
+ private readonly fetcher;
10313
+ private readonly timeout;
10314
+ private readonly requestLimit;
10315
+ private readonly responseLimit;
10306
10316
  constructor(serverUrl: string, options?: WABTransportOptions);
10307
10317
  createCorrelationId(): string;
10308
10318
  request<T>(path: string, options: WABRequestOptions): Promise<T>;
10309
- private createRequestMetadata;
10310
- private captureRequestStarted;
10311
- private encodeRequestBody;
10312
- private startRequestTimeout;
10313
- private fetchResponse;
10314
- private createResponseContext;
10315
- private assertSuccessfulResponse;
10316
- private readResponseText;
10317
- private parseResponseObject;
10318
- private captureRequestFailure;
10319
- private readBoundedResponse;
10320
- private rejectOversizedDeclaredResponse;
10321
- private readBoundedArrayBuffer;
10322
- private readBoundedStream;
10323
- private decodeChunks;
10324
- private responseTooLargeError;
10325
- private cancelResponseBody;
10326
- private cancelResponseReader;
10327
- private captureFailure;
10319
+ private bodyFor;
10320
+ private startTimer;
10321
+ private fetch;
10322
+ private checkResponse;
10323
+ private readText;
10324
+ private parse;
10325
+ private read;
10326
+ private readBuffer;
10327
+ private readStream;
10328
+ private sizeError;
10329
+ private stopBody;
10330
+ private stopReader;
10331
+ private report;
10328
10332
  }
10329
10333
  //#endregion
10330
10334
  //#region ../src/wab-client/auth-method-interactors/AuthMethodInteractor.d.ts
@@ -10344,6 +10348,12 @@ interface CompleteAuthResponse {
10344
10348
  accountStatus?: 'new-user' | 'existing-user';
10345
10349
  /** Compatibility signal accepted from WAB deployments using a boolean. */
10346
10350
  existingUser?: boolean;
10351
+ /** Operator-selected UMP ambiguity fallback supplied by newer WAB servers. */
10352
+ umpTokenOutpoint?: string;
10353
+ /** Staged key returned while a verified phone change awaits WAB finalization. */
10354
+ pendingPresentationKey?: string;
10355
+ /** Identifier used to idempotently finalize a staged phone change. */
10356
+ pendingPhoneChangeId?: number;
10347
10357
  }
10348
10358
  /**
10349
10359
  * Abstract client-side interactor for an Auth Method.
@@ -10538,6 +10548,7 @@ declare class WalletAuthenticationManager extends CWIStyleWalletManager {
10538
10548
  private readonly wabClient;
10539
10549
  private authMethod?;
10540
10550
  private authSession?;
10551
+ private phoneChangeSession?;
10541
10552
  private readonly authSessionTtlMs;
10542
10553
  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]);
10543
10554
  /**
@@ -10555,7 +10566,26 @@ declare class WalletAuthenticationManager extends CWIStyleWalletManager {
10555
10566
  */
10556
10567
  completeAuth(payload: AuthPayload): Promise<void>;
10557
10568
  cancelAuth(): void;
10569
+ private readPendingPhoneChange;
10570
+ private provideWABPresentationKey;
10571
+ private finalizePendingPhoneChange;
10572
+ /**
10573
+ * Starts OTP verification for a replacement phone number. The same number
10574
+ * is valid and intentionally produces a fresh presentation key/hash.
10575
+ */
10576
+ startPhoneNumberChange(phoneNumber: string): Promise<void>;
10577
+ /**
10578
+ * Completes phone verification and stages the WAB association before
10579
+ * publishing the UMP key rotation. WAB retains both the current and pending
10580
+ * presentation keys until finalization, so either side of an interrupted
10581
+ * transition remains recoverable on the next verified login.
10582
+ */
10583
+ completePhoneNumberChange(otp: string): Promise<{
10584
+ changeId: number;
10585
+ }>;
10586
+ cancelPhoneNumberChange(): void;
10558
10587
  destroy(): void;
10588
+ private phoneChange;
10559
10589
  private inferAccountStatus;
10560
10590
  private constantTimeHexEqual;
10561
10591
  private generateTemporaryPresentationKey;
@@ -11565,5 +11595,5 @@ declare class WalletPermissionsManager implements WalletInterface {
11565
11595
  private buildActiveRequestKey;
11566
11596
  }
11567
11597
  //#endregion
11568
- 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 };
11598
+ 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 };
11569
11599
  //# sourceMappingURL=index.client.d.cts.map