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-hedera-hashgraph

v1.0.0

Published

n8n community node for Hedera Hashgraph

Downloads

112

Readme

n8n-nodes-hedera-hashgraph

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

An n8n community node providing comprehensive integration with Hedera Hashgraph's distributed ledger technology. This node implements 6 core resources enabling account management, transaction processing, token operations, scheduled transactions, consensus messaging, and smart contract interactions on the Hedera network.

n8n Community Node License TypeScript Hedera DLT Enterprise

Features

  • Account Management - Create, update, and query Hedera accounts with comprehensive balance and transaction history tracking
  • Transaction Processing - Execute HBAR transfers, multi-signature transactions, and complex payment workflows with finality guarantees
  • Token Operations - Create, mint, burn, transfer, and manage fungible and non-fungible tokens on Hedera Token Service
  • Scheduled Transactions - Create, sign, and execute time-delayed transactions with multi-party approval workflows
  • Consensus Service - Submit and subscribe to topic messages for decentralized messaging and audit trails
  • Smart Contract Integration - Deploy, call, and query Hedera smart contracts with full EVM compatibility
  • Real-time Monitoring - Track transaction status, account changes, and network events with instant finality
  • Enterprise Security - Multi-signature support, threshold keys, and enterprise-grade cryptographic operations

Installation

Community Nodes (Recommended)

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

Manual Installation

cd ~/.n8n
npm install n8n-nodes-hedera-hashgraph

Development Installation

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

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | Network | Hedera network environment (mainnet, testnet, previewnet) | Yes | | Account ID | Your Hedera account ID (format: 0.0.xxxxx) | Yes | | Private Key | Account private key in DER or hex format | Yes | | API Key | Optional API key for enhanced rate limits | No |

Resources & Operations

1. Account

| Operation | Description | |-----------|-------------| | Create | Create a new Hedera account with initial balance | | Get Balance | Retrieve account balance and token holdings | | Get Info | Get detailed account information and properties | | Update | Modify account properties and keys | | Delete | Mark account for deletion and transfer remaining balance | | Get Records | Retrieve account transaction history |

2. Transaction

| Operation | Description | |-----------|-------------| | Transfer HBAR | Send HBAR between accounts with memo support | | Transfer Tokens | Transfer fungible or non-fungible tokens | | Get Transaction | Retrieve transaction details by transaction ID | | Get Receipt | Get transaction receipt and status | | Get Record | Get complete transaction record with fees | | Multi Transfer | Execute complex multi-party transfers in single transaction |

3. Token

| Operation | Description | |-----------|-------------| | Create | Create new fungible or non-fungible token | | Mint | Mint additional token supply | | Burn | Burn tokens from treasury or associated accounts | | Associate | Associate token with account for transfers | | Dissociate | Remove token association from account | | Update | Modify token properties and settings | | Get Info | Retrieve token metadata and supply information | | Freeze/Unfreeze | Control token transferability for specific accounts |

4. Schedule

| Operation | Description | |-----------|-------------| | Create | Create scheduled transaction for future execution | | Sign | Add signature to pending scheduled transaction | | Get Info | Retrieve scheduled transaction details and signers | | Delete | Cancel pending scheduled transaction | | Execute | Manually trigger scheduled transaction execution |

5. TopicMessage

| Operation | Description | |-----------|-------------| | Create Topic | Create new consensus topic | | Submit Message | Submit message to consensus topic | | Get Topic Info | Retrieve topic metadata and settings | | Update Topic | Modify topic properties and access controls | | Delete Topic | Mark topic for deletion | | Subscribe | Subscribe to real-time topic message stream |

6. Contract

| Operation | Description | |-----------|-------------| | Create | Deploy smart contract to Hedera network | | Call | Execute contract function with parameters | | Query | Read contract state without state changes | | Get Info | Retrieve contract metadata and bytecode | | Update | Modify contract properties and admin key | | Delete | Mark contract for deletion | | Get Records | Retrieve contract execution history |

Usage Examples

// Transfer HBAR between accounts
{
  "resource": "Transaction",
  "operation": "Transfer HBAR",
  "fromAccountId": "0.0.12345",
  "toAccountId": "0.0.67890",
  "amount": "100.50",
  "memo": "Payment for services"
}
// Create a new fungible token
{
  "resource": "Token",
  "operation": "Create",
  "name": "MyToken",
  "symbol": "MTK",
  "decimals": 2,
  "initialSupply": "1000000",
  "treasuryAccountId": "0.0.12345"
}
// Submit message to consensus topic
{
  "resource": "TopicMessage", 
  "operation": "Submit Message",
  "topicId": "0.0.54321",
  "message": "Important audit log entry",
  "submitKey": "302e020100300506032b657004220420..."
}
// Create scheduled transaction
{
  "resource": "Schedule",
  "operation": "Create",
  "scheduledTransaction": {
    "type": "Transfer HBAR",
    "fromAccountId": "0.0.12345",
    "toAccountId": "0.0.67890", 
    "amount": "500.00"
  },
  "memo": "Scheduled payment"
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | INSUFFICIENT_ACCOUNT_BALANCE | Account lacks sufficient HBAR for transaction | Verify account balance and reduce transaction amount | | INVALID_ACCOUNT_ID | Malformed or non-existent account ID | Check account ID format (0.0.xxxxx) and existence | | INVALID_SIGNATURE | Transaction signature verification failed | Verify private key matches account and signature format | | TOKEN_NOT_ASSOCIATED_TO_ACCOUNT | Account not associated with token | Associate token to account before transfer | | TRANSACTION_EXPIRED | Transaction exceeded validity duration | Reduce transaction validity period or retry | | INSUFFICIENT_TOKEN_BALANCE | Account lacks sufficient token balance | Verify token balance before transfer |

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