Skip to main content
Removed in V1. getWallet(...) no longer exists in the Node SDK. Use one of the following instead:
  • fetchWalletMetadata(accountAddress) — returns identity-only WalletMetadata in the shape every SDK operation takes as input. This is the recommended lookup for identity metadata, but it does not include externalServerKeySharesBackupInfo or addressType, so it is not a substitute for the full walletMetadata persisted at creation.
  • getWalletByAddress(accountAddress) — returns identity-only WalletProperties, or null if the wallet is not found. externalServerKeyShares is always empty, and externalServerKeySharesBackupInfo is undefined on current backends, so it is not a recovery path for signing or exporting.
For signing, exporting, and other operations, persist the full walletMetadata returned from createWalletAccount() at creation time rather than re-fetching it. See the V1 migration guide.
Last modified on July 3, 2026