shrimpy-node
Version:
Client for the Shrimpy API
19 lines (17 loc) • 496 B
text/typescript
import { IExchangeApiErrorDto } from './iexchange-api-error-dto';
export interface ITradeDto {
id: string;
fromSymbol: string;
toSymbol: string;
amount: string;
status: string;
success: boolean;
errorCode: number;
errorMessage: string;
exchangeApiErrors: IExchangeApiErrorDto[];
maxSpreadPercent: string;
maxSlippagePercent: string;
smartRouting: boolean;
triggeredMaxSpread: boolean;
triggeredMaxSlippage: boolean;
}