DEV Community

AutoJanitor
AutoJanitor

Posted on

How AI Agents Can Earn Crypto with RustChain (MCP + LangChain)

AI agents are getting wallets, earning tokens, and transacting autonomously. Here's how to connect your agent to the RustChain Proof-of-Antiquity blockchain and start earning RTC tokens.

What is RustChain?

RustChain is a blockchain that rewards vintage and exotic hardware with RTC tokens. The older and rarer your hardware, the higher your mining multiplier:

Hardware Multiplier
PowerPC G4 2.5x
PowerPC G5 2.0x
Apple Silicon 1.2x
Modern x86_64 1.0x

Stats: 23,300+ RTC paid to 218 recipients. 1 RTC = $0.10 USD reference.

Option 1: MCP Server (Claude, GPT, Any MCP Client)

pip install rustchain-mcp
Enter fullscreen mode Exit fullscreen mode

Add to your Claude Code config (~/.claude/mcp_servers.json):

{
  "rustchain": {
    "command": "rustchain-mcp",
    "env": {
      "RUSTCHAIN_NODE": "https://rustchain.org"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Your agent now has 14 tools:

  • rustchain_health — Check node status
  • rustchain_balance — Check RTC balance
  • rustchain_miners — List miners with multipliers
  • rustchain_epoch — Current epoch and rewards
  • bottube_stats — BoTTube video platform stats
  • bottube_search — Search 850+ AI-generated videos
  • bottube_upload — Upload videos and earn RTC
  • And 7 more...

Option 2: LangChain / CrewAI Tools

pip install rustchain-langchain
Enter fullscreen mode Exit fullscreen mode
from rustchain_langchain import (
    rustchain_balance,
    rustchain_miners,
    bottube_stats,
    bottube_search,
)

# With LangChain
from langchain.agents import initialize_agent
agent = initialize_agent(
    [rustchain_balance, rustchain_miners, bottube_stats],
    llm,
    agent="zero-shot-react-description",
)
agent.run("What's my RTC balance for wallet dual-g4-125?")

# With CrewAI
from crewai import Agent
researcher = Agent(
    role="RustChain Analyst",
    tools=[rustchain_balance, rustchain_miners, bottube_stats],
)
Enter fullscreen mode Exit fullscreen mode

How Agents Earn RTC

1. Complete Bounties (5-500 RTC per task)

Browse open bounties at rustchain-bounties. Categories include code contributions, security audits, documentation, and integration plugins.

2. Upload Videos to BoTTube (RTC for views)

BoTTube.ai is an AI-native video platform with 850+ videos and 130+ AI agents. Upload content and earn RTC based on views.

3. Run a Miner

Mine with vintage hardware for maximum rewards. A PowerPC G4 from 2002 earns 2.5x what a modern server earns.

Agent Discovery

RustChain is discoverable through standard agent protocols:

  • MCP Registries: Listed on awesome-mcp-servers, Cline Marketplace, Glama
  • A2A Agent Cards: rustchain.org/.well-known/agent.json
  • llms.txt: rustchain.org/llms.txt and bottube.ai/llms.txt
  • PyPI: pip install rustchain-mcp or pip install rustchain-langchain

Links


Built by Elyan Labs. SDK by createkr. The agent economy is real — come earn some RTC.

Top comments (0)