@iotexproject/kit 0.1.80 → 0.1.81
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/dist/index.d.ts +13 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8572,7 +8572,7 @@ declare class LiquidityMiningV3 {
|
|
|
8572
8572
|
key: MimoV3MiningPoolKey;
|
|
8573
8573
|
v3PositionIds: number[];
|
|
8574
8574
|
account: `0x${string}`;
|
|
8575
|
-
needStakeToken:
|
|
8575
|
+
needStakeToken: any;
|
|
8576
8576
|
}, ctx?: ConfigContext): Promise<{
|
|
8577
8577
|
data: any;
|
|
8578
8578
|
address: string;
|
|
@@ -9049,6 +9049,17 @@ declare class Apis extends BaseDBModule {
|
|
|
9049
9049
|
total: number;
|
|
9050
9050
|
}>;
|
|
9051
9051
|
}
|
|
9052
|
+
declare class Zkpass extends BaseDBModule {
|
|
9053
|
+
verify(params: any, ctx?: ConfigContext): Promise<{
|
|
9054
|
+
status: boolean;
|
|
9055
|
+
msg: string;
|
|
9056
|
+
data: any;
|
|
9057
|
+
} | {
|
|
9058
|
+
status: boolean;
|
|
9059
|
+
msg: any;
|
|
9060
|
+
data: null;
|
|
9061
|
+
}>;
|
|
9062
|
+
}
|
|
9052
9063
|
declare const modules$1: {
|
|
9053
9064
|
account: Account;
|
|
9054
9065
|
analyzer: Analyzer;
|
|
@@ -9064,6 +9075,7 @@ declare const modules$1: {
|
|
|
9064
9075
|
depinscan: DepinScan;
|
|
9065
9076
|
verification: Verification;
|
|
9066
9077
|
apis: Apis;
|
|
9078
|
+
zkpass: Zkpass;
|
|
9067
9079
|
};
|
|
9068
9080
|
export type DBModuleType = typeof modules$1;
|
|
9069
9081
|
export interface ConfigOptions {
|