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-beam

v1.0.0

Published

n8n node for Beam blockchain platform - wallet management and blockchain services

Readme

n8n-nodes-beam

[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].

A comprehensive n8n community node for integrating with Beam blockchain network. This node provides access to 5 core resources including wallet management, transaction processing, address operations, asset management, and node information retrieval with full support for Beam's privacy-focused blockchain capabilities.

n8n Community Node License TypeScript Beam Privacy MimbleWimble

Features

  • Wallet Management - Create, manage, and monitor Beam wallets with full balance tracking
  • Transaction Processing - Send, receive, and query transactions on the Beam network
  • Address Operations - Generate and validate Beam addresses with privacy controls
  • Asset Management - Handle Beam native tokens and confidential assets
  • Node Information - Access blockchain status, sync progress, and network statistics
  • Privacy Controls - Leverage Beam's MimbleWimble protocol for confidential transactions
  • Error Handling - Comprehensive error management with detailed response codes
  • Type Safety - Full TypeScript support for reliable automation workflows

Installation

Community Nodes (Recommended)

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

Manual Installation

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

Development Installation

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

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your Beam wallet API key for authentication | Yes | | Wallet Password | Password for wallet operations (if required) | No | | Node URL | Custom Beam node URL (defaults to local node) | No |

Resources & Operations

1. Wallet

| Operation | Description | |-----------|-------------| | Get Status | Retrieve wallet status and synchronization information | | Get Balance | Get current wallet balance and available funds | | Create Address | Generate new receiving addresses | | Validate Address | Verify address format and validity | | Export Seed | Export wallet seed phrase for backup | | Import Data | Import wallet data from backup |

2. Transaction

| Operation | Description | |-----------|-------------| | Send | Send BEAM or assets to specified address | | Cancel | Cancel pending transaction | | Get List | Retrieve transaction history with filtering | | Get Details | Get detailed information about specific transaction | | Get UTXO | List unspent transaction outputs | | Split UTXO | Split UTXO for better privacy management |

3. Address

| Operation | Description | |-----------|-------------| | Create | Generate new address with optional expiration | | List | Get all addresses associated with wallet | | Edit | Modify address properties and labels | | Delete | Remove address from wallet | | Validate | Check if address is valid Beam address | | Get Info | Retrieve detailed address information |

4. Asset

| Operation | Description | |-----------|-------------| | Get List | List all available assets in wallet | | Get Info | Get detailed asset information and metadata | | Issue | Create new confidential asset | | Consume | Burn/consume existing asset | | Get Balance | Check balance for specific asset | | Transfer | Send asset to another address |

5. Node

| Operation | Description | |-----------|-------------| | Get Status | Retrieve node synchronization status | | Get Network | Get network information and peers | | Get Version | Check node software version | | Get Peers | List connected peer nodes | | Get Height | Get current blockchain height | | Get Difficulty | Retrieve current mining difficulty |

Usage Examples

// Send BEAM transaction
{
  "operation": "send",
  "address": "beam1qyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpqyqs",
  "value": 1000000000, // 10 BEAM in groth
  "comment": "Payment for services"
}
// Create new address
{
  "operation": "create",
  "type": "regular",
  "expiration": "24h",
  "comment": "Invoice payment address"
}
// Get transaction history
{
  "operation": "getList",
  "filter": {
    "status": "completed",
    "height": {
      "from": 1500000,
      "to": 1600000
    }
  }
}
// Check wallet balance
{
  "operation": "getBalance",
  "assets": true,
  "nzOnly": true
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | InvalidAddress | Provided address format is incorrect | Verify address format and checksum | | InsufficientFunds | Wallet balance too low for transaction | Check balance and reduce amount | | NodeNotSynced | Wallet node is not synchronized | Wait for sync completion or check connection | | InvalidAmount | Transaction amount is invalid or too small | Use valid amount (minimum 1 groth) | | WalletLocked | Wallet requires password authentication | Provide correct wallet password | | NetworkError | Cannot connect to Beam node | Check node URL and network connectivity |

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