opnet 1.3.0 → 1.3.1
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/abi/shared/interfaces/opnet/IOP_NETContract.d.ts +0 -3
- package/browser/index.js +1 -1
- package/build/_version.d.ts +1 -1
- package/build/_version.js +1 -1
- package/build/abi/shared/interfaces/opnet/IOP_NETContract.d.ts +0 -3
- package/package.json +3 -3
- package/src/_version.ts +1 -1
- package/src/abi/shared/interfaces/opnet/IOP_NETContract.ts +0 -2
- package/src/abi/shared/json/motoswap/NATIVE_SWAP_ABI.ts +1 -1
package/build/_version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.3.
|
|
1
|
+
export declare const version = "1.3.1";
|
package/build/_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.3.
|
|
1
|
+
export const version = '1.3.1';
|
|
@@ -2,9 +2,6 @@ import { Address } from '@btc-vision/transaction';
|
|
|
2
2
|
import { CallResult } from '../../../../contracts/CallResult.js';
|
|
3
3
|
import { BaseContractProperties } from '../../../interfaces/BaseContractProperties.js';
|
|
4
4
|
export interface IOP_NETContract extends BaseContractProperties {
|
|
5
|
-
owner(): Promise<CallResult<{
|
|
6
|
-
owner: Address;
|
|
7
|
-
}>>;
|
|
8
5
|
deployer(): Promise<CallResult<{
|
|
9
6
|
deployer: Address;
|
|
10
7
|
}>>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opnet",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.1",
|
|
5
5
|
"author": "OP_NET",
|
|
6
6
|
"description": "The perfect library for building Bitcoin-based applications.",
|
|
7
7
|
"engines": {
|
|
@@ -93,8 +93,8 @@
|
|
|
93
93
|
"ts-loader": "^9.5.2",
|
|
94
94
|
"ts-node": "^10.9.2",
|
|
95
95
|
"typedoc": "^0.27.9",
|
|
96
|
-
"typescript": "^5.
|
|
97
|
-
"typescript-eslint": "^8.26.
|
|
96
|
+
"typescript": "^5.8.2",
|
|
97
|
+
"typescript-eslint": "^8.26.1",
|
|
98
98
|
"webpack": "^5.98.0",
|
|
99
99
|
"webpack-cli": "^6.0.1"
|
|
100
100
|
},
|
package/src/_version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.3.
|
|
1
|
+
export const version = '1.3.1';
|
|
@@ -9,7 +9,5 @@ import { BaseContractProperties } from '../../../interfaces/BaseContractProperti
|
|
|
9
9
|
* @cathegory Contracts
|
|
10
10
|
*/
|
|
11
11
|
export interface IOP_NETContract extends BaseContractProperties {
|
|
12
|
-
owner(): Promise<CallResult<{ owner: Address }>>;
|
|
13
|
-
|
|
14
12
|
deployer(): Promise<CallResult<{ deployer: Address }>>;
|
|
15
13
|
}
|
|
@@ -83,7 +83,7 @@ export const NativeSwapAbi: BitcoinInterfaceAbi = [
|
|
|
83
83
|
{ name: 'maximumAmountIn', type: ABIDataTypes.UINT256 },
|
|
84
84
|
{ name: 'minimumAmountOut', type: ABIDataTypes.UINT256 },
|
|
85
85
|
{ name: 'forLP', type: ABIDataTypes.BOOL },
|
|
86
|
-
{ name: 'activationDelay', type: ABIDataTypes.UINT8 },
|
|
86
|
+
{ name: 'activationDelay', type: ABIDataTypes.UINT8 },
|
|
87
87
|
],
|
|
88
88
|
outputs: [{ name: 'ok', type: ABIDataTypes.BOOL }],
|
|
89
89
|
type: BitcoinAbiTypes.Function,
|