@iotexproject/kit 0.1.82 → 0.1.84
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 +28 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4832,6 +4832,32 @@ declare class MarshallDao {
|
|
|
4832
4832
|
gaugeAddress: `0x${string}`;
|
|
4833
4833
|
chainId: string;
|
|
4834
4834
|
} | null>;
|
|
4835
|
+
depolyOwnerdNFT(args: {
|
|
4836
|
+
account: `0x${string}`;
|
|
4837
|
+
deviceNFT: `0x${string}`;
|
|
4838
|
+
}, ctx?: ConfigContext): Promise<{
|
|
4839
|
+
data: string;
|
|
4840
|
+
chainId: string;
|
|
4841
|
+
error?: undefined;
|
|
4842
|
+
} | {
|
|
4843
|
+
error: unknown;
|
|
4844
|
+
data?: undefined;
|
|
4845
|
+
chainId?: undefined;
|
|
4846
|
+
}>;
|
|
4847
|
+
depolyFixedRewardPoolV2(args: {
|
|
4848
|
+
nft: `0x${string}`;
|
|
4849
|
+
startBlock: string;
|
|
4850
|
+
rewardPerBlock: string;
|
|
4851
|
+
totalBlocks: string;
|
|
4852
|
+
}, ctx?: ConfigContext): Promise<{
|
|
4853
|
+
data: string;
|
|
4854
|
+
chainId: string;
|
|
4855
|
+
error?: undefined;
|
|
4856
|
+
} | {
|
|
4857
|
+
error: unknown;
|
|
4858
|
+
data?: undefined;
|
|
4859
|
+
chainId?: undefined;
|
|
4860
|
+
}>;
|
|
4835
4861
|
}
|
|
4836
4862
|
declare class UniswapV2LPEntity {
|
|
4837
4863
|
address: `0x${string}`;
|
|
@@ -6909,7 +6935,7 @@ declare class Staking {
|
|
|
6909
6935
|
bucketIndex: string;
|
|
6910
6936
|
endorse: boolean;
|
|
6911
6937
|
}, ctx?: ConfigContext): Promise<any>;
|
|
6912
|
-
nftV2StakingConfig(args
|
|
6938
|
+
nftV2StakingConfig(args?: any, ctx?: ConfigContext): Promise<{
|
|
6913
6939
|
min_amount: any;
|
|
6914
6940
|
max_duration: any;
|
|
6915
6941
|
one_day: any;
|
|
@@ -6950,7 +6976,7 @@ declare class Staking {
|
|
|
6950
6976
|
receiverAddress: `0x${string}`;
|
|
6951
6977
|
version: "v1" | "v2";
|
|
6952
6978
|
}, ctx?: ConfigContext): Promise<any>;
|
|
6953
|
-
delegate_list(
|
|
6979
|
+
delegate_list(args?: {
|
|
6954
6980
|
isWhole?: boolean;
|
|
6955
6981
|
}, ctx?: ConfigContext): Promise<{
|
|
6956
6982
|
data: any;
|