Last active
March 15, 2019 19:20
-
-
Save adrake33/f6071ba04dd6095d450bdb4d9005a079 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
// May not need any additional logging? | |
export interface MarketPriceCandlestick { | |
startTimestamp: number; | |
start: string; | |
end: string; | |
min: string; | |
max: string; | |
volume: string; | |
tokenVolume: string; | |
} | |
export interface GetMarketPriceCandlesticksResults { | |
[outcome: number]: Array<MarketPriceCandlestick>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment