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-wax

v1.0.0

Published

n8n community node for WAX blockchain AtomicAssets and AtomicMarket APIs

Downloads

146

Readme

n8n-nodes-wax

[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].

This n8n community node provides comprehensive integration with the WAX blockchain ecosystem, offering access to 6 key resources including AtomicAssets, AtomicMarket, account management, and transaction operations. It enables seamless automation of NFT marketplace operations, blockchain account monitoring, and asset management workflows within n8n.

n8n Community Node License TypeScript WAX Blockchain AtomicAssets AtomicMarket

Features

  • AtomicAssets Integration - Complete NFT asset management including minting, transferring, and querying assets
  • AtomicMarket Operations - Full marketplace functionality for listings, sales, auctions, and market analytics
  • Account Management - Comprehensive WAX account operations including balance checks, permission management, and account history
  • Transfer Operations - Native WAX token and NFT transfer capabilities with transaction tracking
  • Burn Operations - Asset burning functionality for NFT destruction and token deflation mechanisms
  • Configuration Management - Dynamic WAX network configuration and endpoint management
  • Real-time Monitoring - Live blockchain event monitoring and transaction status tracking
  • Batch Processing - Efficient bulk operations for large-scale asset and transaction management

Installation

Community Nodes (Recommended)

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

Manual Installation

cd ~/.n8n
npm install n8n-nodes-wax

Development Installation

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

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your WAX API access key for authenticated operations | Yes | | Environment | Target WAX network environment (mainnet/testnet) | Yes | | Endpoint URL | Custom WAX API endpoint URL (optional override) | No |

Resources & Operations

1. AtomicAssets

| Operation | Description | |-----------|-------------| | Get Assets | Retrieve NFT assets by owner, collection, or template | | Get Asset Details | Fetch detailed information for a specific asset | | Create Asset | Mint new NFT assets with metadata | | Transfer Asset | Transfer assets between WAX accounts | | Update Asset | Modify mutable asset attributes | | Get Collections | List available NFT collections | | Get Templates | Retrieve asset templates and schemas | | Get Schema | Fetch collection schema definitions |

2. AtomicMarket

| Operation | Description | |-----------|-------------| | Get Sales | Retrieve active and completed marketplace sales | | Create Sale | List assets for sale on the marketplace | | Cancel Sale | Remove assets from marketplace listings | | Purchase Asset | Buy assets from marketplace listings | | Get Auctions | Fetch active and completed auction listings | | Create Auction | List assets for auction with bidding | | Place Bid | Submit bids on auction listings | | Get Market Stats | Retrieve marketplace analytics and statistics |

3. Accounts

| Operation | Description | |-----------|-------------| | Get Account Info | Retrieve detailed WAX account information | | Get Account Balance | Check WAX and token balances | | Get Account History | Fetch transaction history for accounts | | Get Permissions | Retrieve account permission structure | | Update Permissions | Modify account permission settings | | Get Resources | Check CPU, NET, and RAM allocations | | Stake Resources | Stake WAX for CPU and NET resources |

4. Transfers

| Operation | Description | |-----------|-------------| | Send WAX | Transfer native WAX tokens between accounts | | Send Tokens | Transfer custom tokens on WAX blockchain | | Get Transfer History | Retrieve transfer transaction records | | Bulk Transfer | Execute multiple transfers in batch | | Validate Transfer | Verify transfer parameters before execution | | Get Transaction Status | Check status of pending transfers |

5. Burns

| Operation | Description | |-----------|-------------| | Burn Asset | Permanently destroy NFT assets | | Burn Tokens | Burn fungible tokens to reduce supply | | Get Burn History | Retrieve records of burned assets | | Bulk Burn | Execute multiple burn operations | | Validate Burn | Verify burn parameters before execution |

6. Config

| Operation | Description | |-----------|-------------| | Get Network Info | Retrieve WAX network configuration | | Get API Endpoints | List available API endpoints | | Update Settings | Modify node configuration settings | | Test Connection | Verify connectivity to WAX network | | Get Chain Info | Fetch current blockchain information |

Usage Examples

// Get all NFTs owned by an account
{
  "resource": "AtomicAssets",
  "operation": "Get Assets",
  "owner": "waxaccount123",
  "limit": 100,
  "page": 1
}
// Create a marketplace sale listing
{
  "resource": "AtomicMarket", 
  "operation": "Create Sale",
  "seller": "mynftaccount",
  "asset_ids": ["1099511627776", "1099511627777"],
  "listing_price": "100.00000000 WAX",
  "settlement_symbol": "WAX"
}
// Transfer WAX tokens between accounts
{
  "resource": "Transfers",
  "operation": "Send WAX",
  "from": "senderaccount",
  "to": "receiveracct",
  "quantity": "50.00000000 WAX",
  "memo": "Payment for services"
}
// Check account balance and resources
{
  "resource": "Accounts",
  "operation": "Get Account Info",
  "account_name": "waxaccount123",
  "include_resources": true,
  "include_permissions": false
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Invalid API Key | Authentication failed with provided credentials | Verify API key is correct and has necessary permissions | | Insufficient Resources | Account lacks CPU/NET for transaction | Stake more WAX for resources or wait for regeneration | | Asset Not Found | Requested NFT asset does not exist | Verify asset ID is correct and asset hasn't been burned | | Account Not Found | WAX account name does not exist | Check account name spelling and existence on blockchain | | Transaction Failed | Blockchain transaction was rejected | Review transaction parameters and account permissions | | Rate Limit Exceeded | Too many API requests in short timeframe | Implement delays between requests or upgrade API plan |

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