Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions examples/crypto-butler/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# .env.local
# Copy this file to .env.local and fill in your values

# ── ANTHROPIC ──────────────────────────────────────
ANTHROPIC_API_KEY=sk-ant-your-key-here

# ── WALLETCONNECT (get free projectId at cloud.walletconnect.com) ──
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID=your_project_id_here

# ── OPTIONAL: ALCHEMY for Base Sepolia RPC ────────
NEXT_PUBLIC_ALCHEMY_ID=your_alchemy_id_here

# ── UTXOs.dev Project ID (server-side only) ────────
UTXOS_PROJECT_ID=your_project_id

# ── Blockfrost API Keys (server-side only) ────────
BLOCKFROST_API_KEY_PREPROD=preprodxxxxxxxx
BLOCKFROST_API_KEY_MAINNET=mainnetxxxxxxxx
26 changes: 26 additions & 0 deletions examples/crypto-butler/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Contributing to Crypto Butler

Contributions are welcome. Please open an issue before submitting a pull request.

## Development Setup
```bash
git clone https://github.com/your-username/crypto-butler
cd crypto-butler
npm install
cp .env.example .env.local
npm run dev
```

## Areas Where Contributions Are Needed

- Additional Cardano protocol integrations for yield data
- Improved risk scoring logic in the Risk Agent
- M-Pesa API integration
- Mobile-responsive UI improvements
- Smart contract development for on-chain execution

## Pull Request Guidelines

- One feature or fix per pull request
- Include a clear description of what changed and why
- Test on Cardano Preprod testnet before submitting
Loading