Interface IUtxoRecord

interface IUtxoRecord {
    address?: Address;
    amount: bigint;
    index: number;
    isCoinbase: boolean;
    scriptPublicKey: string;
}

Properties

address?: Address
amount: bigint
index: number
isCoinbase: boolean
scriptPublicKey: string

Generated using TypeDoc