sprouts
Automations that
trade while you sleep.
Write trading bots, deploy them with one command, and let the engine run them on Solana, on a schedule, from a webhook, or on demand.
Plugs into the Solana ecosystem
dca-bot.rs
use cotyledon::prelude::*; #[sprout::program]pub mod dca_bot {pub async fn accumulate(ctx: Ctx) -> Result<()> {ctx.emit(Trade::buy("SOL", Usd(25.0)));Ok(())}}$sprouts deployv3 live