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 🙏

© 2025 – Pkg Stats / Ryan Hefner

node-red-contrib-blockchain

v0.1.0

Published

Node-Red packaged node to stamp a hash in blockchain using tierion.com

Downloads

8

Readme

node-red-contrib-blockchain

** A Node-Red node to stamp your data on the blockchain via Tierion.com **

What it is

An easy-to-use node for stamping a hash of your data on the blockchain, thus providing an incontrovertible proof-of-existence. This node uses Tierion.com API to stamp the hash of incoming data onto the blockchain direct from Node-Red.

Key Features:

  • Drag and drop on node-red

  • Fully configurable

  • Produce irrefutable proof and a verifiable, immutable record

Installation

npm install node-red-contrib-blockchain

- This will download this module and place in your node_modules directory.
- This will add 2 new nodes along the left menu of Node-Red when next started.
- blockchain node will take a payload, hash it and stamp it on the blockchain.
- blockchainVerify will take a receiptId from Tierion, verify it and supply the location on the blockchain to corroborate.

Usage of Blockchain node

When you open the node-Red GUI, there will be a node under the "storage" section called blockchain which you can drag onto the board. Then double click to set the configuration.

This module creates a hash your incoming payload and sends that to the Tierion API which stamps that onto the blockchain. You will need an account with Tierion (for free) for the module to work.

Once you have your Tierion.com account, enter your credentials for the blockchain module by double clicking on the node dragged onto the Node-Red canvas.

For a sample usage to get started, inject any sample text string into the input on the left of the node and output the right node to the debug window. If successful it will report an outgoing payload.result of "PASS" and the payload will also have other compononents such as the hash of the incoming data.

Usage of BlockchainVerify node

For the blockchainVerify node, you can locate your API Key from the page https://tierion.com/app/api. That API key must be entered into the configuration of the node. Double click the node to access the configuration. Enable debug to see extra messages in the debug panel.

Input Mandatory: Supply the input with msg.payload.tierionReceiptId which was returned when the initial payload was stamped to the blockchain. Input Optional: Supply the input with msg.payload.dataToHash which was the original payload data. The node will hash that data and confirm it matches the Tierion version of the target hash within the receipt mentioned in the msg.payload.tierionReceiptId.

Output: msg.payload.result will be "PASS" or "FAIL". msg.payload.tierionReceipt is the entire Tieirion receipt in JSON format. msg.blockchainLocation will contain a url to view the particular blockchain transaction which stamped the hash data. You will be able to view the OP_RETURN code and verify it matches the target hash within the receipt.

Tierion.com User Guide

Tierion.com service.

Company site: Tierion.com Tierion uses a system of hashes of hashes to create a scalable system which does not bombard the blockchain, but still provides the original benefits.

Author

Jason Ruane, [email protected], Random Labs, www.jasonruane.com