From b078288395660995ed82dae4efbfb98d653c7b28 Mon Sep 17 00:00:00 2001 From: Brendan Ryan Date: Tue, 31 Mar 2026 11:45:11 -0700 Subject: [PATCH] fix: update orderbook queries to use pathUSD instead of AlphaUSD AlphaUSD (0x20c...0001) has no orderbook activity, causing all queries to return empty results. Switch to pathUSD (0x20c...0000) which has active liquidity. --- .../stablecoin-dex/view-the-orderbook.mdx | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/pages/guide/stablecoin-dex/view-the-orderbook.mdx b/src/pages/guide/stablecoin-dex/view-the-orderbook.mdx index 1e924db7..3666a078 100644 --- a/src/pages/guide/stablecoin-dex/view-the-orderbook.mdx +++ b/src/pages/guide/stablecoin-dex/view-the-orderbook.mdx @@ -21,15 +21,15 @@ In this guide, we use [Index Supply](https://www.indexsupply.net) as our indexin Query the best bid and ask prices to calculate the current spread for a token pair. -Find the highest bid prices (buyers) for AlphaUSD. This query filters out fully filled and cancelled orders, groups by price level (tick), and shows the top 5 bid prices with their total liquidity. +Find the highest bid prices (buyers) for PathUSD. This query filters out fully filled and cancelled orders, groups by price level (tick), and shows the top 5 bid prices with their total liquidity. -Find the lowest ask prices (sellers) for AlphaUSD. The spread is the difference between the highest bid and lowest ask price. +Find the lowest ask prices (sellers) for PathUSD. The spread is the difference between the highest bid and lowest ask price.