We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c37d36e commit 7e44536Copy full SHA for 7e44536
src/api/type.ts
@@ -1077,16 +1077,22 @@ export interface DelegatorInfo {
1077
export interface EpochInfo {
1078
/**
1079
* Total active stake in the epoch
1080
- * @type {number}
+ * @type {string}
1081
* @memberof EpochInfo
1082
*/
1083
active_stake?: string | null;
1084
1085
- * Average reward in the epoch
1086
+ * Average block reward in the epoch
1087
1088
1089
average_reward?: string | null;
1090
+ /**
1091
+ * Total rewards in the epoch
1092
1093
+ * @memberof EpochInfo
1094
+ */
1095
+ total_rewards?: string | null;
1096
1097
* Total blocks in the epoch
1098
* @type {number}
0 commit comments