Skip to content

Commit c6c74eb

Browse files
committed
feat: $10 mainnet order size limits
This modifies the order size limits for all currencies to equal approximately $10 USD for use on mainnet. Closes #1230.
1 parent 8f74e5e commit c6c74eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/constants/limits.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/** Order size limits denominated in satoshis. */
22
const limits: { [currency: string]: number } = {
3-
BTC : 42949,
4-
LTC : 50000,
5-
WETH : 2000000,
6-
DAI : 500000000,
3+
BTC: 100000,
4+
LTC: 15000000,
5+
WETH: 5000000,
6+
DAI: 1000000000,
77
};
88

99
export default limits;

0 commit comments

Comments
 (0)