npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@velocity-bpa/n8n-nodes-chainalysis

v1.0.0

Published

n8n community node for Chainalysis - Screen cryptocurrency addresses, monitor transactions, and assess compliance risks

Downloads

35

Readme

n8n-nodes-chainalysis

[Velocity BPA Licensing Notice]

This n8n node is licensed under the Business Source License 1.1 (BSL 1.1).

Use of this node by for-profit organizations in production environments requires a commercial license from Velocity BPA.

For licensing information, visit https://velobpa.com/licensing or contact [email protected].

This n8n community node provides comprehensive integration with Chainalysis blockchain analytics platform, offering 5 specialized resources for cryptocurrency compliance and investigation workflows. Key capabilities include address screening for sanctions compliance, real-time transaction monitoring, risk assessment scoring, and detailed address intelligence gathering.

n8n Community Node License TypeScript Blockchain Analytics Compliance Cryptocurrency

Features

  • Address Screening - Screen cryptocurrency addresses against sanctions lists and known entities
  • Transaction Monitoring - Monitor blockchain transactions in real-time for suspicious activity
  • Sanctions Compliance - Automated compliance checking against OFAC and international sanctions lists
  • Risk Assessment - Calculate risk scores for addresses and transactions based on behavioral patterns
  • Address Intelligence - Gather comprehensive intelligence on cryptocurrency addresses and entities
  • Multi-Chain Support - Support for Bitcoin, Ethereum, and other major blockchain networks
  • Real-Time Alerts - Configure automated alerts for high-risk transactions and addresses
  • Compliance Reporting - Generate detailed compliance reports for regulatory requirements

Installation

Community Nodes (Recommended)

  1. Open n8n
  2. Go to SettingsCommunity Nodes
  3. Click Install a community node
  4. Enter n8n-nodes-chainalysis
  5. Click Install

Manual Installation

cd ~/.n8n
npm install n8n-nodes-chainalysis

Development Installation

git clone https://github.com/Velocity-BPA/n8n-nodes-chainalysis.git
cd n8n-nodes-chainalysis
npm install
npm run build
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-chainalysis
n8n start

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your Chainalysis API key from the dashboard | Yes | | Environment | API environment (production/sandbox) | Yes | | Base URL | Custom API base URL (optional) | No |

Resources & Operations

1. Address Screening

| Operation | Description | |-----------|-------------| | Screen Address | Screen a single cryptocurrency address against sanctions lists | | Batch Screen | Screen multiple addresses simultaneously | | Get Screening Results | Retrieve results from a previous screening operation | | Update Screening | Update screening parameters for an existing address |

2. Transaction Monitoring

| Operation | Description | |-----------|-------------| | Monitor Transaction | Monitor a specific transaction for compliance violations | | Set Monitoring Rules | Configure automated monitoring rules and thresholds | | Get Monitoring Alerts | Retrieve active monitoring alerts | | Stop Monitoring | Disable monitoring for specific transactions or addresses | | Get Transaction History | Retrieve monitoring history for transactions |

3. Sanctions Compliance

| Operation | Description | |-----------|-------------| | Check Sanctions | Check address or entity against current sanctions lists | | Get Sanctions List | Retrieve current sanctions lists and updates | | Validate Compliance | Perform comprehensive compliance validation | | Generate Compliance Report | Create detailed compliance reports | | Export Compliance Data | Export compliance data for regulatory submissions |

4. Risk Assessment

| Operation | Description | |-----------|-------------| | Calculate Risk Score | Calculate risk score for addresses or transactions | | Get Risk Factors | Retrieve detailed risk factor analysis | | Set Risk Thresholds | Configure custom risk scoring thresholds | | Compare Risk Profiles | Compare risk profiles between multiple addresses | | Generate Risk Report | Create comprehensive risk assessment reports |

5. Address Intelligence

| Operation | Description | |-----------|-------------| | Get Address Intelligence | Retrieve comprehensive intelligence on cryptocurrency addresses | | Get Entity Information | Get detailed information about known entities | | Search Addresses | Search addresses by various criteria | | Get Address Cluster | Retrieve address clustering information | | Get Transaction Graph | Analyze transaction flow and relationships |

Usage Examples

// Screen Bitcoin address for sanctions compliance
{
  "address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
  "currency": "BTC",
  "screening_type": "sanctions"
}
// Monitor Ethereum transaction for suspicious activity
{
  "transaction_hash": "0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060",
  "network": "ethereum",
  "monitoring_rules": ["high_risk_addresses", "large_amounts"]
}
// Calculate risk score for multiple addresses
{
  "addresses": [
    "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
    "3J98t1WpEZ73CNmQviecrnyiWrnqRhWNLy"
  ],
  "risk_factors": ["sanctions", "darkweb", "exchange"],
  "include_details": true
}
// Get comprehensive address intelligence
{
  "address": "34xp4vRoCGJym3xR7yCVPFHoCNxv4Twseo",
  "currency": "BTC",
  "include_transactions": true,
  "include_clustering": true,
  "date_range": "30d"
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Invalid API Key | API authentication failed | Verify API key in credentials | | Rate Limit Exceeded | Too many requests in time period | Implement request throttling | | Address Not Found | Cryptocurrency address not recognized | Verify address format and network | | Insufficient Permissions | API key lacks required permissions | Contact Chainalysis support for access | | Network Timeout | Request timeout during API call | Retry request or check network connectivity | | Invalid Currency | Unsupported cryptocurrency specified | Use supported currency codes (BTC, ETH, etc.) |

Development

npm install
npm run build
npm test
npm run lint
npm run dev

Author

Velocity BPA

Licensing

This n8n community node is licensed under the Business Source License 1.1.

Free Use

Permitted for personal, educational, research, and internal business use.

Commercial Use

Use of this node within any SaaS, PaaS, hosted platform, managed service, or paid automation offering requires a commercial license.

For licensing inquiries: [email protected]

See LICENSE, COMMERCIAL_LICENSE.md, and LICENSING_FAQ.md for details.

Contributing

Contributions are welcome! Please ensure:

  1. Code follows existing style conventions
  2. All tests pass (npm test)
  3. Linting passes (npm run lint)
  4. Documentation is updated for new features
  5. Commit messages are descriptive

Support