Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Velenir committed Nov 16, 2024
1 parent eb39af5 commit 9671e2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/methods/delta/getDeltaPrice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 & {
Expand Down
2 changes: 1 addition & 1 deletion src/methods/delta/postDeltaOrder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9671e2a

Please sign in to comment.