@iotexproject/kit 0.0.26 → 0.0.27
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 +8 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6723,11 +6723,17 @@ declare class LSTStrategyEntity {
|
|
|
6723
6723
|
transferOwnership: (newOwner: `0x${string}`) => Promise<any>;
|
|
6724
6724
|
}
|
|
6725
6725
|
declare class MSP {
|
|
6726
|
-
mockBucket(): Promise<
|
|
6726
|
+
mockBucket(): Promise<{
|
|
6727
|
+
data: any;
|
|
6728
|
+
address: string;
|
|
6729
|
+
}>;
|
|
6727
6730
|
mockLST(args: {
|
|
6728
6731
|
lstTokenAddress: string;
|
|
6729
6732
|
account: `0x${string}`;
|
|
6730
|
-
}): Promise<
|
|
6733
|
+
}): Promise<{
|
|
6734
|
+
data: any;
|
|
6735
|
+
address: string;
|
|
6736
|
+
}>;
|
|
6731
6737
|
myBucketsAndLSTs(args: {
|
|
6732
6738
|
account: `0x${string}`;
|
|
6733
6739
|
}): Promise<{
|