Interface Account

An interface for account.

interface Account {
    address: string;
    private_key: string;
    public_key: string;
}

Properties

address: string

The address.

private_key: string

The private key.

public_key: string

The public key.