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-nano-rpc

v0.1.0

Published

n8n community node package to execute Nano node RPC commands

Downloads

33

Readme

n8n-nodes-nano-rpc

n8n-nodes-nano-rpc is an n8n community node package for interacting with a Nano node over RPC.

It includes:

  • Nano RPC node for on-demand actions (send, receive, account queries, wallet operations, work generation, admin/debug actions)
  • Nano Trigger node for event-driven workflows via webhook

Installation

Install this package as an n8n community node. See the official n8n guide:

Then add the following nodes in your workflow editor:

  • Nano RPC
  • Nano Trigger

Credentials

Credential type: Nano API

Required

  • RPC URL: URL of your Nano node RPC endpoint (for example http://localhost:7076)

Optional authentication

  • None
  • Basic Auth (username, password)
  • API Key Header (headerName, apiKey)

Optional defaults

  • Wallet ID: default wallet for wallet-dependent operations
  • Default Source Account: default source account for transfer operations

Supported operations

Operations are grouped by resource.

Account

  • Get balance
  • Get account info
  • Get account history
  • Get account block count
  • Get account key / representative / weight
  • Validate address
  • Multi-account balance/frontier/receivable/representative queries

Transaction

  • Send payment
  • Receive pending transaction
  • Process block
  • Check receivable existence
  • Epoch upgrade

Block

  • Confirm block
  • Get block info / account / count
  • Get blocks / blocks info
  • Create block
  • Calculate block hash

Wallet

  • Create/destroy wallet
  • Create/list/remove/move accounts
  • Change/enter/validate wallet password
  • Wallet balances/history/info/ledger/frontiers/receivable/work
  • Set wallet/account representative
  • Set/get account work
  • Wallet add/watch/export/lock
  • Search receivable (single/all wallets)

Network

  • Node version/id/uptime/telemetry
  • Peers and online representatives
  • Keepalive, republish, populate backlog
  • Available supply

Ledger

  • Get chain/successors/frontiers/frontier count
  • Get ledger
  • Get unopened

Confirmation

  • Confirmation active/history/info/quorum
  • Election statistics

Work

  • Generate/validate work
  • Add/list/clear work peers
  • Cancel work

Keys

  • Create key pair
  • Expand key
  • Deterministic key derivation
  • Sign

Administration

  • Bootstrap/bootstrapAny/bootstrapLazy
  • Get/reset bootstrap state
  • Node stats (get/clear)
  • Unchecked blocks (get/clear)
  • Stop node

Conversion

  • Nano → raw (RPC)
  • raw → Nano (RPC)

Usage notes

  • Prefer a trusted/private Nano RPC endpoint for production usage.
  • Operations that mutate wallet or node state should only be enabled for trusted workflows/users.
  • Wallet IDs, block hashes, work values, and account addresses are validated before sensitive operations.
  • RPC calls include timeout and retry handling for transient network failures.

Runtime options

Under Options, the node supports:

  • Timeout (Ms): request timeout per RPC call
  • Max Retries: number of retries for transient failures (timeouts, rate limits, network/server errors)

Compatibility

  • Package is built with the n8n community node tooling (@n8n/node-cli).
  • Peer dependency: n8n-workflow@^2.13.1.
  • Use a Nano node version that supports the RPC actions you invoke.

Development

Available scripts:

  • build
  • dev
  • lint
  • lint:fix
  • release

Resources

Version history

See CHANGELOG.md.