Skip to content

Instantly share code, notes, and snippets.

@adrake33
Last active March 15, 2019 19:20
Show Gist options
  • Save adrake33/f6071ba04dd6095d450bdb4d9005a079 to your computer and use it in GitHub Desktop.
Save adrake33/f6071ba04dd6095d450bdb4d9005a079 to your computer and use it in GitHub Desktop.
// 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