← 返回 Skills 市场
risheea

Fairscale Solana Skill

作者 RisheeA · GitHub ↗ · v0.1.3
cross-platform ⚠ suspicious
346
总下载
0
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install fairscale-solana-skill
功能描述
Provides real-time Solana wallet reputation scores and risk assessments to inform and secure transaction decisions against fraudulent or risky actors.
使用说明 (SKILL.md)

FairScale Reputation Skill

Check Solana wallet reputation scores. Free tier: 100 calls/day, no API key needed.

What This Does

FairScale provides reputation scores (0-100) for any Solana wallet based on 50+ on-chain signals. Use it to:

  • Check a wallet's trustworthiness before transacting
  • Filter wallets for airdrops or whitelists
  • Build custom scoring models for your use case
  • Add reputation data to your agent's decision-making

API Endpoint

https://x402.fairscale.xyz

No API key required for free tier.


Endpoints

GET /score

Get a wallet's reputation score.

GET https://x402.fairscale.xyz/score?wallet=WALLET_ADDRESS

Response:

{
  "wallet": "7xK9...",
  "fairscore": 72,
  "tier": "gold",
  "_meta": {
    "remaining_today": 99
  }
}

GET /check

Get a risk assessment for a specific transaction amount.

GET https://x402.fairscale.xyz/check?wallet=WALLET_ADDRESS&amount=500

Response:

{
  "wallet": "7xK9...",
  "fairscore": 72,
  "risk_level": "medium",
  "recommendation": "proceed_with_caution",
  "max_suggested_amount_usd": 1000
}

POST /score/custom

Create custom scoring rules. Requires credits.

POST https://x402.fairscale.xyz/score/custom
Content-Type: application/json

{
  "wallet": "WALLET_ADDRESS",
  "rules": {
    "min_score": 60,
    "min_age_days": 90,
    "no_rug_history": true
  }
}

Response:

{
  "wallet": "7xK9...",
  "passes": true,
  "rule_results": {
    "min_score": { "pass": true, "required": 60, "actual": 72 },
    "min_age_days": { "pass": true, "required": 90, "actual": 340 },
    "no_rug_history": { "pass": true }
  }
}

POST /batch

Score multiple wallets at once. Requires credits.

POST https://x402.fairscale.xyz/batch
Content-Type: application/json

{
  "wallets": ["wallet1", "wallet2", "wallet3"]
}

Custom Rules

Use these with /score/custom:

Rule Type Example
min_score number "min_score": 60
min_age_days number "min_age_days": 90
no_rug_history boolean "no_rug_history": true
min_transaction_count number "min_transaction_count": 100
min_volume_usd number "min_volume_usd": 5000
max_burst_ratio number "max_burst_ratio": 0.5
min_tier string "min_tier": "silver"

Score Guide

Score Tier Meaning
80-100 Platinum Highly trusted
60-79 Gold Good reputation
40-59 Silver Average
0-39 Bronze Low trust

Pricing

Tier Limit Cost
Free 100 calls/day $0
Credits Unlimited $0.01/call

Get Credits

  1. Send USDC to: fairAUEuR1SCcHL254Vb3F3XpUWLruJ2a11f6QfANEN
  2. Call POST /credits/deposit with your wallet and tx signature
  3. Get a session token
  4. Include x-session-token header on requests

Examples

Check a wallet:

GET https://x402.fairscale.xyz/score?wallet=7xK9abc...

Check risk for $500 trade:

GET https://x402.fairscale.xyz/check?wallet=7xK9abc...&amount=500

Custom rules for lending:

POST https://x402.fairscale.xyz/score/custom
{
  "wallet": "7xK9abc...",
  "rules": {
    "min_score": 70,
    "min_age_days": 180,
    "no_rug_history": true
  }
}

Monetise This Skill

Build products on top of FairScale:

  • Gated access: Charge users to verify their reputation
  • Airdrop filtering: Charge projects to filter sybils
  • Lending checks: Charge per credit decision
  • Premium verification: Offer "FairScale Verified" badges

Your agent can charge users while paying $0.01/call to FairScale.


Links

