@iotexproject/kit 0.0.82 → 0.0.83
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 +27 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3487,7 +3487,7 @@ declare class GaugeEntity {
|
|
|
3487
3487
|
};
|
|
3488
3488
|
rewardsUSD: string;
|
|
3489
3489
|
}>;
|
|
3490
|
-
|
|
3490
|
+
dailyRewrads(account: `0x${string}`): Promise<{
|
|
3491
3491
|
rewards: {
|
|
3492
3492
|
value: string;
|
|
3493
3493
|
format: string;
|
|
@@ -3496,6 +3496,29 @@ declare class GaugeEntity {
|
|
|
3496
3496
|
isZero: boolean;
|
|
3497
3497
|
};
|
|
3498
3498
|
rewardsUSD: string;
|
|
3499
|
+
gaugeDailyRewards?: undefined;
|
|
3500
|
+
gaugeDailyRewardsUSD?: undefined;
|
|
3501
|
+
userDailyRewards?: undefined;
|
|
3502
|
+
userDailyRewardsUSD?: undefined;
|
|
3503
|
+
} | {
|
|
3504
|
+
gaugeDailyRewards: {
|
|
3505
|
+
value: string;
|
|
3506
|
+
format: string;
|
|
3507
|
+
originFormat: string;
|
|
3508
|
+
decimals: string;
|
|
3509
|
+
isZero: boolean;
|
|
3510
|
+
};
|
|
3511
|
+
gaugeDailyRewardsUSD: string;
|
|
3512
|
+
userDailyRewards: {
|
|
3513
|
+
value: string;
|
|
3514
|
+
format: string;
|
|
3515
|
+
originFormat: string;
|
|
3516
|
+
decimals: string;
|
|
3517
|
+
isZero: boolean;
|
|
3518
|
+
};
|
|
3519
|
+
userDailyRewardsUSD: string;
|
|
3520
|
+
rewards?: undefined;
|
|
3521
|
+
rewardsUSD?: undefined;
|
|
3499
3522
|
}>;
|
|
3500
3523
|
votes(account: `0x${string}`): Promise<{
|
|
3501
3524
|
votes: string;
|
|
@@ -4086,7 +4109,7 @@ declare class VerifyingProxyEntity {
|
|
|
4086
4109
|
verifier: () => Promise<any>;
|
|
4087
4110
|
deviceNFT: () => Promise<any>;
|
|
4088
4111
|
deviceGauge: GaugeEntity;
|
|
4089
|
-
|
|
4112
|
+
projectMetadata(): Promise<any>;
|
|
4090
4113
|
projectAppliedAmount(): Promise<string>;
|
|
4091
4114
|
projectActivedAmount(): Promise<string>;
|
|
4092
4115
|
ioIDStore(): Promise<"" | `0x${string}`>;
|
|
@@ -4116,6 +4139,7 @@ declare class IoID {
|
|
|
4116
4139
|
projectAppliedAmount: true;
|
|
4117
4140
|
projectName: true;
|
|
4118
4141
|
projectType: true;
|
|
4142
|
+
projectMetadata: true;
|
|
4119
4143
|
deviceNFT: true;
|
|
4120
4144
|
verifier: true;
|
|
4121
4145
|
deviceGauge: {
|
|
@@ -5399,7 +5423,7 @@ declare class MarshallDao {
|
|
|
5399
5423
|
rewards: false | [
|
|
5400
5424
|
`0x${string}`
|
|
5401
5425
|
];
|
|
5402
|
-
|
|
5426
|
+
dailyRewrads: false | [
|
|
5403
5427
|
`0x${string}`
|
|
5404
5428
|
];
|
|
5405
5429
|
gaugeCurrentRewards: true;
|