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

n8n-nodes-blockia-pay

v0.4.0

Published

Automate payments with Agents by using the Blockia Pay node

Readme

n8n-nodes-blockia-pay

This is an n8n community node that integrates the Blockia Pay service into your n8n workflows.

Blockia Pay is a secure, decentralized payment processing service that enables automated crypto and digital asset transactions using the Blockia Agent SDK.

n8n is a fair-code licensed workflow automation platform that lets you connect APIs, databases, and apps together with visual workflows.


🧹 Installation

Follow the n8n community node installation guide.

After installing n8n locally via npm go to the terminal and write:

cd ~/.n8n/custom
npm install n8n-nodes-blockia-pay
n8n start

If successful, n8n will recognize the new node and display Blockia Pay in the node selection menu.


⚙️ Operations

The Blockia Pay Node currently supports the following operations:

| Operation | Description | | ------------------------- | -------------------------------------------------------------------- | | Get Payment Link Info | Retrieves details of an existing payment request. | | Make Payment | Executes a payment based on the payment requirements. | | Get Balance | Fetches the current balance of the user's wallet. | | Fetch With Payment | Calls the premium API endpoint and handles the payment negotiations. |

Each operation corresponds to a method in the Blockia SDK and returns both structured JSON and a readable response for downstream nodes.


🔑 Agent SDK Parameters

The Blockia Agent SDK requires three configuration parameters to complete the payment process.

Parameters

  • apiUrl – The base URL of the Blockia Agent API used for payment operations.
  • chainId – The ID of the Ethereum network to interact with (e.g.84532 for Sepolia).
  • privateKey – The private key from your Ethereum wallet (e.g., MetaMask) used to sign transactions.

🧪 Compatibility


🚀 Usage

  1. Open n8n and create a new workflow.
  2. Add a new node and search for Blockia Pay.
  3. Choose an operation such as “Get Payment Link Info” or “Make Payment”.
  4. Provide the required parameters for the Agent SDK.
  5. Provide the required and additional fields.
  6. Connect it to other nodes (e.g. HTTP Request, Set, IF) to build your payment logic.

Example Workflow

graph LR
A[Start] --> B[Blockia Pay: Fetch Payment Requirements]
B -->|Yes| C[Blockia Pay: Make Payment]
D -->|No| D[Send the error message to Slack]

This workflow automates payment process to make it easier for user experience.


📚 Resources


🕚 Version History

| Version | Date | Changes | | --------- | ---------- | ------------------------------------------------------------ | | 0.1.0 | 2025-10-22 | Initial creation of Blockia Pay node for automatic payments | | 0.2.0 | 2025-10-24 | Added fields and improved it according to the sdk. | | 0.2.1 | 2025-10-24 | Refined README documentation and refactored node parameters. | | 0.3.0 | 2025-10-27 | Adding new operation get balance and refactored code. | | 0.4.0 | 2025-11-5 | Adding new operation fetch with payment. |