interface CardanoUtxo {
    address: string;
    lovelace: string;
    outputIndex: number;
    txHash: string;
}

Properties

address: string

The address of the output

Example

"addr1qdzmqvfdnxsn4a3hd57x435madswynt4hqw8n7f2pdq05g4995re"
lovelace: string

The amount of lovelace in the output

Example

"1000000"
outputIndex: number

The output index

Example

0
txHash: string

The transaction hash

Example

"0x1234567890abcdef..."