
Orderly Dex Creator
- 2 installs
- 1 repo stars
- Updated July 29, 2026
- starchild-ai-agent/community-skills
Launch and operate a perpetual futures DEX on Orderly - launch, fee setup, domain/DNS, growth automation, market making, vaults, and security.
About
A lifecycle playbook for launching and operating a perpetual futures DEX on Orderly, covering launch, fee graduation, domain/DNS, autonomous growth, market making, vaults, and security hardening. A developer uses it to stand up and run a branded perp DEX end to end.
- Phased playbook to launch a perp DEX on Orderly (no-code or SDK)
- Growth agent, agentic market making, vaults, and security monitoring
Orderly Dex Creator by the numbers
- 2 all-time installs (skills.sh)
- Ranked #408 of 479 Web3 & Blockchain skills by installs in the Skillselion catalog
- Data as of Jul 30, 2026 (Skillselion catalog sync)
npx skills add https://github.com/starchild-ai-agent/community-skills --skill orderly-dex-creatorAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 1 |
| Last updated | July 29, 2026 |
| Repository | starchild-ai-agent/community-skills ↗ |
What it does
Launch and operate a perpetual futures DEX on Orderly - launch, fee setup, domain/DNS, growth automation, market making, vaults, and security.
Files
orderly-dex-creator
Build and operate a perpetual futures DEX on Orderly with a phased, production-oriented workflow.
When to use this skill
Use this when the user wants to:
- Launch a new perp DEX on Orderly
- Graduate and configure fee economics
- Attach a custom domain and automate DNS
- Run autonomous growth, market making, and vault strategies
- Add continuous security monitoring across the stack
Do not use this for low-level endpoint implementation details alone — see references/sdk-integration.md and existing Orderly API/auth skills.
---
Architecture (Skew stack + Orderly infra)
DEX Frontend (Orderly ONE or custom SDK)
├─ OtterClaw (agent skills)
├─ Domain Builder (DNS automation)
├─ Growth Agent (daily optimization loop)
├─ Agentic MM (autonomous market making)
├─ YieldClaw (vault ops)
└─ SecClaw (cross-system watchdog)
↓
Orderly infra (omnichain settlement + shared orderbook)Component map
| Component | Repo | Purpose |
|---|---|---|
| OtterClaw | https://github.com/SkewCodes/OtterClaw | Installable agent skills for onboarding/trading/data/swap/vault/payments/dex-builder |
| Domain Builder | https://github.com/SkewCodes/orderly-domain-builder | DNS/domain automation and provider-specific fixes |
| Growth Agent | https://github.com/SkewCodes/orderly-growth-agent | Autonomous growth and fee/referral optimization loop |
| Agentic MM | https://github.com/SkewCodes/orderly-agentic-mm | Fair-value quoting, adaptive spreads, and safety controls |
| YieldClaw | https://github.com/SkewCodes/YieldClaw | Vault lifecycle + strategy execution |
| SecClaw | https://github.com/SkewCodes/SecClaw | Monitoring, policy checks, and cross-system risk detection |
---
Phase 1 — Launch
Choose one path:
| Path | Best for | Time to first launch |
|---|---|---|
| Orderly One (no-code) | Fast branded launch | Minutes |
| Custom SDK/API | Full product control | Days–weeks |
A) Orderly One (no-code)
1. Go to https://dex.orderly.network 2. Connect wallet and run the setup wizard 3. Configure branding, social links, wallets, chains, navigation 4. Deploy and verify public access
B) Custom SDK/API
Follow references/sdk-integration.md for React SDK / hooks / Python connector and auth model.
---
Phase 2 — Graduate & monetize
Graduation enables builder revenue mechanics (broker identity + fee sharing capabilities).
Operator checklist
- Complete graduation flow in official dashboard
- Confirm broker ID assignment
- Configure default and tiered fee settings
- Verify payout/reporting route before scaling traffic
Note: economics (fees, staking tiers, costs) can change. Always verify current values in official Orderly docs/dashboard before committing production settings.
---
Phase 3 — Domain & DNS
Use Domain Builder automation for provider-specific correctness.
git clone https://github.com/SkewCodes/orderly-domain-builder.git
cd orderly-domain-builder
./orderly-domain-setup.sh setup --domain yourdex.com --broker-id your-broker-id --yes
./orderly-domain-setup.sh verify --domain yourdex.com --broker-id your-broker-idRecommended validations
- DNS records resolve as expected (
@,www) - SSL mode and redirects are coherent (no loops)
- Cloudflare performance/security toggles do not break app rendering or websocket flows
---
Phase 4 — Growth agent (autonomous)
git clone https://github.com/SkewCodes/orderly-growth-agent.git
cd orderly-growth-agent && npm install && npm run buildProgressive trust rollout
1. Week 1–2: dry-run only (observe recommendations) 2. Week 3: enable one playbook per cycle 3. Week 4+: widen scope after KPI + abuse-monitor validation
Operating model
MEASURE → WATCHDOG → COLLECT → DIAGNOSE → DECIDE → ACT → REPORT
---
Phase 5 — Agentic market making
git clone https://github.com/SkewCodes/orderly-agentic-mm.git
cd orderly-agentic-mm && npm install && npm run buildStart conservative:
- wider spreads
- low inventory caps
- slower refresh interval
- strict circuit-breakers
Scale aggressiveness only after consistent quality grades and stable realized risk.
---
Phase 6 — Vault operations (YieldClaw)
git clone https://github.com/SkewCodes/YieldClaw.git
cd YieldClaw && npm install && npm run buildUse strategy-as-config (YAML), then enforce:
- clear risk budget per vault
- max drawdown / exposure gates
- explicit operator pause path
---
Phase 7 — Security watchdog (SecClaw)
git clone https://github.com/SkewCodes/SecClaw.git
cd SecClaw && npm install
npm run check -- --config config.yamlMinimum security baseline:
- secret isolation and key rotation plan
- policy allowlists (playbooks/actions)
- cross-system exposure checks
- alert fan-out (Telegram/webhook/log) + runbook
---
OtterClaw installable skills
- Onboarding:
https://github.com/SkewCodes/OtterClaw/blob/main/skills/orderly-onboarding/SKILL.md - Trader:
https://github.com/SkewCodes/OtterClaw/blob/main/skills/orderly-trader/SKILL.md - Data:
https://github.com/SkewCodes/OtterClaw/blob/main/skills/orderly-data/SKILL.md - Swap:
https://github.com/SkewCodes/OtterClaw/blob/main/skills/orderly-swap/SKILL.md - Vault:
https://github.com/SkewCodes/OtterClaw/blob/main/skills/orderly-vault/SKILL.md - 402 Payments:
https://github.com/SkewCodes/OtterClaw/blob/main/skills/orderly-402/SKILL.md - DEX Builder:
https://github.com/SkewCodes/OtterClaw/blob/main/skills/orderly-dex-builder/SKILL.md
---
Production readiness gate (must pass before "go live")
- [ ] Launch path validated (UI, wallet connect, trading path)
- [ ] Broker/fee configuration verified against current docs
- [ ] Domain + TLS + websocket checks green
- [ ] Growth agent started in dry-run with clear KPIs
- [ ] MM running in conservative mode, no safety trips
- [ ] Vault strategy risk caps and pause controls verified
- [ ] SecClaw alerting + incident runbook tested
---
Operator notes
- Never market your DEX as an “official Orderly product.”
- Avoid guaranteed-return language.
- Builder/operator is responsible for legal and regulatory compliance.
- Re-verify external assumptions periodically (fees, tiers, endpoint behavior, chain support).
Last verified
- Skill structure and references: 2026-04-01
- External economics/endpoints: must be re-checked at execution time
SDK Integration Reference (Orderly DEX Creator)
Practical reference for custom SDK/API builds on Orderly.
Always validate endpoint behavior and package versions against the latest official docs before production rollout.
1) React Components SDK (fastest UI integration)
Install
npm install @orderly.network/ui @orderly.network/react-app @orderly.network/wallet-connectorApp provider wiring
import "@orderly.network/ui/dist/styles.css";
import { OrderlyAppProvider } from "@orderly.network/react-app";
import { WalletConnectorProvider } from "@orderly.network/wallet-connector";
export function AppProviders({ children }) {
return (
<WalletConnectorProvider>
<OrderlyAppProvider
brokerId="your-broker-id"
brokerName="Your DEX"
networkId="mainnet" // or "testnet"
appIcons="/logo.svg"
>
{children}
</OrderlyAppProvider>
</WalletConnectorProvider>
);
}Feature/page packages
npm install @orderly.network/trading @orderly.network/portfolio @orderly.network/referral @orderly.network/markets @orderly.network/trading-rewards @orderly.network/affiliate @orderly.network/ui-scaffold---
2) Hooks SDK (custom UI)
npm install @orderly.network/hooksUse hooks when you need full UI ownership while retaining Orderly data primitives.
---
3) Python connector (backend/bots)
pip install orderly-evm-connector-pythonRepo: https://github.com/OrderlyNetwork/orderly-evm-connector-python
---
4) Private API auth model
Required headers
| Header | Meaning |
|---|---|
orderly-account-id | Account identifier |
orderly-key | ed25519 public key |
orderly-timestamp | current timestamp (ms) |
orderly-signature | Base64URL signature |
Signature payload
message = timestamp + method + requestPath + bodyStringSign with ed25519 secret key; send Base64URL output in orderly-signature.
---
5) Endpoint map (common)
| Path | Method(s) | Use |
|---|---|---|
/v1/register_account | POST | account registration |
/v1/orderly_key | POST | add/manage key |
/v1/order | POST/PUT/DELETE | create/modify/cancel order |
/v1/orders | GET/DELETE | list/cancel orders |
/v1/positions | GET | positions |
/v1/client/holding | GET | balances/holdings |
/v1/withdraw_request | POST | withdrawals |
/v1/settle_pnl | POST | settle PnL |
/v1/broker/fee_rate/default | GET/POST | default builder fee |
/v1/broker/fee_rate/set | POST | user-specific fee |
/v1/referral/create | POST | referral creation |
---
6) WebSocket notes
Use official Orderly docs as source-of-truth for current WS hostnames and topic schemas.
Validation checklist
- Confirm public vs private WS endpoints for your environment (mainnet/testnet)
- Confirm whether account-scoped path parameters are required per endpoint
- Validate auth handshake for private streams
- Validate topics you rely on (
trade,orderbook,kline, execution/position/balance)
If docs and historical examples conflict, trust latest official docs/dashboard values.
---
7) Chain support + addresses
- Chains: query
GET /v1/public/chain_info - Contract addresses: see official Orderly omnichain addresses page
---
8) Production hardening checklist
- [ ] Pin package versions / lockfile committed
- [ ] Per-environment API/WS host config (dev/stage/prod)
- [ ] Retries + idempotency strategy for order endpoints
- [ ] Clock sync guard for signed requests
- [ ] Structured logs for order lifecycle + auth failures
- [ ] Alerting for WS disconnect bursts and order reject spikes
- [ ] Runbook for key rotation and degraded-mode trading