opnet 1.5.2 → 1.5.3

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.
@@ -22,8 +22,6 @@ updates:
22
22
  prefix: '⬆️'
23
23
  include: scope
24
24
 
25
- reviewers:
26
- - 'BlobMaster41'
27
25
  labels:
28
26
  - 'dependencies'
29
27
  - 'npm'
@@ -1 +1 @@
1
- export declare const version = "1.5.1";
1
+ export declare const version = "1.5.3";
@@ -34,7 +34,7 @@ export declare abstract class IBaseContract<T extends BaseContractProperties> im
34
34
  private simulatedHeight;
35
35
  private accessList;
36
36
  protected constructor(address: string | Address, abi: BitcoinInterface | BitcoinInterfaceAbi, provider: AbstractRpcProvider, network: Network, from?: Address);
37
- get p2trOrTweaked(): string;
37
+ get p2opOrTweaked(): string;
38
38
  setSender(sender: Address): void;
39
39
  decodeEvents(events: NetEvent[] | ContractEvents): OPNetEvent<ContractDecodedObjectResult>[];
40
40
  decodeEvent(event: NetEvent): OPNetEvent;
@@ -6,7 +6,7 @@ import { IAccessList } from './IAccessList.js';
6
6
  import { ParsedSimulatedTransaction } from './SimulatedTransaction.js';
7
7
  export interface IContract {
8
8
  readonly address: Address | string;
9
- get p2trOrTweaked(): string;
9
+ get p2opOrTweaked(): string;
10
10
  currentGasParameters(): Promise<BlockGasParameters>;
11
11
  setSender(sender: Address): void;
12
12
  decodeEvents(events: NetEvent[] | ContractEvents): OPNetEvent[];