Neomano Binance Assets (Read-only)

v0.1.2

Safe, read-only Binance balance viewer (Spot wallet) using Binance API keys with READ-ONLY permissions. Use when the user wants to check holdings/balances/as...

1· 152·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for elandivar/neomano-binance-assets.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Neomano Binance Assets (Read-only)" (elandivar/neomano-binance-assets) from ClawHub.
Skill page: https://clawhub.ai/elandivar/neomano-binance-assets
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: BINANCE_API_KEY, BINANCE_API_SECRET
Required binaries: python3
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install neomano-binance-assets

ClawHub CLI

Package manager switcher

npx clawhub@latest install neomano-binance-assets
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description (read-only Binance balance viewer) align with required artifacts: python3 and BINANCE_API_KEY / BINANCE_API_SECRET. The script calls Binance's account endpoint and nothing else.
Instruction Scope
SKILL.md and scripts/assets.py only reference the declared env vars and the Binance signed endpoint. The instructions explicitly warn not to expose the secret, and the code does not read other files or transmit data to unexpected endpoints.
Install Mechanism
No install spec; code is instruction-only with an included Python script. Nothing is downloaded or written during install.
Credentials
Only BINANCE_API_KEY and BINANCE_API_SECRET are required, which is proportional for signing Binance account requests. The primaryEnv is correctly declared as BINANCE_API_KEY. The README advises read-only permissions and IP allowlisting.
Persistence & Privilege
always is false and the skill does not request persistent or system-wide privileges. It requires network access to api.binance.com to function (expected). Autonomous invocation is enabled by default but not combined with other red flags.
Assessment
This package appears coherent for viewing Binance spot balances. Before installing: (1) ensure you create API keys with only Read-only permissions (no trading, transfers, or withdrawals) and enable IP allowlisting if possible; (2) store the secret securely (be aware the SKILL.md suggests ~/.openclaw/.env on the gateway — that file will contain your secret and should be protected); (3) review the included script yourself (it is short and readable) and run it in a trusted or ephemeral environment; (4) if you ever suspect the key is exposed, revoke it immediately. The script contacts only https://api.binance.com and does not appear to exfiltrate secrets elsewhere.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🏦 Clawdis
Binspython3
EnvBINANCE_API_KEY, BINANCE_API_SECRET
Primary envBINANCE_API_KEY
assetsvk97bt7gexae9gv14gk50qgbkr1834kgsbinancevk97bt7gexae9gv14gk50qgbkr1834kgscryptovk97bt7gexae9gv14gk50qgbkr1834kgslatestvk97bt7gexae9gv14gk50qgbkr1834kgsread-onlyvk97bt7gexae9gv14gk50qgbkr1834kgssecurityvk97bt7gexae9gv14gk50qgbkr1834kgs
152downloads
1stars
3versions
Updated 1mo ago
v0.1.2
MIT-0

Safety (mandatory)

This skill is designed to be a safe way to query balances.

  • READ-ONLY keys only: In Binance, create an API key with Read-only / Enable Reading permissions.
  • Do not enable trading, margin, futures, transfers, or withdrawals.
  • (Recommended) Restrict the API key by IP allowlist.
  • Never print or send BINANCE_API_SECRET.

Credentials

Set these environment variables (recommended: ~/.openclaw/.env on the gateway machine):

  • BINANCE_API_KEY
  • BINANCE_API_SECRET

What it does

  • Fetch Spot account balances via Binance signed endpoint:
    • GET https://api.binance.com/api/v3/account
  • By default, it filters to non-zero assets.

Run

python3 {baseDir}/scripts/assets.py
python3 {baseDir}/scripts/assets.py --all
python3 {baseDir}/scripts/assets.py --min 0.0001

Comments

Loading comments...