Last active
March 17, 2019 23:44
-
-
Save adrake33/f7e71594182020a585ccf71306b83e31 to your computer and use it in GitHub Desktop.
This file contains 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 log each update to the market's price history? | |
export interface TimestampedPriceAmount { | |
price: string; | |
amount: string; | |
timestamp: number; | |
} | |
export interface GetMarketPriceHistoryResults { | |
[outcome: number]: Array<TimestampedPriceAmount>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sounds good!