DeploymentResult
Overview
The full source code is available on GitHub at ITransactionResponses.ts.
Import
import { DeploymentResult } from '@btc-vision/transaction';Interface
Signature
interface DeploymentResult {
readonly transaction: [string, string];
readonly contractAddress: string;
readonly contractPubKey: string;
readonly challenge: RawChallenge;
readonly utxos: UTXO[];
readonly inputUtxos: UTXO[];
}Description
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| transaction | [string, string] | Yes | |
| contractAddress | string | Yes | |
| contractPubKey | string | Yes | |
| challenge | RawChallenge | Yes | |
| utxos | UTXO[] | Yes | |
| inputUtxos | UTXO[] | Yes |