opnet 1.6.21 → 1.6.22

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.6.21";
1
+ export declare const version = "1.6.22";
@@ -1,4 +1,4 @@
1
- import { Network, PsbtOutputExtended, Signer, Transaction } from '@btc-vision/bitcoin';
1
+ import { Network, PsbtOutputExtended, Signer } from '@btc-vision/bitcoin';
2
2
  import { Address, BinaryReader, LoadedStorage, RawChallenge, SupportedTransactionVersion, UTXO } from '@btc-vision/transaction';
3
3
  import { ECPairInterface } from 'ecpair';
4
4
  import { BitcoinFees } from '../block/BlockGasParameters.js';
@@ -31,7 +31,7 @@ export interface InteractionTransactionReceipt {
31
31
  readonly peerAcknowledgements: number;
32
32
  readonly estimatedFees: bigint;
33
33
  readonly challengeSolution: RawChallenge;
34
- readonly rawTransaction: Transaction;
34
+ readonly rawTransaction: string;
35
35
  }
36
36
  export declare class CallResult<T extends ContractDecodedObjectResult = {}, U extends OPNetEvent<ContractDecodedObjectResult>[] = OPNetEvent<ContractDecodedObjectResult>[]> implements Omit<ICallResultData, 'estimatedGas' | 'events' | 'specialGas'> {
37
37
  #private;