dexStatus
Read whether the DEX is currently paused.
Signature
function dexStatus(
client: Client,
): Promise<boolean>Example
import { createPublicClient, createTransport, testnet } from "@left-curve/sdk"
const client = createPublicClient({ chain: testnet, transport: createTransport() })
const paused = await client.dexStatus()Returns
boolean — true if the DEX is paused.