manifest

Solid

Build and integrate Manifest DEX on Solana using the Manifest SDK. Covers market reads, order placement, wrapper and global account setup, reverse and global order types, and frontend integration patterns.

Web & Frontend 126 stars 79 forks Updated 2 weeks ago Apache-2.0

Install

View on GitHub

Quality Score: 84/100

Stars 20%
70
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Manifest DEX Integration Guide Build trading, routing, portfolio, and frontend integrations on top of Manifest's permissionless orderbook. ## Overview Use this skill when the task involves: - Reading Manifest market state or orderbooks - Placing, canceling, depositing, or withdrawing via the Manifest SDK - Choosing between local market balances and global balances - Handling wrapper setup, seat claims, and wallet-adapter flows - Understanding `Limit`, `PostOnly`, `ImmediateOrCancel`, `Global`, `Reverse`, and `ReverseTight` order types Load supporting references as needed: - `resources/manifest-actions.md` - `resources/manifest-sdk.md` - `docs/troubleshooting.md` - `examples/read-market/read-market.ts` - `examples/wallet-order/place-order.ts` - `examples/global-liquidity/global-order.ts` - `examples/reverse-liquidity/amm-style-batch.ts` - `templates/manifest-setup.ts` ## Instructions 1. Determine whether the task is read-only market access or transaction-building. 2. For read-only access, prefer `Market` reads or `ManifestClient.getClientReadOnly(...)`. 3. For transaction-building, use `getClientForMarket(...)` for signer-controlled flows, or use `getSetupIxs(...)` first and then `getClientForMarketNoPrivateKey(...)` for wallet-adapter flows. 4. Decide whether liquidity should be market-local (wrapper balances plus a market seat) or global (global account plus `OrderType.Global`). 5. If the task involves recurring two-sided liquidity, evaluate `Reverse` or `ReverseTi...

Details

Author
sendaifun
Repository
sendaifun/skills
Created
7 months ago
Last Updated
2 weeks ago
Language
TypeScript
License
Apache-2.0

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category