ImportWallet

Imports a wallet using the provided keystore password and returns a VyWalletDto.

Server Authoritative (default)

Overloads

ImportWallet <VyKeystorePasswordWalletImportRequest>

public static VyTask<VyWalletDto> ImportWallet(VyKeystorePasswordWalletImportRequest reqParams)

Path Parameters

reqParams

The request parameters containing the keystore password.

Returns

VyTask<VyWalletDto> An asynchronous task that returns a VyWalletDto object.

ImportWallet <VyPrivateKeyWalletImportRequest>

public static VyTask<VyWalletDto> ImportWallet(VyPrivateKeyWalletImportRequest reqParams)

Path Parameters

reqParams

The request parameters for importing the wallet.

Returns

VyTask<VyWalletDto> A task that represents the asynchronous operation. The task result contains the imported wallet data.

ImportWallet <VyWifWalletImportRequest>

public static VyTask<VyWalletDto> ImportWallet(VyWifWalletImportRequest reqParams)

Path Parameters

reqParams

The request parameters for importing the wallet using WIF.

Returns

VyTask<VyWalletDto> An asynchronous task that returns a VyWalletDto object representing the imported wallet.

ImportWallet <VyWifPassphraseImportRequest>

public static VyTask<VyWalletDto> ImportWallet(VyWifPassphraseImportRequest reqParams)

Path Parameters

reqParams

The request parameters for importing the wallet.

Returns

VyTask<VyWalletDto> A task that represents the asynchronous operation. The task result contains the imported wallet.

ImportWallet <VyMigrationWalletImportRequest>

public static VyTask<VyWalletDto> ImportWallet(VyMigrationWalletImportRequest reqParams)

Path Parameters

reqParams

The request parameters for the wallet import.

Returns

VyTask<VyWalletDto> A task that represents the asynchronous wallet import operation. The task result contains the imported wallet.

Last updated