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-base-blockchain

v1.0.0

Published

n8n node for Base Blockchain integration

Downloads

14

Readme

n8n-nodes-base-blockchain

[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 blockchain operations, providing access to 6 core resources including blocks, transactions, accounts, contracts, tokens, and networks. This node enables seamless integration with blockchain networks for querying data, monitoring transactions, managing smart contracts, and automating blockchain-based workflows.

n8n Community Node License TypeScript Blockchain Web3 DeFi

Features

  • Block Operations - Query block data, retrieve block headers, and monitor blockchain height
  • Transaction Management - Send transactions, query transaction status, and retrieve transaction history
  • Account Operations - Check balances, manage addresses, and monitor account activity
  • Smart Contract Integration - Deploy contracts, call contract methods, and monitor contract events
  • Token Operations - Transfer tokens, query token balances, and manage token metadata
  • Network Management - Switch networks, check network status, and retrieve network information
  • Real-time Monitoring - Monitor blockchain events and transaction confirmations
  • Multi-chain Support - Compatible with various blockchain networks and protocols

Installation

Community Nodes (Recommended)

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

Manual Installation

cd ~/.n8n
npm install n8n-nodes-base-blockchain

Development Installation

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

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your blockchain API key for authentication | Yes | | Network URL | RPC endpoint URL for the blockchain network | Yes | | Chain ID | Numeric identifier for the blockchain network | No | | Timeout | Request timeout in milliseconds (default: 30000) | No |

Resources & Operations

1. Block

| Operation | Description | |-----------|-------------| | Get | Retrieve block information by block number or hash | | Get Latest | Get the most recent block data | | Get Range | Retrieve multiple blocks within a specified range | | Get Header | Get block header information only | | Get Transactions | List all transactions in a specific block |

2. Transaction

| Operation | Description | |-----------|-------------| | Send | Broadcast a new transaction to the blockchain | | Get | Retrieve transaction details by transaction hash | | Get Receipt | Get transaction receipt and execution status | | Get History | Retrieve transaction history for an address | | Estimate Gas | Calculate gas requirements for a transaction | | Get Pending | List pending transactions in the mempool |

3. Account

| Operation | Description | |-----------|-------------| | Get Balance | Retrieve account balance for native currency | | Get Nonce | Get the next nonce value for an account | | Get Info | Retrieve comprehensive account information | | Create | Generate a new blockchain account/address | | Import | Import an existing account using private key | | List | List all accounts in the wallet |

4. Contract

| Operation | Description | |-----------|-------------| | Deploy | Deploy a new smart contract to the blockchain | | Call | Execute a read-only contract method | | Send | Execute a state-changing contract method | | Get Code | Retrieve contract bytecode | | Get ABI | Get contract Application Binary Interface | | Listen Events | Monitor contract events and logs |

5. Token

| Operation | Description | |-----------|-------------| | Transfer | Send tokens between addresses | | Get Balance | Check token balance for an address | | Get Info | Retrieve token metadata and information | | Approve | Approve token spending allowance | | Get Allowance | Check approved spending allowance | | Get Supply | Get total token supply information |

6. Network

| Operation | Description | |-----------|-------------| | Get Info | Retrieve network status and information | | Switch | Change active blockchain network | | Get Gas Price | Get current gas price recommendations | | Get Peers | List connected network peers | | Get Sync Status | Check blockchain synchronization status | | Get Version | Get network client version information |

Usage Examples

// Get latest block information
{
  "resource": "block",
  "operation": "getLatest",
  "includeTransactions": true
}
// Send a transaction
{
  "resource": "transaction",
  "operation": "send",
  "to": "0x742d35Cc6634C0532925a3b8D39d8A7B9B2E5d4A",
  "value": "1000000000000000000",
  "gasLimit": "21000"
}
// Check token balance
{
  "resource": "token",
  "operation": "getBalance",
  "contractAddress": "0xA0b86a33E6441b38A0b7c8dd4f87C5b0b8dCd82B",
  "address": "0x742d35Cc6634C0532925a3b8D39d8A7B9B2E5d4A"
}
// Call smart contract method
{
  "resource": "contract",
  "operation": "call",
  "contractAddress": "0xA0b86a33E6441b38A0b7c8dd4f87C5b0b8dCd82B",
  "method": "balanceOf",
  "parameters": ["0x742d35Cc6634C0532925a3b8D39d8A7B9B2E5d4A"]
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Invalid API Key | Authentication failed with provided credentials | Verify API key is correct and has necessary permissions | | Insufficient Gas | Transaction gas limit too low for execution | Increase gas limit or use gas estimation | | Network Timeout | Request exceeded timeout duration | Check network connectivity or increase timeout value | | Invalid Address | Blockchain address format is incorrect | Validate address format for the specific network | | Insufficient Balance | Account lacks funds for transaction | Ensure account has adequate balance including gas fees | | Contract Not Found | Smart contract does not exist at specified address | Verify contract address and deployment status |

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