Crypto Price By Lpdawn

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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.

What this means

The coin symbol you ask about may be sent to Binance/ccxt to retrieve a public market price.

Why it was flagged

The script sends the requested cryptocurrency symbol to an external Binance market-data API through ccxt. This is expected for real-time price lookup and does not show trading, account access, or other high-impact actions.

Skill content
exchange = ccxt.binance()
ticker = exchange.fetch_ticker(symbol + '/USDT')
Recommendation

Use it for simple price checks, and do not treat the result as financial advice or grant it trading/account permissions unless separately reviewed.

What this means

The skill may rely on whatever ccxt package is already available in the environment, which can affect reliability and provenance.

Why it was flagged

The skill depends on the third-party ccxt library, but the provided install specification declares no package installation, version pin, or lockfile. This is not malicious, but dependency provenance is not fully described by the artifacts.

Skill content
import ccxt
Recommendation

Prefer installing in an environment where ccxt is sourced from a trusted package index and pinned to a known version.