Skip to main content

LangChain and CrewAI tools for A2A-Swap — autonomous token swaps and liquidity on Solana

Project description

a2a-swap-langchain

LangChain and CrewAI tools for A2A-Swap — the constant-product AMM built for autonomous AI agents on Solana.

Installation

pip install a2a-swap-langchain          # LangChain only
pip install "a2a-swap-langchain[crewai]" # + CrewAI support

Also install the CLI (required — tools call it as a subprocess):

cargo install a2a-swap-cli

Configuration

Set environment variables (or pass them to get_tools()):

export A2A_KEYPAIR=~/.config/solana/id.json
export A2A_RPC_URL=https://api.mainnet-beta.solana.com  # optional, mainnet is default

LangChain

from langchain_openai import ChatOpenAI
from langchain.agents import AgentExecutor, create_tool_calling_agent
from langchain_core.prompts import ChatPromptTemplate
from a2a_swap_langchain import get_tools

tools = get_tools()  # reads A2A_KEYPAIR / A2A_RPC_URL from env
llm   = ChatOpenAI(model="gpt-4o")

prompt = ChatPromptTemplate.from_messages([
    ("system", "You are a DeFi agent on Solana. Use A2A-Swap to trade and manage liquidity."),
    ("human", "{input}"),
    ("placeholder", "{agent_scratchpad}"),
])

agent    = create_tool_calling_agent(llm, tools, prompt)
executor = AgentExecutor(agent=agent, tools=tools, verbose=True)

executor.invoke({"input": "What is the current SOL/USDC price on A2A-Swap?"})
executor.invoke({"input": "Simulate swapping 1 SOL for USDC and show the fee breakdown."})
executor.invoke({"input": "How much fees have I earned on my LP positions?"})

CrewAI

from crewai import Agent, Crew, Task
from a2a_swap_langchain import get_tools, A2ASimulateTool, A2APoolInfoTool

# All tools work in CrewAI without any wrapping
trader = Agent(
    role="DeFi Trader",
    goal="Execute optimal swaps on A2A-Swap",
    backstory="Autonomous Solana trading agent.",
    tools=get_tools(),
)

task = Task(
    description="Simulate selling 0.5 SOL for USDC, then execute if price impact < 1%.",
    expected_output="Simulation result and optional transaction signature.",
    agent=trader,
)

Crew(agents=[trader], tasks=[task]).kickoff()

Available Tools

Tool Name Wallet needed? Description
A2ASimulateTool a2a_simulate_swap No Preview a swap: fees, estimated out, price impact
A2ASwapTool a2a_swap Yes Execute an atomic token swap
A2AProvideLiquidityTool a2a_provide_liquidity Yes Deposit tokens, earn LP shares and fees
A2APoolInfoTool a2a_pool_info No Read pool reserves, spot price, fee rate
A2AMyFeesTool a2a_my_fees Yes (for identity) Check accrued trading fees across all positions

Individual tool usage

from a2a_swap_langchain import A2ASimulateTool, A2ASwapTool

# Read-only — no wallet
sim = A2ASimulateTool()
print(sim.run({"mint_in": "SOL", "mint_out": "USDC", "amount_in": 1_000_000_000}))

# Write — needs keypair
swap = A2ASwapTool(keypair="~/.config/solana/id.json")
print(swap.run({"mint_in": "SOL", "mint_out": "USDC", "amount_in": 500_000_000}))

Token shortcuts

Use SOL, USDC, or USDT as shorthand, or any base-58 mint address:

# Shorthand
sim.run({"mint_in": "SOL", "mint_out": "USDC", "amount_in": 1_000_000_000})

# Full mint address
sim.run({
    "mint_in":  "So11111111111111111111111111111111111111112",
    "mint_out": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount_in": 1_000_000_000,
})

Live pools (mainnet)

Pool Address
SOL/USDC (30 bps) BtBL5wpMbmabFimeUmLtjZAAeh4xWWf76NSpefMXb4TC

Pools are permissionless — any agent can create a new pair via a2a-swap create-pool.

Links

  • Program: 8XJfG4mHqRZjByAd7HxHdEALfB8jVtJVQsdhGEmysTFq (mainnet-beta)
  • CLI: cargo install a2a-swap-cli
  • TypeScript SDK: npm install @liqdlad/a2a-swap-sdk
  • Rust SDK: cargo add a2a-swap-sdk
  • ElizaOS plugin: elizaos plugins add plugin-a2a-swap
  • GitHub: liqdlad-rgb/a2a-swap

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

a2a_swap_langchain-0.1.1.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

a2a_swap_langchain-0.1.1-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file a2a_swap_langchain-0.1.1.tar.gz.

File metadata

  • Download URL: a2a_swap_langchain-0.1.1.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for a2a_swap_langchain-0.1.1.tar.gz
Algorithm Hash digest
SHA256 ebcf36a86d9ca800fa93d4e57e06343c047d9c3ff2e45dbae451bf495f74ba45
MD5 1a7d72698649677189b0b463c0911cad
BLAKE2b-256 1cba9cfda7fd72599fd3d90bbdf3165cd4a1119f196bc5fdc6f189cb099350e4

See more details on using hashes here.

File details

Details for the file a2a_swap_langchain-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for a2a_swap_langchain-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 caf871ea8d18ae77dc95dc722f9fef81a91a4c33ee016ba0b115fa4c32abd61e
MD5 0f1e83dba463dadddbd0a4961c5494ee
BLAKE2b-256 e50abae949093bfa66aec462a47cccac482121fe23bb4c9f9f1d8e1497dcd675

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page