diff --git a/src/app/components/order_input/LimitOrderInput.tsx b/src/app/components/order_input/LimitOrderInput.tsx index 8133de0d..da8a95a3 100644 --- a/src/app/components/order_input/LimitOrderInput.tsx +++ b/src/app/components/order_input/LimitOrderInput.tsx @@ -18,9 +18,9 @@ import { AiOutlineInfoCircle } from "react-icons/ai"; import { BottomRightErrorLabel } from "components/BottomRightErrorLabel"; const POST_ONLY_TOOLTIP = - "If your price is very close to the current market price, your limit order might fill immediately, " + - "making you pay taker fees. This option prevents your order from being executed immediately, " + - "guarantees that your order will make it to the order book and you will earn the liquidity provider fees."; + "Select 'POST ONLY' to ensure your order is added to the order book without matching existing orders. " + + "If your order can be partially or completely executed immediately, it will not be created. " + + "This option removes trading fees completely and ensures you receive the maker rebate."; function NonTargetToken() { const { token2, validationToken2, side } = useAppSelector( @@ -246,7 +246,7 @@ export function LimitOrderInput() { POST ONLY
diff --git a/src/app/redux/orderInputSlice.ts b/src/app/redux/orderInputSlice.ts index f48de435..76dc4862 100644 --- a/src/app/redux/orderInputSlice.ts +++ b/src/app/redux/orderInputSlice.ts @@ -89,7 +89,7 @@ export const initialState: OrderInputState = { token2: initialTokenInput, validationToken2: initialValidationResult, tab: OrderTab.MARKET, - postOnly: true, + postOnly: false, side: adex.OrderSide.BUY, price: 0, slippage: 0.01,