From 95f8a9157ab7acedc444e713ad3623feb7f337f2 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Fri, 13 Sep 2024 15:27:08 +0300 Subject: [PATCH] feat: add fills to active orders response (#38) --- src/api/orders/types.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/api/orders/types.ts b/src/api/orders/types.ts index 6329fbc..5294bf4 100644 --- a/src/api/orders/types.ts +++ b/src/api/orders/types.ts @@ -14,6 +14,10 @@ export type ActiveOrdersRequestParams = PaginationParams & { dstChainId?: SupportedChain } +export type FillInfo = { + txHash: string +} + export type ActiveOrder = { quoteId: string orderHash: string @@ -30,6 +34,7 @@ export type ActiveOrder = { dstChainId: SupportedChain isMakerContract: boolean secretHashes?: string[] + fills: FillInfo[] } export type ActiveOrdersResponse = PaginationOutput