Function Signature

getWalletExternalServerKeyShareBackupInfo(params: {
  accountAddress: string;
}): Promise<any>

Description

Gets backup information for external server key shares of a specific wallet. This information is useful for understanding the backup status and configuration of wallet key shares.

Parameters

Required Parameters

  • accountAddress (string) - The wallet address to get backup info for

Returns

  • Promise<any> - Backup information for the wallet

Example

import { authenticatedSvmClient } from './client';

const svmClient = await authenticatedSvmClient();

const backupInfo = await svmClient.getWalletExternalServerKeyShareBackupInfo({
  accountAddress: 'YourSolanaWalletAddress',
});

console.log('Backup info:', backupInfo);

Error Handling

try {
  const backupInfo = await svmClient.getWalletExternalServerKeyShareBackupInfo({
    accountAddress: 'YourSolanaWalletAddress',
  });
  console.log('Backup info retrieved successfully');
} catch (error) {
  console.error('Failed to get backup info:', error);
}