Skip to content

Instantly share code, notes, and snippets.

@adrake33
Last active April 2, 2019 20:14
Show Gist options
  • Save adrake33/6b5b2b3c8f3de871f8d36aad95882b69 to your computer and use it in GitHub Desktop.
Save adrake33/6b5b2b3c8f3de871f8d36aad95882b69 to your computer and use it in GitHub Desktop.
// 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