← 返回
开发者工具 中文

Oasyce

Interact with the Oasyce decentralized AI data marketplace. Register data assets, trade via bonding curves, invoke AI capabilities, and settle payments betwe...
与Oasyce去中心化AI数据市场交互,注册数据资产,使用绑定曲线交易,调用AI能力,并完成支付结算。
shangri-la-0428
开发者工具 clawhub v3.3.0 2 版本 99843.3 Key: 无需
★ 0
Stars
📥 637
下载
💾 4
安装
2
版本
#latest

概述

Oasyce Skill

Use the oas CLI to interact with the Oasyce decentralized AI data marketplace — where agents pay agents. All commands support --json for structured output.

Install

pip install oasyce
oas doctor --json    # verify installation

Data Assets

Register a data asset:

oas register data.csv --owner alice --tags research,nlp --json

Search and query:

oas search "nlp training" --json
oas asset-info ASSET_ID --json
oas quote ASSET_ID --json

Buy shares (Bancor bonding curve):

oas buy ASSET_ID --buyer bob --amount 10.0 --json

Sell shares back:

oas sell ASSET_ID --tokens 5 --seller bob --json

Check holdings:

oas shares bob --json

AI Capability Marketplace

Register a capability:

oas capability register --name "Translation API" \
  --endpoint https://api.example.com/translate \
  --price 0.5 --tags nlp,translation --json

List and invoke:

oas capability list --tag nlp --json
oas capability invoke CAP_ID --input '{"text":"hello"}' --json
oas capability earnings --provider addr --json

Discover capabilities by intent:

oas discover --intents "translate" --tags nlp --json

Settlement & Escrow

The chain handles escrow automatically. Fee split on release: 93% creator, 3% validator, 2% burn, 2% treasury.

Disputes

oas dispute ASSET_ID --reason "data quality issue" --json
oas resolve ASSET_ID --remedy delist --json

Reputation

oas reputation check ADDRESS --json

Node & Network

oas node info --json          # Ed25519 identity
oas node peers --json         # connected peers
oas testnet onboard --json    # PoW self-registration

Diagnostics

oas doctor --json    # health check (all subsystems)
oas info --json      # project info

Python SDK

For programmatic access, use pip install oasyce-sdk:

from oasyce_sdk import OasyceClient

client = OasyceClient("http://localhost:1317")
caps = client.list_capabilities(tag="llm")
asset = client.get_asset("asset-001")
bc = client.get_bonding_curve("asset-001")
print(f"Spot price: {bc.spot_price_uoas} uoas")

Key Concepts

  • OAS: Protocol token. 1 OAS = 1,000,000 uoas.
  • Bonding Curve: tokens = supply * ((1 + payment/reserve)^0.5 - 1). More buyers = higher price.
  • Access Levels: Hold equity to unlock: >=0.1% L0, >=1% L1, >=5% L2, >=10% L3.
  • Escrow: Funds locked before execution, released after verification.
  • Round-trip cost: ~12% (buy + sell fees combined).

版本历史

共 2 个版本

  • v3.3.0 当前
    2026-05-01 08:46 安全 安全
  • v3.1.0
    2026-03-19 11:41 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 68 📥 180,163
security-compliance

Oasyce Vault

shangri-la-0428
本地优先的数据资产管理器——在决定共享内容之前,先扫描、分类并报告您的数据。当用户提及扫描文件、分类数据时使用。
★ 0 📥 509
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 668 📥 324,146