@iotexproject/kit 0.0.37 → 0.0.38

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +6 -8
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -3137,18 +3137,18 @@ declare class GaugeEntity {
3137
3137
  }
3138
3138
  ];
3139
3139
  gaugeType(): Promise<"ERC20" | "ERC721" | "LPToken">;
3140
- stakingTokenInfo1(account?: `0x${string}`): Promise<import("@dappworks/kit/aiem").QueryReturnType<ERC20Entity, {
3140
+ stakingTokenInfo(account?: `0x${string}`): Promise<import("@dappworks/kit/aiem").QueryReturnType<ERC20Entity, {
3141
3141
  name: true;
3142
3142
  symbol: true;
3143
3143
  tokenUrl: true;
3144
- balanceOf: false | [
3144
+ balanceOf: true | [
3145
3145
  `0x${string}`
3146
3146
  ];
3147
3147
  }> | import("@dappworks/kit/aiem").QueryReturnType<ERC721Entity, {
3148
3148
  name: true;
3149
3149
  symbol: true;
3150
3150
  tokenUrl: true;
3151
- balanceOf: false | [
3151
+ balanceOf: true | [
3152
3152
  `0x${string}`
3153
3153
  ];
3154
3154
  }> | import("@dappworks/kit/aiem").QueryReturnType<LPTokenEntity, {
@@ -3156,11 +3156,9 @@ declare class GaugeEntity {
3156
3156
  symbol: true;
3157
3157
  tokenUrl: true;
3158
3158
  type: true;
3159
- balanceOf: false | [
3159
+ balanceOf: true | [
3160
3160
  `0x${string}`
3161
3161
  ];
3162
- token0: true;
3163
- token1: true;
3164
3162
  }> | null | undefined>;
3165
3163
  apr(): Promise<string | 0>;
3166
3164
  rewards(account: `0x${string}`): Promise<{
@@ -4454,7 +4452,7 @@ declare class MarshallDao {
4454
4452
  ];
4455
4453
  totalVote: true;
4456
4454
  votingApr: true;
4457
- stakingTokenInfo1: true | [
4455
+ stakingTokenInfo: false | [
4458
4456
  `0x${string}`
4459
4457
  ];
4460
4458
  Incentive: {
@@ -7080,6 +7078,7 @@ declare class UseHub {
7080
7078
  }>;
7081
7079
  userDashboard(): Promise<{
7082
7080
  blogs: import("@tryghost/content-api").PostsOrPages;
7081
+ marketData: IoTexMarketData;
7083
7082
  }>;
7084
7083
  assets(): Promise<any[] | {
7085
7084
  error: unknown;
@@ -7099,7 +7098,6 @@ declare class UseHub {
7099
7098
  explore(): Promise<{
7100
7099
  dappList: Dapp[];
7101
7100
  dappCategory: DappCategory[];
7102
- marketData: IoTexMarketData;
7103
7101
  } | {
7104
7102
  error: any;
7105
7103
  }>;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@iotexproject/kit",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "v0.0.37",
5
+ "version": "v0.0.38",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {