Interface Account

An Algorand account object.

Contains an Algorand address and secret key.

interface Account {
    addr: Address;
    sk: Uint8Array;
}

Properties

Properties

addr: Address

Algorand address

sk: Uint8Array

Secret key belonging to the Algorand address

Generated using TypeDoc