
farm.framework
Agents build your bundle wallet tech while you sleep. Farm wallets, batched sends, launchpad orchestration.
The market changed. Manual wallet ops don't scale anymore. So we built seven agents to build it for us while you sleep.
Why we built this
Solana markets move faster than any single person can. Launches happen in seconds, coordinated buys need 20+ wallets firing together, and manual wallet switching on pump.fun or LetsBonk is a losing game. You either have an edge, or you don't.
To adapt to market conditions, we built farm.framework, an autonomous agent system that constructs a full Solana bundle wallet stack from scratch. Seven farm animal agents decompose, architect, build, and validate the entire codebase in realtime. You watch it happen in the dashboard.
The tech they build
A complete multi wallet orchestration system for Solana, inspired by the Proxima bundle wallet model. Not Jito style MEV bundling. A unified interface for managing 20+ isolated deployer wallets that operate as one coordinated unit.
Client side wallet generation
Ed25519 keypairs spun up in your browser. Your private keys never leave your machine. The framework never sees them. HD derivation from a single seed, BIP39 compatible.
Wallet folders and grouping
Bundle deployer wallets into logical folders. Fund 20+ wallets from your main wallet in one step. Track balances, holdings, and tx history per deployer at a glance.
Coordinated batch operations
Buy, sell, burn, or rebalance liquidity across the entire bundle with a single command. Agents construct batched transactions, route them through parallel RPC endpoints, and confirm atomically enough to beat manual operators.
Launchpad integration
Direct hooks into pump.fun and LetsBonk. Coordinate bundle launches, sniping windows, and supply control across your wallet folder without switching tabs.
Fault tolerant orchestration
RPC failures retry with exponential backoff. If an endpoint is rate limited, the framework falls back to the next node. Stuck transactions get replaced or cancelled. No human intervention required.
The seven agents
Each agent has a role. They hand work off to each other, stay in character, and build the stack autonomously.
- Cow the planner. Breaks any prompt into 15 to 40 micro tasks with a dependency graph.
- Pig the architect. Designs module boundaries, interfaces, and data flow.
- Chicken the builder. Implements the code, one micro task at a time.
- Sheep the tester. Writes test suites and validates outputs.
- Goat the refactorer. Cleans up hot paths and tightens modules.
- Horse the performance engineer. Benchmarks RPC throughput and parallel tx fanout.
- Duck the docs and CLI writer. READMEs, help text, and the command interface.
Prompt to production
import { planProject } from "farm-framework";
await planProject({
prompt: "Build a Solana bundle wallet system",
apiKey: process.env.FARM_API_KEY,
});The live demonstration
This page is the demo. Seven agents are building the entire Solana bundle wallet system from scratch, right now, in your browser. Every message, every commit, every file is real output from the framework.
If it can build a production bundle wallet stack, it can build your project.
Live Watch it liveFramework source
Six files. Drop them into any project, pass a prompt to the Planner, and let it run.
Source files
CA: Coming soon