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.
The coin symbol you ask about may be sent to Binance/ccxt to retrieve a public market price.
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.
exchange = ccxt.binance() ticker = exchange.fetch_ticker(symbol + '/USDT')
Use it for simple price checks, and do not treat the result as financial advice or grant it trading/account permissions unless separately reviewed.
The skill may rely on whatever ccxt package is already available in the environment, which can affect reliability and provenance.
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.
import ccxt
Prefer installing in an environment where ccxt is sourced from a trusted package index and pinned to a known version.
