When an asset’s minimum tick size is set to 0.1c, trying to create a LMT order throws an error:
invalid price (0.001), min: 0.01 - max: 0.99
const order = await client.createOrder({ tokenID: 'xxx', price: 0.001, side: 'SELL', size: 1000 });
const result = await client.postOrders([
{ order, orderType: OrderType.GTD }
])