Algorand TypeScript
    Preparing search index...

    Interface KeyRegistrationFields

    interface KeyRegistrationFields {
        fee?: uint64;
        firstValid?: uint64;
        firstValidTime?: uint64;
        lastValid?: uint64;
        lease?: bytes;
        nonparticipation?: boolean;
        note?: string | bytes;
        rekeyTo?: bytes | Account;
        selectionKey?: bytes;
        sender?: bytes | Account;
        stateProofKey?: bytes;
        voteFirst?: uint64;
        voteKey?: bytes;
        voteKeyDilution?: uint64;
        voteLast?: uint64;
    }
    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 byte lease value

    nonparticipation?: boolean

    Marks an account nonparticipating for rewards

    note?: string | bytes

    Any data up to 1024 bytes

    rekeyTo?: bytes | Account

    32 byte Sender's new AuthAddr

    selectionKey?: bytes

    32 byte address

    sender?: bytes | Account

    32 byte address

    stateProofKey?: bytes

    64 byte state proof public key

    voteFirst?: uint64

    The first round that the participation key is valid.

    voteKey?: bytes

    32 byte address

    voteKeyDilution?: uint64

    Dilution for the 2-level participation key

    voteLast?: uint64

    The last round that the participation key is valid.