Developers
Build anything. Ship fast.
Acend exposes every layer of the platform through a composable API. Build trading bots, protocol integrations, analytics dashboards, or entirely new financial products on top of Acend infrastructure.
Quick Start
import { AcendClient } from '@acend/sdk'
const client = new AcendClient({ wallet })
const order = await client.placeOrder({
market: 'BTC-USDC',
side: 'buy',
price: 67_420,
size: 0.1,
})use acend_sdk::AcendClient;
let client = AcendClient::new(wallet);
let order = client.place_order(OrderParams {
market: "BTC-USDC",
side: Side::Buy,
price: 67_420,
size: dec!(0.1),
}).await?;Getting Started
Any Solana-compatible wallet works. No registration or KYC required.
npm install @acend/sdk — or interact directly via REST and WebSocket.
Use the client to submit a limit or market order to any active market.
Call createMarket() with your tick size, lot size, and fee tier and go live.
Resources
Full OpenAPI specification for order management, account queries, and market data endpoints.
Real-time orderbook, trade, and account update feeds. Sub-5ms latency from matching engine to client.
Fully typed client library for Node.js and browser environments. First-class Solana wallet integration.
High-performance Rust crate for latency-sensitive strategies and on-chain program integrations.
Step-by-step walkthrough for deploying a permissionless market on Acend with custom parameters.
Interface definition for the Acend on-chain program. Compose directly from any Solana program or protocol.
