๐Ÿ”’ Claw Cash

Private payments SDK for AI agents on Solana. Deposit, transfer, withdraw โ€” unlinkable and trustless.

Live on Devnet Solana TypeScript SDK Colosseum Hackathon

Private Payments in Three Steps

1. Deposit

Lock funds into the privacy pool. Only a commitment hash goes on-chain.

โ†’

2. Transfer

Share a voucher file off-chain. Encrypted, via messaging, however you want.

โ†’

3. Withdraw

Recipient reveals the secret. Funds are released. No link to the deposit.

// The crypto โ€” simple but effective commitment = SHA256(secret) // published on-chain recipientHash = SHA256(pubkey || salt) // binds to recipient withdrawal = reveal(secret, salt) // proves knowledge โ†’ funds released

Get Running in 60 Seconds

$ git clone https://github.com/kwaude/claw-cash.git $ cd claw-cash && npm install # Run locally (instant, no network needed) $ npx tsx src/demo.ts # Run on Solana devnet (real transactions) $ npx tsx src/cli.ts demo --network devnet # CLI commands $ npx tsx src/cli.ts deposit --amount 10 $ npx tsx src/cli.ts balance $ npx tsx src/cli.ts list
// Or use the SDK programmatically import { ClawCash } from 'claw-cash'; const client = new ClawCash({ authToken: 'your-token', connection, wallet, }); // Deposit 10 USDC privately const { voucher } = await client.deposit({ amount: 10, recipient: 'RecipientPubkey...', }); // Recipient withdraws const { txSignature } = await client.withdraw({ voucher });

Built for Agents, Not Humans

๐Ÿ”’ Unlinkable Transfers

On-chain footprint reveals nothing about sender-recipient relationship. Commitment scheme breaks the link.

๐Ÿค– Headless SDK

No browser, no UI, no wallet popups. Pure TypeScript โ€” import and go. Built for agents running in the background.

โšก Solana Speed

Sub-second finality. Deposits and withdrawals confirm in ~400ms. No waiting for block confirmations.

๐Ÿ”Œ Swappable Engine

PrivacyEngine interface lets you swap backends. PoC uses our on-chain program. Production-ready for ZERA protocol integration.

๐Ÿ“ฆ Voucher System

Bearer instruments as JSON files. Transfer value by sharing a file โ€” works over any messaging channel. Like digital cash.

๐Ÿงช Tested On-Chain

Anchor program deployed to devnet. Full test suite: deposit, withdraw, double-spend protection, wrong-secret rejection.

The Stack

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ AI Agent (Clawdbot, etc.) โ”‚ โ”‚ "Send $10 privately to AgentB" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ ClawCash SDK โ”‚ โ”‚ deposit() ยท withdraw() ยท balance() โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ crypto โ”‚ api โ”‚ voucher โ”‚ โ”‚ secrets โ”‚ REST API โ”‚ file I/O โ”‚ โ”‚ hashes โ”‚ HTTP โ”‚ serialization โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ PrivacyEngine Interface โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ โ”‚ โ”‚ OurEngine โ”‚ โ”‚ ZeraEngine โ”‚ โ”‚ โ”‚ โ”‚ (devnet) โ”‚ โ”‚ (production) โ”‚ โ”‚ โ”‚ โ”‚ Anchor + โ”‚ โ”‚ Legal-compliant โ”‚ โ”‚ โ”‚ โ”‚ CF Worker โ”‚ โ”‚ ZK privacy โ”‚ โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ Solana โ”‚ โ”‚ USDC ยท SPL ยท Programs โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

$CLAWCASH

Name Claw Cash
Symbol CLAWCASH
Chain Solana
Supply 2,000,000,000
Decimals 6
Mint Authority Revoked โœ“
Freeze Authority Revoked โœ“