Skip to content

Instantly share code, notes, and snippets.

@adrake33
Created April 2, 2019 17:52
Show Gist options
  • Save adrake33/690ceff51a8e3d35d698bd515405e7db to your computer and use it in GitHub Desktop.
Save adrake33/690ceff51a8e3d35d698bd515405e7db to your computer and use it in GitHub Desktop.
// May need to log some of these, such as details, fee, marketDescription, outcome, outcome description, price, quantity, & total
export interface UIAccountTransactionHistoryRow<BigNumberType> {
action: Action;
coin: string;
details: string;
fee: BigNumberType;
marketDescription: string;
outcome: number;
outcomeDescription: string;
price: BigNumberType;
quantity: BigNumberType;
timestamp: number;
total: BigNumberType;
transactionHash: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment