From 0c856cabd54f6d84c789327f5738d40c80ce7813 Mon Sep 17 00:00:00 2001 From: Deividas Petraitis Date: Thu, 21 Nov 2024 16:55:42 +0200 Subject: [PATCH] BE-648 | Test pools: include 0 liquidity pools (#562) Adds URL query param to include 0 liquidity pools in the response --- tests/data_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/data_service.py b/tests/data_service.py index 0b6f0e8a5..3958765e8 100644 --- a/tests/data_service.py +++ b/tests/data_service.py @@ -6,7 +6,7 @@ # Endpoint URLs NUMIA_API_URL = 'https://data.stage.osmosis.zone' TOKENS_ENDPOINT = '/tokens/v2/all' -POOLS_ENDPOINT = '/stream/pool/v1/all' +POOLS_ENDPOINT = '/stream/pool/v1/all?min_liquidity=0' def fetch_tokens(): """Fetches all tokens from the specified endpoint and returns them."""