From 3baa74174dd6a150cd921dd51be110a2a33f0a9d Mon Sep 17 00:00:00 2001 From: tim Date: Tue, 11 Mar 2025 10:51:05 -0400 Subject: [PATCH] minAmount 0.1% --- src/blockchain/orderlib.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blockchain/orderlib.js b/src/blockchain/orderlib.js index 9a1c6cc..3feb0cb 100644 --- a/src/blockchain/orderlib.js +++ b/src/blockchain/orderlib.js @@ -31,7 +31,7 @@ export function newOrder(tokenIn, tokenOut, exchange, fee, amount, amountIsInput if (!tranches) tranches = [newTranche({marketOrder: true})] // todo this is just a swap: issue warning? if( minFillAmount === null ) - minFillAmount = amount / 100n // default to min trade size of 1% + minFillAmount = amount / 1000n // default to min trade size of 0.1% return { tokenIn, tokenOut, route:{exchange, fee}, amount, minFillAmount, amountIsInput,