Last active
April 2, 2019 20:14
-
-
Save adrake33/6b5b2b3c8f3de871f8d36aad95882b69 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
// Might need to add logs for the total fields? | |
export interface UIFeeWindowCurrent<BigNumberType> { | |
endTime: number; // DisputeWindowCreated.endTime | |
feeWindow: Address|null; // DisputeWindowCreated.disputeWindow | |
feeWindowId: number; // DisputeWindowCreated.id | |
startTime: number; // DisputeWindowCreated.startTime | |
universe: Address; // DisputeWindowCreated.universe | |
totalStake?: BigNumberType; | |
feeWindowEthFees?: BigNumberType; | |
feeWindowRepStaked?: BigNumberType; | |
feeWindowFeeTokens?: BigNumberType; | |
feeWindowParticipationTokens?: BigNumberType; | |
participantContributions?: BigNumberType; | |
participantContributionsCrowdsourcer?: BigNumberType; | |
participantContributionsInitialReport?: BigNumberType; | |
participantParticipationTokens?: BigNumberType; | |
participationTokens?: BigNumberType; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment