opnet 1.2.6 → 1.2.7
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_20Contract.d.ts +1 -1
- 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_20Contract.d.ts +1 -1
- package/package.json +1 -1
- package/src/_version.ts +1 -1
- package/src/abi/shared/interfaces/opnet/IOP_20Contract.ts +1 -1
package/build/_version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.2.
|
|
1
|
+
export declare const version = "1.2.7";
|
package/build/_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.2.
|
|
1
|
+
export const version = '1.2.7';
|
package/package.json
CHANGED
package/src/_version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.2.
|
|
1
|
+
export const version = '1.2.7';
|
|
@@ -12,7 +12,7 @@ export type Decimals = CallResult<{ decimals: number }>;
|
|
|
12
12
|
export type Transfer = CallResult<{ success: boolean }>;
|
|
13
13
|
export type TransferFrom = CallResult<{ success: boolean }>;
|
|
14
14
|
export type Approve = CallResult<{ success: boolean }>;
|
|
15
|
-
export type Allowance = CallResult<{
|
|
15
|
+
export type Allowance = CallResult<{ remaining: bigint }>;
|
|
16
16
|
export type Burn = CallResult<{ success: boolean }>;
|
|
17
17
|
export type Mint = CallResult<{ success: boolean }>;
|
|
18
18
|
export type Airdrop = CallResult<{ success: boolean }>;
|