Skip to content

Commit 7e44536

Browse files
committed
fix: added total_rewards to epoch info
1 parent c37d36e commit 7e44536

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/api/type.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1077,16 +1077,22 @@ export interface DelegatorInfo {
10771077
export interface EpochInfo {
10781078
/**
10791079
* Total active stake in the epoch
1080-
* @type {number}
1080+
* @type {string}
10811081
* @memberof EpochInfo
10821082
*/
10831083
active_stake?: string | null;
10841084
/**
1085-
* Average reward in the epoch
1086-
* @type {number}
1085+
* Average block reward in the epoch
1086+
* @type {string}
10871087
* @memberof EpochInfo
10881088
*/
10891089
average_reward?: string | null;
1090+
/**
1091+
* Total rewards in the epoch
1092+
* @type {string}
1093+
* @memberof EpochInfo
1094+
*/
1095+
total_rewards?: string | null;
10901096
/**
10911097
* Total blocks in the epoch
10921098
* @type {number}

0 commit comments

Comments
 (0)