fix: populate config endpoints with chain and token data #33

Merged
shoko merged 2 commits from fix/issue-27 into main 2026-04-09 08:23:44 +02:00
Showing only changes of commit 50af4e0722 - Show all commits

View File

@@ -15,5 +15,5 @@ def get_chains():
async def get_tokens():
settings = get_settings()
client = AveCloudClient(api_key=settings.AVE_API_KEY, plan=settings.AVE_API_PLAN)
tokens = await client.get_tokens(chain="bsc", limit=100)
tokens = await client.get_tokens(chain="bsc", limit=20)
return {"tokens": tokens}