@iotexproject/kit 0.0.79 → 0.0.80
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 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3399,6 +3399,13 @@ declare class GaugeEntity {
|
|
|
3399
3399
|
isZero: boolean;
|
|
3400
3400
|
} | undefined>;
|
|
3401
3401
|
gaugeType(): Promise<"ERC20" | "ERC721" | "LPToken">;
|
|
3402
|
+
projectInfo(): Promise<{
|
|
3403
|
+
id: string;
|
|
3404
|
+
deviceNFT: string;
|
|
3405
|
+
name: string;
|
|
3406
|
+
totalIoID: string;
|
|
3407
|
+
totalAppliedIoID: string;
|
|
3408
|
+
} | null>;
|
|
3402
3409
|
stakingTokenInfo(account?: `0x${string}`): Promise<import("@dappworks/kit/aiem").QueryReturnType<ERC20Entity, {
|
|
3403
3410
|
name: true;
|
|
3404
3411
|
symbol: true;
|
|
@@ -5358,6 +5365,7 @@ declare class MarshallDao {
|
|
|
5358
5365
|
chainId: true;
|
|
5359
5366
|
gaugeType: true;
|
|
5360
5367
|
apr: true;
|
|
5368
|
+
projectInfo: true;
|
|
5361
5369
|
rewards: false | [
|
|
5362
5370
|
`0x${string}`
|
|
5363
5371
|
];
|