Skip to content

Instantly share code, notes, and snippets.

@adrake33
Last active April 2, 2019 18:08
Show Gist options
  • Select an option

  • Save adrake33/409cf171da96eff70d638a1526c00428 to your computer and use it in GitHub Desktop.

Select an option

Save adrake33/409cf171da96eff70d638a1526c00428 to your computer and use it in GitHub Desktop.
// Somewhat similar to getDisputeInfo. Will probably need to add logging for most of these?
export interface DisputeToken<BigNumberType> {
disputeToken: Address,
marketId: Address,
payout0: number,
payout1: number,
payout2: number,
payout3: number,
payout4: number,
payout5: number,
payout6: number,
payout7: number,
isInvalid: boolean,
balance: BigNumberType,
winningToken: null,
tentativeWinning: boolean,
claimed: boolean,
reportingState: string,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment