Last active
April 2, 2019 18:08
-
-
Save adrake33/409cf171da96eff70d638a1526c00428 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
| // 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