From ba9a00af76e05e7f1a5599d5cda5328489a6b3d4 Mon Sep 17 00:00:00 2001 From: Deividas Petraitis Date: Thu, 14 Nov 2024 12:24:41 +0200 Subject: [PATCH] BE-648 | Test pools: include 0 liquidity pools 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."""