Interface UTxO

Interface representing an unspent transaction output (UTxO) in the Cardano blockchain.

interface UTxO {
    input: TxIn;
    output: TxOut;
}

Properties

Properties

input: TxIn

The transaction input that this UTxO is associated with, which includes the transaction ID and index of the output.

output: TxOut

The transaction output that this UTxO represents, which contains the value and any associated data or scripts.