Interface ITransactionOutput

Transaction output interface

interface ITransactionOutput {
    index: number;
    scriptPubKey: {
        address?: string;
        addresses?: string[];
        hex: string;
    };
    value: string;
}

Properties

index: number
scriptPubKey: {
    address?: string;
    addresses?: string[];
    hex: string;
}
value: string