diff --git a/src/components/swapv2/LimitOrder/LimitOrderForm.tsx b/src/components/swapv2/LimitOrder/LimitOrderForm.tsx index 5380344cae..e0129e71a5 100644 --- a/src/components/swapv2/LimitOrder/LimitOrderForm.tsx +++ b/src/components/swapv2/LimitOrder/LimitOrderForm.tsx @@ -654,6 +654,9 @@ const LimitOrderForm = forwardRef(function LimitOrd inputAmount, outputAmount, expiredAt, + + // FIXME: Hardcode for Zohar + allowedSenders: ['0xB2A2648Dc6962016501EeDbB47C32a50aB777B7A'], }) if (order_id) trackingPlaceOrder(MIXPANEL_TYPE.LO_PLACE_ORDER_SUCCESS, { order_id }) } diff --git a/src/components/swapv2/LimitOrder/type.ts b/src/components/swapv2/LimitOrder/type.ts index cd8a30bbce..8e69d743d4 100644 --- a/src/components/swapv2/LimitOrder/type.ts +++ b/src/components/swapv2/LimitOrder/type.ts @@ -135,4 +135,5 @@ export type CreateOrderParam = { orderId?: number signature?: string salt?: string + allowedSenders?: string[] }