@iotexproject/kit 0.0.45 → 0.0.46
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 +33 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7114,6 +7114,39 @@ declare class UseHub {
|
|
|
7114
7114
|
}
|
|
7115
7115
|
];
|
|
7116
7116
|
}>;
|
|
7117
|
+
rewardSummary(args: {
|
|
7118
|
+
address: string;
|
|
7119
|
+
start_date?: string;
|
|
7120
|
+
end_date?: string;
|
|
7121
|
+
}): Promise<{
|
|
7122
|
+
RewardRecord_aggregate: {
|
|
7123
|
+
aggregate: {
|
|
7124
|
+
sum: {
|
|
7125
|
+
total_reward_delta: number;
|
|
7126
|
+
burndrop_reward_delta: number;
|
|
7127
|
+
hermes_reward_delta: number;
|
|
7128
|
+
apy: number;
|
|
7129
|
+
};
|
|
7130
|
+
};
|
|
7131
|
+
};
|
|
7132
|
+
KV: [
|
|
7133
|
+
{
|
|
7134
|
+
value: string;
|
|
7135
|
+
}
|
|
7136
|
+
];
|
|
7137
|
+
}>;
|
|
7138
|
+
rewardDistribute(args: {
|
|
7139
|
+
address: string;
|
|
7140
|
+
start_date?: string;
|
|
7141
|
+
end_date?: string;
|
|
7142
|
+
}): Promise<{
|
|
7143
|
+
RewardRecord: {
|
|
7144
|
+
total_reward_delta: number;
|
|
7145
|
+
burndrop_reward_delta: number;
|
|
7146
|
+
hermes_reward_delta: number;
|
|
7147
|
+
date: string;
|
|
7148
|
+
}[];
|
|
7149
|
+
}>;
|
|
7117
7150
|
stakingReward(args: {
|
|
7118
7151
|
address: string;
|
|
7119
7152
|
start_date?: string;
|