安全使用建议
This skill appears to implement a wallet-reputation API, but the publisher and endpoint (https://x402.fairscale.xyz) are unverified and there's no official homepage. The SKILL.md asks you to (a) send USDC to a hard-coded crypto address and (b) POST transaction signatures/session tokens to the endpoint — actions that could result in lost funds or disclosure of sensitive transaction data if the service is fraudulent. Before installing or using it: verify the vendor (official website, organization, or GitHub), confirm the HTTPS certificate and DNS ownership, and search for independent references to FairScale/Fairscale.xyz. If you must test, use a throwaway wallet with minimal funds and do not use real keys/private data. Avoid sending real funds to the provided address until the service's legitimacy is confirmed. If you prefer a lower-risk option, use a well-known reputation provider or only use the free anonymous endpoints and avoid providing transaction signatures or payment proofs.
功能分析
Type: OpenClaw Skill Name: fairscale-solana-skill Version: 0.1.3 The skill bundle describes an integration with the FairScale Solana reputation API. All files consistently point to `https://x402.fairscale.xyz` for API interactions. The `SKILL.md` and `README.md` provide clear documentation and `curl` examples for using the service, which involve standard HTTP GET/POST requests. There is no evidence of prompt injection attempts against the AI agent, no instructions for data exfiltration, malicious execution, persistence mechanisms, or any other intentionally harmful behavior. The content is aligned with its stated purpose of checking Solana wallet reputation scores.
能力评估
Purpose & Capability
The name/description match the documented endpoints (score, check, custom, batch). Requesting no environment variables and being instruction-only is coherent for a simple HTTP-based reputation API. However, the skill includes an on‑chain payment flow (send USDC to a provided address) which elevates risk: accepting payment directly to a published crypto address without any provenance/homepage or official publisher raises questions about legitimacy.
Instruction Scope
SKILL.md instructs the agent to call an external API (https://x402.fairscale.xyz) and to transmit wallet addresses, transaction amounts, and — for paid operations — transaction signatures and a session token. Those are sensitive data (wallet addresses and tx signatures) and will be sent to an unverified third-party host. The instructions do not require reading local files or env vars, but they do direct users to make on‑chain payments and then POST payment proofs to the endpoint — this could be abused to steal funds or collect identifying transaction data.
Install Mechanism
No install/spec or code files are provided (instruction-only), so nothing is written to disk and no third-party packages are fetched. This minimizes supply-chain risk.
Credentials
The skill declares no required credentials or environment variables, which is consistent with the free-tier/no-API-key claim. However, the paid flow expects a session token obtained after sending USDC to a provided address; that token handling is not declared as an environment input but would be sensitive to store and use. The number and type of secrets required (session token, tx signature) are proportionate to a paid API, but because the publisher/domain are unknown this raises a legitimacy concern.
Persistence & Privilege
The skill is not always-enabled, does not request elevated platform privileges, and has no install-time persistence. Autonomous invocation is allowed but is the platform default and not by itself a concern here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install fairscale-solana-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /fairscale-solana-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.3
- Removed unused files: references/API.md and scripts/check_wallet.sh - No user-facing changes to documentation or functionality
v0.1.2
- Major documentation rewrite for clarity and brevity. - Simplified instructions and endpoint usage examples. - Added clear API endpoint and pricing details. - Provided a rules table for custom scoring. - Updated score tiers and meaning. - Monetization strategies and instructions for credit purchases now documented. - Removed extensive explanations, agent prompts, and long-form system design—focus is now on quick integration and practical usage.
v0.1.1
## Fairscale Solana Skill v0.1.1 Changelog - Simplified and condensed the documentation for clarity and ease of use. - Provided direct API endpoint and clear example requests/responses. - Added concise rule and score tables for custom scoring and reputation tiers. - Introduced a basic pricing section, including instructions for credit purchasing. - Removed extensive narrative, agent presets, and system prompt examples for brevity. - Focused on core functionality: checking wallet scores, risk assessments, and applying custom rules.
v0.1.0
FairScale Reputation Skill 0.1.0 — Initial release - Introduces real-time Solana wallet reputation scoring to improve agent trust and safety. - Provides API endpoints for score lookup, risk check (with amount), custom rule evaluation, and batch scoring. - Includes best-practice agent rule presets for different risk tolerances and use cases (trading, lending, airdrop, gatekeeping). - Supplies decision frameworks and system prompts for easier agent integration. - Defines strict trust tiers and rules to minimize transaction risk and block sybils/bad actors.
元数据
Slug fairscale-solana-skill
版本 0.1.3
许可证
累计安装 0
当前安装数 0
历史版本数 4
常见问题

Fairscale Solana Skill 是什么?

Provides real-time Solana wallet reputation scores and risk assessments to inform and secure transaction decisions against fraudulent or risky actors. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 346 次。

如何安装 Fairscale Solana Skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install fairscale-solana-skill」即可一键安装,无需额外配置。

Fairscale Solana Skill 是免费的吗?

是的,Fairscale Solana Skill 完全免费(开源免费),可自由下载、安装和使用。

Fairscale Solana Skill 支持哪些平台?

Fairscale Solana Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Fairscale Solana Skill?

由 RisheeA(@risheea)开发并维护,当前版本 v0.1.3。

💬 留言讨论