Orderly Sdk Trading Workflows
PassAudited by VirusTotal on May 11, 2026.
Overview
Type: OpenClaw Skill Name: orderly-sdk-trading-workflows Version: 1.0.0 The skill bundle provides legitimate documentation and code examples for integrating the Orderly Network SDK into trading applications. It covers standard operations like authentication, order placement, and fund management (SKILL.md) using official Orderly Network libraries, with no evidence of malicious intent, data exfiltration, or unauthorized access.
Findings (0)
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.
