@iotexproject/kit 0.1.79 → 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 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8572,6 +8572,7 @@ declare class LiquidityMiningV3 {
|
|
|
8572
8572
|
key: MimoV3MiningPoolKey;
|
|
8573
8573
|
v3PositionIds: number[];
|
|
8574
8574
|
account: `0x${string}`;
|
|
8575
|
+
needStakeToken: any;
|
|
8575
8576
|
}, ctx?: ConfigContext): Promise<{
|
|
8576
8577
|
data: any;
|
|
8577
8578
|
address: string;
|
|
@@ -9048,6 +9049,17 @@ declare class Apis extends BaseDBModule {
|
|
|
9048
9049
|
total: number;
|
|
9049
9050
|
}>;
|
|
9050
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
|
+
}
|
|
9051
9063
|
declare const modules$1: {
|
|
9052
9064
|
account: Account;
|
|
9053
9065
|
analyzer: Analyzer;
|
|
@@ -9063,6 +9075,7 @@ declare const modules$1: {
|
|
|
9063
9075
|
depinscan: DepinScan;
|
|
9064
9076
|
verification: Verification;
|
|
9065
9077
|
apis: Apis;
|
|
9078
|
+
zkpass: Zkpass;
|
|
9066
9079
|
};
|
|
9067
9080
|
export type DBModuleType = typeof modules$1;
|
|
9068
9081
|
export interface ConfigOptions {
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var U=({url:j="http://localhost:9527",ctx:z}={})=>new Proxy({},{get(L,B,G){return new Proxy({},{get(J,C){return async(b)=>{for(let K in b){if(typeof b[K]==="object")b[K]=JSON.stringify(b[K],(Q,N)=>typeof N==="bigint"?N.toString():N);if(b[K]==null)delete b[K]}
|
|
1
|
+
var U=({url:j="http://localhost:9527",ctx:z}={})=>new Proxy({},{get(L,B,G){return new Proxy({},{get(J,C){return async(b)=>{for(let K in b){if(typeof b[K]==="object")b[K]=JSON.stringify(b[K],(Q,N)=>typeof N==="bigint"?N.toString():N);if(b[K]==null)delete b[K]}const H=`${j}/${String(B)}/${String(C)}?${new URLSearchParams(b).toString()}`;let D;if(z)D=await fetch(H,{headers:{...z}});else D=await fetch(H);return D.json()}}})}}),S=async({args:j={},prop:z,method:L,url:B,fetchRequestInit:G})=>{if(!G?.method||G?.method==="GET"){for(let b in j){if(typeof j[b]==="object")j[b]=JSON.stringify(j[b],(H,D)=>typeof D==="bigint"?D.toString():D);if(j[b]==null)delete j[b]}const J=`${B}/${String(z)}/${String(L)}?${new URLSearchParams(j).toString()}`;return(await fetch(J,{...G})).json()}if(G?.method==="POST"){const J=`${B}/${String(z)}/${String(L)}`;return(await fetch(J,{...G,body:JSON.stringify(j)})).json()}},V=({url:j="http://localhost:9527",fetchRequestInit:z})=>new Proxy({},{get(L,B,G){return new Proxy({},{get(J,C){return async(b)=>{return S({args:b,prop:B,method:C,url:j,fetchRequestInit:z})}}})}}),W=({url:j="http://localhost:9527",fetchRequestInit:z})=>new Proxy({},{get(L,B,G){return new Proxy({},{get(J,C){return async(b)=>{return S({args:b,prop:B,method:C,url:j,fetchRequestInit:z})}}})}}),X=({url:j="http://localhost:9527",fetchRequestInit:z})=>new Proxy({},{get(L,B,G){return new Proxy({},{get(J,C){return async(b)=>{const H=`${j}/${String(B)}/${String(C)}?${new URLSearchParams(b).toString()}`;return(await fetch(H,{method:"GET",...z})).json()}}})}}),Y=({url:j="http://localhost:9527",ctx:z}={})=>new Proxy({},{get(L,B,G){return new Proxy({},{get(J,C){return async(b)=>{let H=!1;for(let N in b){if(typeof b[N]==="object")H=!0;if(b[N]==null)delete b[N]}let D,K,Q={};if(H)D=`${j}/${String(B)}/${String(C)}`;else D=`${j}/${String(B)}/${String(C)}?${new URLSearchParams(b).toString()}`;if(z)Q.headers={...z};if(H)Q.method="POST",Q.body=JSON.stringify(b);return K=await fetch(D,Q),K.json()}}})}});export{X as createIotexscanClient,Y as createIoidClient,W as createClientWithIoPayServer,V as createClientWithDBServer,U as createClient};
|