IsValidWalletAddress

Checks if a given wallet address is valid for the specified chain.

Client Authoritative (default)

void UVyWalletAPI::IsValidWalletAddress(EVyChain chain, FString walletAddress, const FVyOnIsValidWalletAddressComplete& OnComplete)

Parameters

chain

The chain to validate the wallet address against.

walletAddress

FString

The wallet address to validate.

OnComplete

FVyOnIsValidWalletAddressComplete

(Delegate) Executes when the operation is complete (either success or fail). This delegate exposes a single parameter of type FVyIsValidWalletAddressResponse.

OnComplete [FVyIsValidWalletAddressResponse]

Success

bool

Indicates if the operation was successful

Errors

Array containing potential error information in case the operation failed.

ResponseContext

Raw response data of the operation

Result

bool

Contains the result of the operation, only if the operation succeeded.

Last updated