Interface ResponseInvoiceRow

Interface representing a row in the response of an invoice request. ResponseInvoiceRow

interface ResponseInvoiceRow {
    amount: number;
    asset_id: string;
    asset_type: AssetType;
    asset_version?: AssetVersion;
    encoded: string;
    group_key?: null | string;
    internal_key: string;
    proof_courier_addr?: string;
    script_key: string;
    taproot_output_key: string;
    tapscript_sibling?: null | string;
}

Hierarchy (view full)

Properties

amount: number
asset_id: string
asset_type: AssetType
asset_version?: AssetVersion
encoded: string
group_key?: null | string
internal_key: string
proof_courier_addr?: string
script_key: string
taproot_output_key: string
tapscript_sibling?: null | string