-
Notifications
You must be signed in to change notification settings - Fork 32
Description
Description:
The current client SDK provides the CreateWallet interface for wallet creation and an asynchronous callback OnWalletCreationResult to receive the key generation result. However, if for some reason the processing within OnWalletCreationResult is missed or fails, there is no way to retrieve the already created wallet information.
Attempting to call CreateWallet again with the same walletID results in an expected error indicating that the key already exists. While this error is correct behavior, the SDK lacks an interface to query the existing wallet details, such as the public key information.
This gap makes it difficult to recover or verify wallet creation status and associated key data after missing the asynchronous event.
Request:
Please consider adding a wallet query interface to the SDK that allows clients to fetch wallet information by walletID. This would improve robustness by enabling retrieval of wallet details even if the asynchronous creation result is missed.
Thank you!