Interface IUtxoEntry

Interface defines the structure of a UTXO entry.

interface IUtxoEntry {
    address?: Address;
    amount: bigint;
    blockDaaScore: bigint;
    isCoinbase: boolean;
    outpoint: ITransactionOutpoint;
    scriptPublicKey: IScriptPublicKey;
}

Properties

address?: Address
amount: bigint
blockDaaScore: bigint
isCoinbase: boolean
scriptPublicKey: IScriptPublicKey

Generated using TypeDoc