Algorand TypeScript
    Preparing search index...

    Interface PaymentTxn

    A group transaction of type 'pay'

    interface PaymentTxn {
        constructor: any;
        amount: uint64;
        closeRemainderTo: Account;
        fee: uint64;
        firstValid: uint64;
        firstValidTime: uint64;
        groupIndex: uint64;
        lastValid: uint64;
        lease: bytes;
        note: bytes;
        receiver: Account;
        rekeyTo: Account;
        sender: Account;
        txnId: bytes;
        type: Payment;
        typeBytes: bytes;
    }
    Index

    Constructors

    constructor: any

    Properties

    amount: uint64

    microalgos

    closeRemainderTo: Account

    32 byte address

    fee: uint64

    microalgos

    firstValid: uint64

    round number

    firstValidTime: uint64

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

    groupIndex: uint64

    Position of this transaction within an atomic group A stand-alone transaction is implicitly element 0 in a group of 1

    lastValid: uint64

    round number

    lease: bytes

    32 byte lease value

    note: bytes

    Any data up to 1024 bytes

    receiver: Account

    32 byte address

    rekeyTo: Account

    32 byte Sender's new AuthAddr

    sender: Account

    32 byte address

    txnId: bytes

    The computed ID for this transaction. 32 bytes.

    type: Payment

    Transaction type

    typeBytes: bytes

    Transaction type as bytes