From f80ba17531da6463a5cfee84bc08fd076e50a827 Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Tue, 16 Jan 2024 11:13:54 +0100 Subject: [PATCH] nodejs: add SyncOptions::syncImplicitAccounts (#1841) --- bindings/nodejs/lib/types/wallet/wallet.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bindings/nodejs/lib/types/wallet/wallet.ts b/bindings/nodejs/lib/types/wallet/wallet.ts index bcf3141e93..db1cb5b450 100644 --- a/bindings/nodejs/lib/types/wallet/wallet.ts +++ b/bindings/nodejs/lib/types/wallet/wallet.ts @@ -105,6 +105,8 @@ export interface SyncOptions { syncOnlyMostBasicOutputs?: boolean; /** Sync native token foundries, so their metadata can be returned in the balance. Default: false. */ syncNativeTokenFoundries?: boolean; + /// Sync implicit accounts. + syncImplicitAccounts?: boolean; } /** Specifies what outputs should be synced for the ed25519 address from the wallet. */