@iotexproject/kit 0.1.84 → 0.1.85
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 +5 -15
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4832,30 +4832,20 @@ 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
4835
|
depolyFixedRewardPoolV2(args: {
|
|
4848
4836
|
nft: `0x${string}`;
|
|
4849
|
-
|
|
4837
|
+
startTimeStamp: string;
|
|
4850
4838
|
rewardPerBlock: string;
|
|
4851
|
-
|
|
4839
|
+
durationInDays: string;
|
|
4852
4840
|
}, ctx?: ConfigContext): Promise<{
|
|
4853
|
-
data: string
|
|
4841
|
+
data: `0x${string}`;
|
|
4842
|
+
address: `0x${string}`;
|
|
4854
4843
|
chainId: string;
|
|
4855
4844
|
error?: undefined;
|
|
4856
4845
|
} | {
|
|
4857
4846
|
error: unknown;
|
|
4858
4847
|
data?: undefined;
|
|
4848
|
+
address?: undefined;
|
|
4859
4849
|
chainId?: undefined;
|
|
4860
4850
|
}>;
|
|
4861
4851
|
}
|