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

n8n-nodes-wax

v0.1.12

Published

n8n Community Node Package for the WAX Blockchain

Downloads

38

Readme

n8n-nodes-wax

This is an n8n community node. It lets you use the WAX Blockchain in your n8n workflows.

The WAX Blockchain is a purpose-built blockchain and protocol token designed to make e-commerce transactions faster, easier, and safer for all participants. It's specifically designed for the transfer of digital assets, including NFTs (Non-Fungible Tokens).

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources
Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

This node package provides the following operations for interacting with the WAX Blockchain:

  • Get Account Info: Fetch detailed account information from the WAX blockchain
  • Get Assets: Retrieve NFT assets owned by an account, with optional filtering by template ID, collection, or schema
  • Get Account Token Balance: Get token balance for an account
  • Transfer Assets: Transfer NFT assets from one account to another
  • Transfer Tokens: Transfer tokens (e.g., WAX) from one account to another
  • Verify Account: Verify if an account exists on the WAX blockchain
  • Buy RAM: Purchase RAM resources for an account on the WAX blockchain
  • Stake CPU: Stake WAX tokens for CPU resources on the blockchain
  • Stake NET: Stake WAX tokens for network bandwidth resources on the blockchain

Credentials

For operations that require signing transactions (Transfer Tokens, Transfer Assets, Buy RAM, Stake CPU, and Stake NET), you'll need to provide:

  • Account Name: Your WAX account name
  • Private Key: The private key associated with your WAX account

To obtain a WAX account and private key:

  1. Create a WAX account through services like WAX Cloud Wallet
  2. Export or generate your private key (keep this secure and never share it)

For read-only operations, no credentials are required, but you'll need to specify the account name as a parameter.

Compatibility

This node requires n8n version 1.0.0 or later.

Usage

API Endpoints

All nodes allow you to specify the API endpoint to use. The default is https://wax.greymass.com, but you can use any WAX RPC endpoint, such as:

  • https://wax.greymass.com
  • https://wax.cryptolions.io
  • https://wax.dapplica.io

Working with NFTs

When using Transfer Assets operation, you'll need to provide:

  • The recipient account name
  • Asset IDs (comma-separated list)
  • Contract (defaults to "atomicassets")

You can use the Get Assets operation to find the asset IDs of NFTs owned by an account.

Token Operations

For Transfer Tokens and Get Account Token Balance operations, you can specify:

  • Token contract (defaults to "eosio.token" for WAX)
  • Token symbol (defaults to "WAX")
  • Precision (number of decimal places, defaults to 8)

Resource Management Operations

The WAX blockchain requires resources (RAM, CPU, and NET) to perform actions:

For Buy RAM operation:

  • Specify the account that will receive the RAM
  • Specify the amount of WAX to spend on RAM

For Stake CPU and Stake NET operations:

  • Specify the account that will receive the staked resources
  • Specify the amount of WAX to stake
  • Option to transfer ownership of staked resources to the recipient account (when enabled, the recipient account gains control of the staked tokens)

Resources

Version history

0.1.7

  • Hide deprecated nodes from the UI search but keep them for backward compatibility for existing workflows

0.1.6

  • Refactored terminology: renamed NFT to Asset throughout the codebase
  • Enhanced token balance options for improved clarity and consistency
  • Combined assets and NFTs functionality for better integration
  • Improved WAX operations with new functionalities and credential management
  • Refined account verification logic and simplified output handling
  • Restructured codebase with resource operations extracted into separate files

0.1.5

  • Initial public release
  • Support for basic WAX blockchain operations
  • NFT and token transfer capabilities