Interface IAccount

Represents the structure of an account object.

See

  • address - A string representing the address of the account.
  • publicKey - A string representing the base58 encoded public key associated with the account.
  • secretKey - A string representing the base58 encoded private key associated with the account.
interface IAccount {
    address: string;
    publicKey: string;
    secretKey: string;
}

Properties

address: string
publicKey: string
secretKey: string

Generated using TypeDoc