Market min price tick size calculation
Spot market
import { toChainFormat } from "@injectivelabs/utils";
const value = toChainFormat(value, quoteDecimals - baseDecimals).toFixed();import { toHumanReadable } from "@injectivelabs/utils";
const value = toHumanReadable(value, quoteDecimals - baseDecimals).toFixed();Derivative market
import { toChainFormat } from "@injectivelabs/utils";
const value = toChainFormat(value, -quoteDecimals).toFixed();Last updated
