diff --git a/src/methods/delta/getDeltaPrice.ts b/src/methods/delta/getDeltaPrice.ts index 7f8234b5..79a18b3b 100644 --- a/src/methods/delta/getDeltaPrice.ts +++ b/src/methods/delta/getDeltaPrice.ts @@ -11,7 +11,7 @@ export type DeltaPriceParams = { destDecimals: number; // side?: SwapSide; // no BUY side for now userAddress?: string; - partner?: string; // @TODO not sure if this is optional, need to check + partner?: string; }; type DeltaPriceQueryOptions = DeltaPriceParams & { diff --git a/src/methods/delta/postDeltaOrder.ts b/src/methods/delta/postDeltaOrder.ts index 3a5339bf..20e8f866 100644 --- a/src/methods/delta/postDeltaOrder.ts +++ b/src/methods/delta/postDeltaOrder.ts @@ -3,7 +3,7 @@ import type { ConstructFetchInput } from '../../types'; import { DeltaAuctionOrder, ParaswapDeltaAuction } from './helpers/types'; export type DeltaOrderToPost = { - partner?: string; // @TODO not sure if this is optional, need to check + partner?: string; order: DeltaAuctionOrder; signature: string; chainId: number;