interface SubscriptionResponse {
    checkpointTxs?: Record<string, { tx: string; txid: string }>;
    newVtxos: VirtualCoin[];
    scripts: string[];
    spentVtxos: VirtualCoin[];
    tx?: string;
    txid?: string;
}

Properties

checkpointTxs?: Record<string, { tx: string; txid: string }>
newVtxos: VirtualCoin[]
scripts: string[]
spentVtxos: VirtualCoin[]
tx?: string
txid?: string