Orderly Sdk Trading Workflows
PassAudited by ClawScan on May 1, 2026.
Overview
This is a coherent instruction-only trading guide, but it covers sensitive wallet and financial trading actions that users should handle carefully.
Install or use this skill only if you intend to build Orderly DEX trading workflows. Treat any wallet connection, trading key, token approval, deposit, withdrawal, or automated-bot behavior as real financial authority and add explicit confirmations, limits, and testing before using real funds.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Using these workflows with a real wallet could authorize trading-related account actions.
The workflow depends on authenticated wallet/account access, which is sensitive financial authority, but it is disclosed and expected for a DEX trading guide.
- Wallet connection configured - Account authenticated
Use only with wallets and accounts you intend to connect, verify requested wallet permissions, and test with small amounts or a test environment first.
Incorrect implementation or careless use could approve token spending, deposit funds, or place trades unexpectedly.
The examples show token approval/deposit and order-submission API calls. These are high-impact financial mutations, but they are central to the stated trading workflow and appear as user-triggered UI actions.
await approve(); ... const result = await deposit(); ... const [submitOrder] = useMutation('/v1/order');Add explicit confirmations, validation of amount/symbol/side, spending limits, cancellation paths, and clear user review before deposits, approvals, withdrawals, or order placement.
A bot built from these workflows could trade repeatedly without per-order user review if implemented that way.
The skill lists automated trading bots as a use case. The artifacts do not include background bot code, but autonomous trading is a sensitive deployment pattern.
- Creating automated trading bots
If building automation, require explicit strategy limits, maximum order sizes, stop-loss controls, monitoring, audit logs, and a manual kill switch.
