Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
AI-powered 01.xyz exchange development skill for monitoring, trading strategies, and N1 blockchain integration. Covers REST API (FTX-inspired), Nord.ts SDK (@n1xyz/nord-ts), non-custodial trading patterns, and market making on Solana.
AI-powered 01.xyz exchange development skill for monitoring, trading strategies, and N1 blockchain integration. Covers REST API (FTX-inspired), Nord.ts SDK (@n1xyz/nord-ts), non-custodial trading patterns, and market making on Solana.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Non-custodial perpetual futures on Solana. Built by traders, for traders.
Use this Skill when the user asks for: Market Monitoring: Orderbook depth, mark prices, funding rates, 24h stats Account Tracking: Position monitoring, margin health, liquidation risk Trading Strategies: Market making, DCA, grid trading, trend following SDK Integration: Setting up Nord.ts (@n1xyz/nord-ts) for TypeScript/Python API Development: Building on the FTX-inspired REST API Risk Management: Position sizing, circuit breakers, margin calculations N1 Protocol: Understanding the N1 blockchain and ZO protocol architecture
01.xyz is a non-custodial perpetual futures exchange built on the N1 blockchain (evolution of the ZO protocol). It enables fully self-custodied derivatives trading with up to 20x leverage on major crypto assets.
FeatureDescriptionNon-custodialYour private keys never leave your machine. No central counterparty risk.FTX-inspired APIFamiliar REST patterns for easy migration from centralized exchanges.Local SigningUsers run a local API that signs transactions β funds remain under user control.High PerformanceSub-second finality on N1 blockchain with Solana settlement.Deep LiquidityProfessional market makers and tight spreads on major pairs.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β User/Developer β β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β β β AI Agent β β Local API β β Browser β β β ββββββββ¬ββββββββ ββββββββ¬ββββββββ ββββββββ¬ββββββββ β βββββββββββΌββββββββββββββββββΌββββββββββββββββββΌβββββββββββββββ β β (signed txs) β β βΌ β β ββββββββββββββββ β β β N1 Network β β β β (L2 chain) β β β ββββββββ¬ββββββββ β β β β β ββββββββββββΌβββββββββββ β ββββββΊ zo-mainnet.n1.xyz ββββββββββ β REST/WebSocket β ββββββββββββ¬ββββββββββββ β ββββββββββββΌβββββββββββ β Solana L1 β β (settlement) β βββββββββββββββββββββββ
NetworkBase URLPurposeStatusMainnethttps://zo-mainnet.n1.xyzLive trading, real fundsProductionDevnethttps://zo-devnet.n1.xyzTesting, dev workDevelopment
These are opinionated defaults. Adjust for your specific use case.
Use CaseRecommended ApproachAuth RequiredMarket data (prices, orderbook)Direct HTTP to public endpointsβ NoAccount data (positions, balances)Local API or Nord SDKβ YesOrder placementLocal API with user confirmationβ Yes
LanguagePackageUse WhenTypeScript@n1xyz/nord-tsFull-featured trading, complex strategiesPythonn1-sdk (pip)Quant research, ML models, backtestingRaw HTTPDirect REST callsSimple monitoring, language-agnostic
AI only reads public data β Never expose private keys to AI systems Local signing mandatory β All transactions signed by user's local instance Explicit confirmation β Trading actions require human approval Testnet first β Always validate on devnet before mainnet
Read-only monitoring β β Start here, safe for all users Account health tracking β β Requires wallet address only Paper trading simulation β οΈ β Test strategies without real funds Live trading β οΈ β Requires local API + explicit user consent
When working with 01.xyz integration:
Identify the task type: MONITORING β Market data, public stats ACCOUNT β Position/balance queries TRADING β Order placement, strategy execution RISK β Health checks, liquidation analysis Determine authentication needs: Public endpoints: No auth needed Account data: Wallet address sufficient Trading: Local API with signing required
For market data: // Direct HTTP β no auth required const markets = await fetch('https://zo-mainnet.n1.xyz/info').json(); For account data: // Via local API or SDK const account = await nord.getAccount(walletAddress);
Before any trading action: β Verify account health (margin fraction > 10%) β Check open orders for conflicts β Calculate position impact on margin β Confirm funding rate direction β Get explicit user confirmation
Execute with monitoring: Submit order via local API Track fill status Update position state Log all actions
Read these files when the topic comes up: FileRead WhenSafety Levelsafety-first.mdFIRST β before anything elseβ οΈ Mandatorymonitoring-guide.mdGetting market data, checking pricesβ Saferisk-management.mdManaging leverage, liquidation riskβ Read-onlytrading-basics.mdUnderstanding order types, marketsβ οΈ Gatedsdk-reference.mdSetting up Nord.ts SDKβ DocumentationREADME.mdProject overview, installationβ General
Working code samples in examples/: monitor-wallet.js β Read-only wallet monitoring check-funding-rates.js β Market analysis simple-order.js β Basic order placement (requires local API)
01.xyz uses numeric market IDs (not symbols): IDMarketMax LeverageTick Size0BTCUSD20x$0.501ETHUSD20x$0.102SOLUSD20x$0.013HYPEUSD10x$0.01...See /info endpoint
Public (no auth): GET /info # All markets GET /market/{id}/orderbook # L2 orderbook GET /market/{id}/stats # 24h stats, funding GET /trades # Recent trades Private (requires local API): GET /account/{address} # Positions, balances POST /action # Submit orders
import { Nord } from '@n1xyz/nord-ts'; // Initialize const nord = await Nord.new({ app: 'zoau54n5U24GHNKqyoziVaVxgsiQYnPMx33fKmLLCT5', solanaConnection: connection, webServerUrl: 'https://zo-mainnet.n1.xyz', }); // Get markets const markets = await nord.getMarkets(); // Get orderbook const orderbook = await nord.getOrderbook(2); // SOLUSD // Place order (requires auth) const order = await nord.placeOrder({ marketId: 2, side: 'buy', size: 1.0, price: 150.00, orderType: 'limit', });
β Read safety-first.md β Non-custodial reality check β Verify on devnet first β Test all logic with fake funds β Check account health β Margin fraction > 10% (ideally > 20%) β Review funding rates β Can flip PnL significantly β Calculate liquidation price β Know your liquidation level β Set stop-losses β Use trigger orders for downside protection β Confirm market ID β Numeric IDs, not symbols
β Monitor margin fraction β Alert if < 15% β Track funding payments β Every 8 hours β Watch for liquidations β Cascading effects in volatile markets β Log all operations β Audit trail for debugging
Approaching liquidation: Reduce position size immediately or add collateral API unresponsive: Check local API status, verify network connectivity Unexpected fills: Review order history, check for stale orders Wrong market ID: Cancel all pending orders, verify symbol mapping
01.xyz: https://01.xyz Developer Docs: https://docs.01.xyz API Reference: https://api.01.xyz N1 Blockchain: https://docs.n1.xyz
Nord TypeScript: npm install @n1xyz/nord-ts Nord Python: pip install n1-sdk GitHub: https://github.com/n1-exchange
Discord: N1 Exchange Community Twitter/X: @01_exchange
Version: 1.0.0 Last Updated: 2026-02-04 API Version: 2026-01 Compatibility: N1 Mainnet, Devnet This Skill follows the OpenClaw Skill Specification. For more information on creating Skills, see the Skill documentation.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.