Utilities
Format prices
import { formatPrice } from "@nktkas/hyperliquid/utils";
formatPrice("97123.456789", 0); // "97123"
formatPrice("1.23456789", 5); // "1.2"
formatPrice("0.0000123456789", 0, "spot"); // "0.00001234"Format sizes
import { formatSize } from "@nktkas/hyperliquid/utils";
formatSize("1.23456789", 5); // "1.23456"
formatSize("0.123456789", 2); // "0.12"
formatSize("100", 0); // "100"Resolve symbols
Asset IDs
Size decimals
Spot pair IDs
Refresh data
Builder DEX support
Format and place an order
Last updated