← 返回
沟通协作 中文

Dexie

Track Chia DEX offers, tokens, pairs, prices, and platform stats using Dexie.space API via CLI or chat commands.
通过 CLI 或聊天命令,使用 Dexie.space API 追踪 Chia DEX 挂单、代币、交易对、价格及平台统计数据。
koba42corp
沟通协作 clawhub v1.0.0 1 版本 99742.8 Key: 无需
★ 2
Stars
📥 1,899
下载
💾 36
安装
1
版本
#latest

概述

Dexie Skill

Track Chia DEX trading via the Dexie.space API.

What It Does

  • List active/completed offers
  • View token prices and liquidity
  • Search tokens (CATs)
  • Monitor trading pairs
  • Get platform statistics

Commands

All commands can be triggered via:

  • /dex in Telegram
  • /dexie in Telegram
  • dex in CLI
  • dexie in CLI

Offers

/dex offers                List active offers
/dex offers completed      List completed offers
/dex offers cancelled      List cancelled offers
/dex offer <id>            Get offer details

Tokens

/dex assets                List top tokens by volume
/dex asset <id|code>       Get token details (e.g., SBX, DBX)
/dex search <query>        Search tokens
/dex price <code>          Get token price

Pairs

/dex pairs                 List trading pairs
/dex pair <id>             Get pair details

Stats

/dex stats                 Get platform statistics

Shortcuts

/dex SBX                   Quick price lookup
/dex DBX                   Quick price lookup

Agent Usage

When users ask about Chia DEX, trading, or token prices:

const { handleCommand } = require('./skills/dexie');

// Natural language → formatted response
const output = await handleCommand('show me top tokens');

API Client

For custom integrations:

const DexieAPI = require('./skills/dexie/lib/api');
const api = new DexieAPI();

// Get active offers
const offers = await api.getOffers({ page_size: 20, status: 0 });

// Get token details
const token = await api.getAsset('a628c1c2c6fcb74d53746157e438e108eab5c0bb3e5c80ff9b1910b3e4832913');

// List all assets
const assets = await api.getAssets({ page_size: 50, sort: 'volume' });

// Get trading pairs
const pairs = await api.getPairs();

Installation

cd skills/dexie
npm install
chmod +x cli.js
npm link  # Makes 'dex' and 'dexie' global

Configuration

No API key required — Dexie API is public.

Output Format

All commands return plain text suitable for:

  • Terminal output (CLI)
  • Telegram messages
  • Discord messages
  • WhatsApp messages

Examples

Check token price:

/dex price SBX

List active offers:

/dex offers

Search for a token:

/dex search bucks

Get platform stats:

/dex stats

Tips

  • Asset IDs are long hex strings
  • Token codes are short (e.g., SBX, DBX, XCH)
  • Use search to find tokens by name
  • Prices are in USD
  • Volumes and liquidity in XCH

Support

  • Dexie.space: https://dexie.space
  • API Docs: https://api.dexie.space/v1
  • Bug reports: File in skill repository

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-28 18:18 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

communication-collaboration

Slack

steipete
当需要通过 slack 工具从 Clawdbot 控制 Slack 时使用,包括在频道或私信中回复消息或置顶/取消置顶项目。
★ 157 📥 47,676
communication-collaboration

imap-smtp-email

gzlicanyi
使用IMAP/SMTP读取和发送邮件;检查新/未读邮件、获取内容、搜索邮箱、标记已读/未读、发送带附件的邮件。支持...
★ 113 📥 52,401
developer-tools

iResponder

koba42corp
监控iMessage/SMS对话,根据可配置规则、AI提示词和频率限制条件自动回复。用于需基于上下文向特定联系人自动回复AI生成内容,或管理自动回复设置、联系人、提示词及查看状态/历史记录时。
★ 0 📥 3,032