Result of wallet creation

interface WalletCreateResult {
    error?: string;
    success: boolean;
    transactionHash?: string;
    walletAddress?: string;
}

Properties

error?: string
success: boolean
transactionHash?: string
walletAddress?: string