Algorand TypeScript
    Preparing search index...

    Interface KeyRegistrationFields

    interface KeyRegistrationFields {
        fee?: uint64;
        firstValid?: uint64;
        firstValidTime?: uint64;
        lastValid?: uint64;
        lease?: bytes<32>;
        nonparticipation?: boolean;
        note?: string | bytes;
        rekeyTo?: Account | bytes;
        selectionKey?: bytes<32>;
        sender?: Account | bytes;
        stateProofKey?: bytes<64>;
        voteFirst?: uint64;
        voteKey?: bytes<32>;
        voteKeyDilution?: uint64;
        voteLast?: uint64;
    }

    Hierarchy

    Index

    Properties

    fee?: uint64

    microalgos

    firstValid?: uint64

    round number

    firstValidTime?: uint64

    UNIX timestamp of block before txn.FirstValid. Fails if negative

    lastValid?: uint64

    round number

    lease?: bytes<32>

    32 byte lease value

    nonparticipation?: boolean

    Marks an account nonparticipating for rewards

    note?: string | bytes

    Any data up to 1024 bytes

    rekeyTo?: Account | bytes

    32 byte Sender's new AuthAddr

    selectionKey?: bytes<32>

    32 byte address

    sender?: Account | bytes

    32 byte address

    stateProofKey?: bytes<64>

    64 byte state proof public key

    voteFirst?: uint64

    The first round that the participation key is valid.

    voteKey?: bytes<32>

    32 byte address

    voteKeyDilution?: uint64

    Dilution for the 2-level participation key

    voteLast?: uint64

    The last round that the participation key is valid.