LogoLogo
HuggingFace Community$LUMOXTelegram
  • Introduction
  • Roadmap
  • Partnerships and Listings
  • LumoKit: Solana AI Toolkit Framwork
    • Introduction to LumoKit
    • Installation Guide
      • Pre-requisites
      • Environment Configuration
      • Local Installation
  • How to Add Tools
  • Tools
    • Wallet Portfolio tool
    • Token Identification Tool
    • Rugcheck Token Information Tool
    • Fluxbeam Token Price
    • BirdEye Token Trending
    • Birdeye All Time Trades
    • CoinMarketCap Crypto News
    • Crypto.news Memecoin News
    • GeckoTerminal Trending Pump.Fun Tool
    • CoinGecko Global Crypto Data Tool
    • CoinGecko Trending Crypto Tool
    • CoinGecko Exchange Rates Tool
    • CoinGecko Coin Data Tool
    • CoinMarketCap Trending Coins Tool
    • DexScreener Top Boosts Tool
    • DexScreener Token Information
    • Jupiter Token Price
    • Jupiter Token Metadata Tool
    • Solana Send SOL Tool
    • Solana Send SPL Tokens Tool
    • Solana Burn Tokens Tool
    • Jupiter Swap (Buy/Sell) Tool
    • Pump.Fun Launch Coin Tool
  • Lumo-8B-Instruct Model
    • Model Overview
    • Capabilities and Limitations
    • Use Cases
  • Lumo Dataset
    • About Lumo-Iris
    • About Lumo-8B
    • Dataset Preparation
    • Training Metrics
  • Using The Model
    • HuggingFace Hub
    • How to Inference
  • Lumo Community
    • How to Contribute
    • Report Bugs/Issues
Powered by GitBook

Copyright © 2025 Lumo. All Rights Reserved. This software is open-source and licensed under the GNU Affero General Public License (AGPL) v3.0. You are free to redistribute and modify it under the terms of this license.

On this page
  1. Tools

DexScreener Top Boosts Tool

DexScreener Top Boosts Tool (dexscreener_top_boosts_tool)

Fetches a list of tokens that currently have the most active "boosts" on DexScreener. This can indicate trending projects or tokens gaining community attention across various blockchains.

Input: Accepts an optional limit for the number of boosted tokens to retrieve.

class DexScreenerTopBoostsInput(BaseModel):
    limit: int = 10 # Number of tokens (default 10, max 30)

Key Functionality:

  • Retrieves the top boosted tokens from the api.dexscreener.com.

  • For each token, it provides the chain, token address, total boost amount, a brief description, and associated links (like website or socials).

  • The number of results can be specified using limit, up to a maximum of 30.


Sample Usage Queries (How an AI might use it):

  • "What are the top boosted tokens on DexScreener right now?"

  • "Show me the 15 most boosted tokens via DexScreener."

  • "Get DexScreener's list of top token boosts."

  • "Which tokens are currently being boosted heavily on DexScreener?"

  • "Fetch the top boosted tokens with a limit of 5 from DexScreener."

  • "List projects with the most active boosts on DexScreener."

  • "Can you show me DexScreener's top boosts?"


class DexScreenerTopBoostsTool(BaseTool):
    name: ClassVar[str] = "dexscreener_top_boosts_tool"
    description: ClassVar[str] = "Get the tokens with most active boosts on DexScreener..."
    args_schema: ClassVar[Type[BaseModel]] = DexScreenerTopBoostsInput

Important:

  • This tool operates primarily asynchronously (_arun). The synchronous version returns an informational message.

  • Relies on the external DexScreener API (api.dexscreener.com); its functionality and data accuracy depend on this third-party service.

  • The limit parameter defaults to 10 and is capped at a maximum of 30 tokens.

PreviousCoinMarketCap Trending Coins ToolNextDexScreener Token Information

Last updated 2 days ago