@iotexproject/kit 0.0.82 → 0.0.84
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 +13 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3497,6 +3497,16 @@ declare class GaugeEntity {
|
|
|
3497
3497
|
};
|
|
3498
3498
|
rewardsUSD: string;
|
|
3499
3499
|
}>;
|
|
3500
|
+
gaugeDailyRewards(): Promise<{
|
|
3501
|
+
rewards: {
|
|
3502
|
+
value: string;
|
|
3503
|
+
format: string;
|
|
3504
|
+
originFormat: string;
|
|
3505
|
+
decimals: string;
|
|
3506
|
+
isZero: boolean;
|
|
3507
|
+
};
|
|
3508
|
+
rewardsUSD: string;
|
|
3509
|
+
}>;
|
|
3500
3510
|
votes(account: `0x${string}`): Promise<{
|
|
3501
3511
|
votes: string;
|
|
3502
3512
|
percent: string;
|
|
@@ -4086,7 +4096,7 @@ declare class VerifyingProxyEntity {
|
|
|
4086
4096
|
verifier: () => Promise<any>;
|
|
4087
4097
|
deviceNFT: () => Promise<any>;
|
|
4088
4098
|
deviceGauge: GaugeEntity;
|
|
4089
|
-
|
|
4099
|
+
projectMetadata(): Promise<any>;
|
|
4090
4100
|
projectAppliedAmount(): Promise<string>;
|
|
4091
4101
|
projectActivedAmount(): Promise<string>;
|
|
4092
4102
|
ioIDStore(): Promise<"" | `0x${string}`>;
|
|
@@ -4116,6 +4126,7 @@ declare class IoID {
|
|
|
4116
4126
|
projectAppliedAmount: true;
|
|
4117
4127
|
projectName: true;
|
|
4118
4128
|
projectType: true;
|
|
4129
|
+
projectMetadata: true;
|
|
4119
4130
|
deviceNFT: true;
|
|
4120
4131
|
verifier: true;
|
|
4121
4132
|
deviceGauge: {
|
|
@@ -5402,6 +5413,7 @@ declare class MarshallDao {
|
|
|
5402
5413
|
userDailyRewards: false | [
|
|
5403
5414
|
`0x${string}`
|
|
5404
5415
|
];
|
|
5416
|
+
gaugeDailyRewards: true;
|
|
5405
5417
|
gaugeCurrentRewards: true;
|
|
5406
5418
|
balanceOf: false | [
|
|
5407
5419
|
`0x${string}`
|