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