Last active
April 2, 2019 18:01
-
-
Save adrake33/d87d91b3da64cb75fd93501fea4a023e 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
| // Should add `outcome`, `price`, & `maker` to TradingProceedsClaimed | |
| export interface ProceedTradesRow { | |
| logIndex: number, // Block logIndex | |
| blockNumber: number, // Block number | |
| timestamp: number, // Block timestamp | |
| marketId: Address, // TradingProceedsClaimed.market | |
| outcome: number, // Share token's outcome | |
| price: BigNumberType, // Payout * tickSize * MarketCreated.minPrice | |
| amount: BigNumberType, // TradingProceedsClaimed.numShares | |
| type: "sell", | |
| maker: false, // OrderCreated.orderType | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment