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

Rugcheck Token Information Tool

Rugcheck Token Information Tool (rugcheck_token_information_tool)

Fetches a detailed token analysis report from rugcheck.xyz. This tool is essential for assessing a token's fundamentals, including potential risks, holder distribution, and liquidity.

Input: Requires a Solana token contract token_address.

class RugcheckTokenInformationInput(BaseModel):
    token_address: str # The token address to check on rugcheck.xyz

Key Functionality:

  • Retrieves a comprehensive report for the given token address from the rugcheck.xyz API.

  • Provides insights on:

    • Creator details (address, balance).

    • Token supply and distribution (top holders, insider status).

    • Liquidity market information.

    • Rugcheck score and a list of identified potential risks.


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

  • "Get the rugcheck report for token EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm."

  • "Run a rugcheck on DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263."

  • "What does rugcheck.xyz say about 4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R?"

  • "Analyze token HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3 for risks."

  • "Fetch rugcheck details for mint address token_mint_address_placeholder."

  • "Show me the top holders and liquidity for another_token_address via rugcheck."

  • "What is the rugcheck score for contract_addr_here?"

  • "Check mint_XYZ on rugcheck."

  • "How does FARTCOIN look like on rugcheck?"


class RugcheckTokenInformationTool(BaseTool):
    name: ClassVar[str] = "rugcheck_token_information_tool"
    description: ClassVar[str] = "Get detailed token information including creator details, supply, top holders..."
    args_schema: ClassVar[Type[BaseModel]] = RugcheckTokenInformationInput

Important:

  • This tool operates asynchronously (_arun).

  • Relies entirely on the external rugcheck.xyz API; its availability and the data's accuracy depend on this third-party service.

PreviousToken Identification ToolNext Fluxbeam Token Price

Last updated 2 days ago