Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
bankrbot avatar

Veil

  • 1 installs
  • 1.2k repo stars
  • Updated August 1, 2026
  • bankrbot/clawdbot-skill

Veil is a Claude skill that wraps the Veil Cash SDK to run private, ZK-shielded ETH and USDC transactions on Base, with deposits signed via Bankr.

About

Veil is a skill that wraps the Veil Cash SDK CLI to run private, shielded transactions on Base. A developer or agent uses it to generate a Veil keypair, deposit ETH or USDC into private pools, and withdraw or transfer privately using ZK proofs. Deposits are built as Bankr-compatible transactions and signed through Bankr, so it matters when an agent needs anonymous onchain transfers.

  • Private, shielded ETH and USDC transactions on Base via Veil Cash and ZK proofs
  • Wraps the @veil-cash/sdk CLI: keypair management, balances, deposit, withdraw, transfer, merge
  • Deposits are built as Bankr-compatible unsigned transactions and signed via Bankr

Veil by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #426 of 479 Web3 & Blockchain skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
At a glance

veil capabilities & compatibility

Needs a dedicated Base RPC (Alchemy/Infura) and a Bankr API key plus onchain gas; SDK itself is free

Capabilities
private transfer · shielded deposit · zk withdraw · bankr transaction
Use cases
trading
Pricing
Bring your own API key
From the docs

What veil says it does

Privacy and shielded transactions on Base via Veil Cash (veil.cash). Deposit ETH or USDC into private pools, withdraw/transfer privately using ZK proofs.
SKILL.md
This skill wraps the `@veil-cash/sdk` CLI to make Veil operations agent-friendly.
SKILL.md
build **Bankr-compatible unsigned transactions** and ask Bankr to sign & submit
SKILL.md
npx skills add https://github.com/bankrbot/clawdbot-skill --skill veil

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars1.2k
Last updatedAugust 1, 2026
Repositorybankrbot/clawdbot-skill

What it does

Run private, shielded ETH or USDC transactions on Base using Veil Cash ZK proofs, signed via Bankr.

Who is it for?

agents that need anonymous or shielded ETH/USDC transfers on Base

Skip if: public transparent transfers or non-Base chains

When should I use this skill?

when the user wants anonymous or private transactions, shielded transfers, or ZK-based privacy on Base

What you get

Private deposits, withdrawals, and transfers of ETH or USDC on Base using ZK proofs.

  • veil keypair
  • private deposit
  • private withdrawal

By the numbers

  • 2 supported assets (ETH, USDC)
  • 11-step quick start

Files

SKILL.mdMarkdownGitHub ↗

Veil

This skill wraps the @veil-cash/sdk CLI to make Veil operations agent-friendly.

Supported Assets

AssetDecimalsDescription
ETH18Native ETH (via WETH)
USDC6USDC on Base

What it does

  • Key management: generate and store a Veil keypair locally
  • Status check: verify configuration, registration, and relay health
  • Balances: veil balance (queue + private) — supports --pool eth|usdc
  • Deposits via Bankr: build Bankr-compatible unsigned transactions and ask Bankr to sign & submit (handles ERC20 approve + deposit for USDC)
  • Private actions: withdraw, transfer, merge for ETH or USDC — executed locally using VEIL_KEY (ZK/proof flow)

File locations (recommended)

  • Veil keys: ~/.clawdbot/skills/veil/.env.veil (chmod 600)
  • Bankr API key: ~/.clawdbot/skills/bankr/config.json

Quick start

1) Install the Veil SDK

Option A: Global npm install (recommended)

npm install -g @veil-cash/sdk

Option B: Clone from GitHub

mkdir -p ~/.openclaw/workspace/repos
cd ~/.openclaw/workspace/repos
git clone https://github.com/veildotcash/veildotcash-sdk.git
cd veildotcash-sdk
npm ci && npm run build

2) Configure Base RPC (recommended)

Veil queries a lot of blockchain data (UTXOs, merkle proofs, etc.), so public RPCs will likely hit rate limits. A dedicated RPC from Alchemy, Infura, or similar is recommended.

Put RPC_URL=... in one of these:

  • ~/.clawdbot/skills/veil/.env (preferred)
  • or the SDK repo .env (less ideal)

Example:

mkdir -p ~/.clawdbot/skills/veil
cat > ~/.clawdbot/skills/veil/.env << 'EOF'
RPC_URL=https://base-mainnet.g.alchemy.com/v2/YOUR_KEY
EOF
chmod 600 ~/.clawdbot/skills/veil/.env

3) Make scripts executable

chmod +x scripts/*.sh

4) Generate your Veil keypair

scripts/veil-init.sh
scripts/veil-keypair.sh

5) Check your setup

scripts/veil-status.sh

6) Find your Bankr Base address

scripts/veil-bankr-prompt.sh "What is my Base wallet address? Respond with just the address."

7) Check balances

# ETH pool (default)
scripts/veil-balance.sh --address 0xYOUR_BANKR_ADDRESS

# USDC pool
scripts/veil-balance.sh --address 0xYOUR_BANKR_ADDRESS --pool usdc

8) Deposit via Bankr (sign & submit)

# Deposit ETH
scripts/veil-deposit-via-bankr.sh ETH 0.011 --address 0xYOUR_BANKR_ADDRESS

# Deposit USDC (auto-handles approve + deposit)
scripts/veil-deposit-via-bankr.sh USDC 100 --address 0xYOUR_BANKR_ADDRESS

9) Withdraw (private to public)

scripts/veil-withdraw.sh ETH 0.007 0xYOUR_BANKR_ADDRESS
scripts/veil-withdraw.sh USDC 50 0xRECIPIENT

10) Transfer privately

scripts/veil-transfer.sh ETH 0.01 0xRECIPIENT
scripts/veil-transfer.sh USDC 25 0xRECIPIENT

11) Merge UTXOs

scripts/veil-merge.sh ETH 0.1
scripts/veil-merge.sh USDC 100

References

  • SDK Reference — CLI commands, environment variables, error codes
  • Troubleshooting — Common issues and debugging tips

Notes

  • For Bankr signing, this skill uses Bankr's Agent API via your local ~/.clawdbot/skills/bankr/config.json.
  • For USDC deposits via Bankr, the skill automatically submits the ERC20 approval transaction first, then the deposit transaction.
  • For privacy safety: never commit .env.veil or .env files to git.

Related skills

FAQ

What assets does Veil support?

ETH (18 decimals, via WETH) and USDC (6 decimals) on Base.

How are Veil deposits signed?

The skill builds Bankr-compatible unsigned transactions and asks Bankr to sign and submit them.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.