
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
fundtracer-cli
Advanced tools
Command-line interface for blockchain wallet forensics and analysis. Now with optimized Sybil detection using 20 API keys and parallel processing.
# Clone the repository
git clone https://github.com/Deji-Tech/fundtracer-by-dt.git
cd fundtracer-by-dt
# Install dependencies
npm install
# Build all packages
npm run build
# Link CLI globally
npm link --workspace=@fundtracer/cli
# OR add to PATH:
export PATH="$HOME/.local/bin:$PATH"
Before using the CLI, set your Alchemy API key:
# Set your API key
fundtracer config --set-key alchemy:YOUR_ALCHEMY_API_KEY
# Add optional providers for faster analysis
fundtracer config --set-key moralis:YOUR_MORALIS_KEY
fundtracer config --set-key dune:YOUR_DUNE_KEY
# Configure Sybil detection keys (20 keys for parallel processing)
# Set these as environment variables:
export SYBIL_WALLET_KEY_1=your_key_1
export SYBIL_WALLET_KEY_2=your_key_2
# ... up to SYBIL_WALLET_KEY_10
export SYBIL_CONTRACT_KEY_1=your_key_1
export SYBIL_CONTRACT_KEY_2=your_key_2
# ... up to SYBIL_CONTRACT_KEY_10
# Verify configuration
fundtracer config --show
Get Free API Keys:
# Basic analysis
fundtracer analyze 0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71
# Specify chain
fundtracer analyze 0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71 --chain ethereum
# Set analysis depth (1-5)
fundtracer analyze 0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71 --depth 3
# Output as JSON
fundtracer analyze 0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71 --output json
# Export to CSV
fundtracer analyze 0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71 --output csv --export results.csv
# Filter by minimum value
fundtracer analyze 0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71 --min-value 0.1
Uses OptimizedSybilAnalyzer with 20 API keys for parallel processing (10-20x faster):
# Compare 2+ wallets
fundtracer compare 0xAddress1 0xAddress2 0xAddress3
# Read from file
fundtracer compare --file addresses.txt
# Custom cluster size threshold
fundtracer compare 0xAddr1 0xAddr2 --min-cluster 5
# Adjust parallelism (1-20)
fundtracer compare 0xAddr1 0xAddr2 --concurrency 15
# Export results
fundtracer compare 0xAddr1 0xAddr2 --output csv --export sybil-results.csv
# View all assets
fundtracer portfolio 0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71
# NFTs only
fundtracer portfolio 0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71 --nfts
# Tokens only
fundtracer portfolio 0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71 --tokens
# Export to CSV
fundtracer portfolio 0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71 --output csv
Analyze multiple wallets from a file efficiently:
# Create address file
cat > addresses.txt << EOF
0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71
0x8ba1f109551bD432803012645Hac136c82C3e72c
0xdAC17F958D2ee523a2206206994597C13D831ec7
EOF
# Run batch analysis
fundtracer batch addresses.txt
# Parallel processing (faster)
fundtracer batch addresses.txt --parallel 10
# Export results
fundtracer batch addresses.txt --output csv --export batch-results.csv
# Start interactive shell
fundtracer
# or
fundtracer interactive
# Commands in interactive mode:
> analyze 0x...
> compare 0x... 0x...
> portfolio 0x...
> batch addresses.txt
> config
> exit
| Chain | Flag | Status |
|---|---|---|
| Ethereum | ethereum | ✅ Supported |
| Linea | linea | ✅ Supported |
| Arbitrum | arbitrum | ✅ Supported |
| Base | base | ✅ Supported |
| Optimism | optimism | ✅ Supported |
| Polygon | polygon | ✅ Supported |
═══ Wallet Information ═══
┌──────────────────┬────────────────────────────────────────────┐
│ Address │ 0x742d35Cc6634C0532925a3b844Bc9e7595f8fC71 │
│ Chain │ ETHEREUM │
│ Balance │ 2.5 ETH │
│ Total Transactions│ 42 │
│ Is Contract │ No │
└──────────────────┴────────────────────────────────────────────┘
═══ Risk Assessment ═══
Risk Score: 72/100 (HIGH)
⚠ Suspicious Activity Detected:
┌────────────────────┬──────────┬──────────────────────────────────────────┐
│ Type │ Severity │ Description │
├────────────────────┼──────────┼──────────────────────────────────────────┤
│ rapid movement │ high │ 5 rapid fund movements detected │
│ same block activity│ medium │ Transactions in 3 same blocks │
│ circular flow │ medium │ Circular fund flow detected │
└────────────────────┴──────────┴──────────────────────────────────────────┘
🔍 Sybil Detection Analysis
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Wallets: 150
API Keys: 20 (for parallel processing)
Concurrency: 10x
✓ Analysis complete in 12.5s!
═══ Sybil Analysis Results ═══
⚠ HIGH RISK: Sybil Activity Detected
═══ Risk Distribution ═══
┌─────────────┬─────────┬────────────┐
│ Risk Level │ Count │ Percentage │
├─────────────┼─────────┼────────────┤
│ 🔴 High │ 45 │ 30.0% │
│ 🟡 Medium │ 30 │ 20.0% │
│ 🟢 Low │ 75 │ 50.0% │
└─────────────┴─────────┴────────────┘
═══ Detected Clusters (3) ═══
Cluster #1
Sybil Score: 92/100
Wallets: 25
Funding Source: 0xabc...def
Flags: rapid_funding, similar_amounts
--concurrency setting (default: 10)# Primary API keys
export ALCHEMY_API_KEY=your_key
export MORALIS_API_KEY=your_key
export DUNE_API_KEY=your_key
# Sybil detection keys (20 keys for parallel processing)
export SYBIL_WALLET_KEY_1=your_key
export SYBIL_WALLET_KEY_2=your_key
# ... up to SYBIL_WALLET_KEY_10
export SYBIL_CONTRACT_KEY_1=your_key
export SYBIL_CONTRACT_KEY_2=your_key
# ... up to SYBIL_CONTRACT_KEY_10
Run fundtracer config --set-key alchemy:YOUR_KEY first.
The CLI automatically handles rate limits with exponential backoff. For heavy usage:
--concurrency if neededEnsure addresses are valid 42-character Ethereum addresses starting with 0x.
Configure 20 API keys via environment variables for 10-20x speed improvement.
MIT License - Built by DT Development
FAQs
FundTracer CLI - Terminal-based blockchain wallet analyzer
We found that fundtracer-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.