Interface ISerializableUtxoEntry

Interface defines the structure of a serializable UTXO entry.

interface ISerializableUtxoEntry {
    address?: Address;
    amount: bigint;
    blockDaaScore: bigint;
    isCoinbase: boolean;
    scriptPublicKey: ScriptPublicKey;
}

Properties

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

Generated using TypeDoc