Function Signature
Description
Returns wallet identity metadata for an account address. Useful for re-identifying a wallet (chain, derivation path, threshold scheme) when you have only the address — for example in admin tooling or read-only audit flows. This is an identity-only lookup — the returnedwalletMetadata includes walletId, accountAddress, chainName, derivationPath, and thresholdSignatureScheme, but not externalServerKeySharesBackupInfo. The backup-pointer metadata is not recoverable from the server via SDK-scoped endpoints.
The recommended path is to persist the full
walletMetadata from creation. fetchWalletMetadata is an identification primitive, not a recovery primitive.
Parameters
accountAddress(string) — The wallet’s account address
Returns
Promise<WalletMetadata>— Identity-only metadata.
Example
Related
WalletMetadata- The metadata object passed to every operationcreateWalletAccount()- The canonical source of completewalletMetadata- Storage Best Practices - Persist the full
walletMetadatato avoid this fallback