Skip to content

Instantly share code, notes, and snippets.

@adrake33
Created March 15, 2019 18:14
Show Gist options
  • Save adrake33/10c16da8ac291ef392cc6844a741b888 to your computer and use it in GitHub Desktop.
Save adrake33/10c16da8ac291ef392cc6844a741b888 to your computer and use it in GitHub Desktop.
// Should log when market creator has unclaimed fees & when they are claimed?
export interface MarketCreatorFee {
marketId: string;
unclaimedFee: string;
}
export interface GetMarketCreatorFeesResults {
[index: number]: Array<MarketCreatorFee>;
}
@adrake33
Copy link
Author

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment