Complete guide to using Eunoia for Solana blockchain operations
Limit orders allow you to automatically buy or sell tokens when specific market conditions are met. You can set orders based on market cap or price, and Eunoia will execute them automatically.
Example:
"if BONK hits 100k mc please buy 0.1 SOL worth"Execute when token reaches a specific market cap:
Execute when token reaches a specific price:
Buy Orders:
"if this coin hits 50k mc please buy""when BONK reaches 100k market cap, buy 0.5 SOL worth""buy 0.1 SOL when DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 hits 200k mc"Sell Orders:
"once it hits 100k, sell 50%""sell half when price hits 0.001""when WIF reaches 1M market cap, sell all"You can specify tokens in multiple ways:
"buy 0.1 SOL worth""sell 50%" or "sell half""sell all"Use plain English to create orders. No complex commands or syntax needed.
Set triggers based on market cap (in thousands) or token price (in USD).
Orders execute automatically when conditions are met. No manual intervention needed.
Receive Telegram notifications when orders execute with transaction links.
Sell percentages of your holdings (e.g., "sell 50%", "sell half", "sell all").
Use token symbols or contract addresses directly. Works with any Solana token.
When a limit order executes, you'll receive an instant notification via Telegram with:
✅ Success notifications include transaction links for easy verification
❌ Failure notifications include error details to help you fix the issue
/api/limit-orders/create{
"walletAddress": "user_wallet",
"tokenAddress": "token_mint_or_symbol",
"orderType": "buy" | "sell",
"triggerType": "market_cap" | "price",
"triggerValue": "50",
"amount": "0.1" | "50" | "all",
"amountType": "fixed" | "percentage"
}/api/limit-orders/list?walletAddress=xxx&status=active/api/limit-orders/cancel{
"orderId": "order_id",
"walletAddress": "user_wallet"
}Command:
"if BONK hits 100k mc please buy 0.1 SOL worth"What happens:
Command:
"once WIF hits 200k, sell 50%"What happens:
Command:
"sell all when price hits 0.001"What happens:
Need help? Check out our GitHub repository
Back to Eunoia