Interface IWallet

Interface for the generated wallet

interface IWallet {
    address: string;
    privateKey: string;
    publicKey: string;
}

Properties

address: string

The address of the wallet

privateKey: string

The private key of the wallet

publicKey: string

The public key of the wallet