Last active
April 2, 2019 19:45
-
-
Save adrake33/ac8f609ead31334336ef488510d14c05 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Should add initial reporter address to logging | |
export interface InitialReportersRow<BigNumberType> { | |
marketId: Address; // InitialReportSubmitted.market | |
reporter: Address; // InitialReportSubmitted.reporter | |
amountStaked: BigNumberType; // InitialReportSubmitted.amountStaked | |
initialReporter: Address; // Should be logged | |
redeemed: boolean; // Whether InitialReporterRedeemed has been logged | |
isDesignatedReporter: boolean; // InitialReportSubmitted.isDesignatedReporter | |
repBalance: BigNumberType; // InitialReportSubmitted.amountStaked or 0 (if claimed) | |
} | |
export interface UIInitialReporters<BigNumberType> { | |
[initialReporter: string]: InitialReportersRow<BigNumberType>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment