InteractionResponse
Overview
The full source code is available on GitHub at ITransactionResponses.ts.
Import
import { InteractionResponse } from '@btc-vision/transaction';Interface
Signature
interface InteractionResponse {
readonly fundingTransaction: string | null;
readonly interactionTransaction: string;
readonly estimatedFees: bigint;
readonly nextUTXOs: UTXO[];
readonly fundingUTXOs: UTXO[];
readonly fundingInputUtxos: UTXO[];
readonly challenge: RawChallenge;
readonly interactionAddress: string | null;
readonly compiledTargetScript: string | null;
}Description
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| fundingTransaction | string | null | Yes | |
| interactionTransaction | string | Yes | |
| estimatedFees | bigint | Yes | |
| nextUTXOs | UTXO[] | Yes | |
| fundingUTXOs | UTXO[] | Yes | |
| fundingInputUtxos | UTXO[] | Yes | |
| challenge | RawChallenge | Yes | |
| interactionAddress | string | null | Yes | |
| compiledTargetScript | string | null | Yes |