Interface TxIn

Interface representing a transaction input in the Cardano blockchain.

interface TxIn {
    index: number;
    txId: string;
}

Properties

Properties

index: number

The index of the output in the transaction that this input refers to.

txId: string

The transaction ID (txId) of the transaction that this input is part of. In hexadecimal format, it uniquely identifies the transaction.