Skip to content

Commit

Permalink
feat(uniswapx-sdk): Export V3DutchOrder (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanhwu authored Oct 28, 2024
1 parent 7907e8c commit a8713a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdks/uniswapx-sdk/src/order/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export * from "./RelayOrder";
export * from "./types";
export * from "./validation";
export * from "./V2DutchOrder";
// TODO: To make V3 exports cleaner, export here but resolve ambiguous names vs V2
export * from "./V3DutchOrder";

export type UniswapXOrder =
| DutchOrder
Expand All @@ -21,4 +21,4 @@ export type UniswapXOrder =
| UnsignedPriorityOrder
| CosignedPriorityOrder;

export type Order = UniswapXOrder | RelayOrder;
export type Order = UniswapXOrder | RelayOrder;

0 comments on commit a8713a0

Please sign in to comment.