cotyledon 0.1.0

Framework for writing sprouts — sandboxed, event-driven on-chain trading bots.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Official plugins. Each is opt-in behind a cargo feature:
//!
//! ```toml
//! cotyledon = { version = "0.1", features = ["jupiter", "meteora"] }
//! ```
//!
//! A plugin is ordinary library code that composes [`crate::Ctx`] calls — it
//! holds no special privileges. Community plugins are plain cargo-git
//! dependencies that follow the same shape.

#[cfg(feature = "jupiter")]
pub mod jupiter;

#[cfg(feature = "meteora")]
pub mod meteora;