@iotexproject/kit 0.0.28 → 0.0.29
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 +1 -11
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6987,18 +6987,8 @@ export interface Dapp {
|
|
|
6987
6987
|
declare class UseHub {
|
|
6988
6988
|
constructor();
|
|
6989
6989
|
userDashboard(): Promise<void>;
|
|
6990
|
-
assets(
|
|
6991
|
-
address: `0x${string}`;
|
|
6992
|
-
}): Promise<{
|
|
6993
|
-
tokens: any[];
|
|
6994
|
-
totalValueOrigin: any;
|
|
6995
|
-
totalValueFormat: string;
|
|
6996
|
-
error?: undefined;
|
|
6997
|
-
} | {
|
|
6990
|
+
assets(): Promise<any[] | {
|
|
6998
6991
|
error: unknown;
|
|
6999
|
-
tokens?: undefined;
|
|
7000
|
-
totalValueOrigin?: undefined;
|
|
7001
|
-
totalValueFormat?: undefined;
|
|
7002
6992
|
}>;
|
|
7003
6993
|
tokenBalance(args: {
|
|
7004
6994
|
address: `0x${string}`;
|