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.
- package/.github/dependabot.yml +0 -2
- package/browser/_version.d.ts +1 -1
- package/browser/contracts/Contract.d.ts +1 -1
- package/browser/contracts/interfaces/IContract.d.ts +1 -1
- package/browser/index.js +1 -1
- package/browser/providers/interfaces/PublicKeyInfo.d.ts +1 -1
- package/build/_version.d.ts +1 -1
- package/build/_version.js +1 -1
- package/build/contracts/CallResult.js +2 -2
- package/build/contracts/Contract.d.ts +1 -1
- package/build/contracts/Contract.js +11 -8
- package/build/contracts/TypeToStr.js +1 -1
- package/build/contracts/interfaces/IContract.d.ts +1 -1
- package/build/providers/interfaces/PublicKeyInfo.d.ts +1 -1
- package/build/transactions/metadata/TransactionReceipt.js +8 -8
- package/package.json +3 -3
- package/src/_version.ts +1 -1
- package/src/contracts/CallResult.ts +2 -2
- package/src/contracts/Contract.ts +16 -12
- package/src/contracts/TypeToStr.ts +1 -1
- package/src/contracts/interfaces/IContract.ts +1 -1
- package/src/providers/interfaces/PublicKeyInfo.ts +1 -1
- package/src/transactions/interfaces/transactions/ICommonTransaction.ts +1 -1
- package/src/transactions/interfaces/transactions/IDeploymentTransaction.ts +1 -1
- package/src/transactions/metadata/TransactionReceipt.ts +8 -8
package/.github/dependabot.yml
CHANGED
package/browser/_version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.5.
|
|
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
|
|
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
|
|
9
|
+
get p2opOrTweaked(): string;
|
|
10
10
|
currentGasParameters(): Promise<BlockGasParameters>;
|
|
11
11
|
setSender(sender: Address): void;
|
|
12
12
|
decodeEvents(events: NetEvent[] | ContractEvents): OPNetEvent[];
|