Skip to content

Instantly share code, notes, and snippets.

@adrake33
Created April 2, 2019 21:50
Show Gist options
  • Save adrake33/381f72db4463eea4e28f4bc842ec145f to your computer and use it in GitHub Desktop.
Save adrake33/381f72db4463eea4e28f4bc842ec145f to your computer and use it in GitHub Desktop.
// Should add logging for minPrice, maxPrice, numTicks, & outcome
interface ShareTokenBalances {
marketId: Address;
minPrice: BigNumber;
maxPrice: BigNumber;
numTicks: BigNumber;
owner: Address;
outcome: number;
balance: BigNumber | null;
}
export interface MarketBalances {
[market: string]: Array<string>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment