opnet 1.2.7 → 1.2.8
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/browser/_version.d.ts +1 -1
- package/browser/contracts/CallResult.d.ts +3 -1
- package/browser/index.js +1 -1
- package/build/_version.d.ts +1 -1
- package/build/_version.js +1 -1
- package/build/contracts/CallResult.d.ts +3 -1
- package/build/contracts/CallResult.js +6 -4
- package/package.json +2 -2
- package/src/_version.ts +1 -1
- package/src/contracts/CallResult.ts +18 -6
package/browser/_version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.2.
|
|
1
|
+
export declare const version = "1.2.8";
|
|
@@ -7,7 +7,7 @@ import { IAccessList } from './interfaces/IAccessList.js';
|
|
|
7
7
|
import { EventList, ICallResultData } from './interfaces/ICallResult.js';
|
|
8
8
|
import { OPNetEvent } from './OPNetEvent.js';
|
|
9
9
|
export interface TransactionParameters {
|
|
10
|
-
readonly signer
|
|
10
|
+
readonly signer?: Signer | ECPairInterface;
|
|
11
11
|
readonly refundTo: string;
|
|
12
12
|
readonly priorityFee?: bigint;
|
|
13
13
|
readonly feeRate?: number;
|
|
@@ -20,6 +20,8 @@ export interface InteractionTransactionReceipt {
|
|
|
20
20
|
readonly transactionId: string;
|
|
21
21
|
readonly newUTXOs: UTXO[];
|
|
22
22
|
readonly peerAcknowledgements: number;
|
|
23
|
+
readonly estimatedFees: bigint;
|
|
24
|
+
readonly preimage: string;
|
|
23
25
|
}
|
|
24
26
|
export declare class CallResult<T extends ContractDecodedObjectResult = {}> implements Omit<ICallResultData, 'estimatedGas' | 'events'> {
|
|
25
27
|
#private;
|