opnet 1.7.13 → 1.7.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- export declare const version = "1.7.13";
1
+ export declare const version = "1.7.15";
@@ -54,6 +54,7 @@ export interface SignedInteractionTransactionReceipt {
54
54
  readonly challengeSolution: RawChallenge;
55
55
  readonly interactionAddress: string | null;
56
56
  readonly fundingUTXOs: UTXO[];
57
+ readonly fundingInputUtxos: UTXO[];
57
58
  readonly compiledTargetScript: string | null;
58
59
  readonly utxoTracking: UTXOTrackingInfo;
59
60
  }
@@ -66,6 +67,7 @@ export interface InteractionTransactionReceipt {
66
67
  readonly rawTransaction: string;
67
68
  readonly interactionAddress: string | null;
68
69
  readonly fundingUTXOs: UTXO[];
70
+ readonly fundingInputUtxos: UTXO[];
69
71
  readonly compiledTargetScript: string | null;
70
72
  }
71
73
  export declare class CallResult<T extends ContractDecodedObjectResult = {}, U extends OPNetEvent<ContractDecodedObjectResult>[] = OPNetEvent<ContractDecodedObjectResult>[]> implements Omit<ICallResultData, 'estimatedGas' | 'events' | 'specialGas'> {
@@ -94,6 +96,7 @@ export declare class CallResult<T extends ContractDecodedObjectResult = {}, U ex
94
96
  setTo(to: string, address: Address): void;
95
97
  setFromAddress(from?: Address): void;
96
98
  signTransaction(interactionParams: TransactionParameters, amountAddition?: bigint): Promise<SignedInteractionTransactionReceipt>;
99
+ sendPresignedTransaction(signedTx: SignedInteractionTransactionReceipt): Promise<InteractionTransactionReceipt>;
97
100
  sendTransaction(interactionParams: TransactionParameters, amountAddition?: bigint): Promise<InteractionTransactionReceipt>;
98
101
  setGasEstimation(estimatedGas: bigint, refundedGas: bigint): void;
99
102
  setBitcoinFee(fees: BitcoinFees): void;