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-aztec-network

v1.0.0

Published

n8n community node for Aztec Network - privacy-focused Ethereum L2 with zero-knowledge proofs

Readme

n8n-nodes-aztec-network

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

A comprehensive n8n community node for integrating with the Aztec Network, providing access to 6 core resources. This node enables seamless interaction with Aztec's privacy-focused blockchain infrastructure, supporting transaction management, account operations, block exploration, smart contract interactions, note handling, and zero-knowledge proof operations.

n8n Community Node License TypeScript Privacy Blockchain Zero Knowledge

Features

  • Private Transactions - Execute and monitor privacy-preserving transactions on Aztec Network
  • Account Management - Create, query, and manage Aztec accounts with full privacy controls
  • Block Operations - Retrieve block data, headers, and transaction history from the network
  • Smart Contract Integration - Deploy, call, and interact with Aztec smart contracts
  • Note Handling - Create, retrieve, and manage encrypted notes within the Aztec ecosystem
  • Zero-Knowledge Proofs - Generate, verify, and manage ZK proofs for privacy operations
  • Real-time Monitoring - Track transaction status and network events with live updates
  • Privacy Controls - Full support for Aztec's privacy features and viewing key management

Installation

Community Nodes (Recommended)

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

Manual Installation

cd ~/.n8n
npm install n8n-nodes-aztec-network

Development Installation

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

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your Aztec Network API access key | Yes | | Network | Target network (mainnet, testnet, devnet) | Yes | | Endpoint URL | Custom RPC endpoint (optional) | No | | Viewing Key | Private viewing key for encrypted data access | No |

Resources & Operations

1. Transaction

| Operation | Description | |-----------|-------------| | Create | Submit a new private transaction to the Aztec Network | | Get | Retrieve transaction details by hash or ID | | List | Query multiple transactions with filtering options | | Get Status | Check the current status of a transaction | | Get Receipt | Fetch transaction receipt and execution details | | Simulate | Simulate transaction execution without broadcasting |

2. Account

| Operation | Description | |-----------|-------------| | Create | Generate a new Aztec account with private keys | | Get | Retrieve account information and balance details | | Get Balance | Query account balance for specific assets | | Get Nonce | Fetch the current account nonce | | List Transactions | Get transaction history for an account | | Register | Register an account on the Aztec Network |

3. Block

| Operation | Description | |-----------|-------------| | Get | Retrieve block data by number or hash | | Get Latest | Fetch the most recent block information | | Get Header | Get block header without full transaction data | | List | Query multiple blocks with range parameters | | Get Transactions | Retrieve all transactions within a specific block |

4. Contract

| Operation | Description | |-----------|-------------| | Deploy | Deploy a new smart contract to Aztec Network | | Call | Execute a read-only contract function call | | Send | Execute a state-changing contract function | | Get | Retrieve contract information and metadata | | Get Code | Fetch contract bytecode and ABI | | List Events | Query contract events with filtering |

5. Note

| Operation | Description | |-----------|-------------| | Create | Generate a new encrypted note | | Get | Retrieve note data by identifier | | List | Query notes with filtering and pagination | | Decrypt | Decrypt note contents using viewing key | | Nullify | Mark a note as spent/nullified | | Get Commitment | Retrieve note commitment hash |

6. Proof

| Operation | Description | |-----------|-------------| | Generate | Create a zero-knowledge proof for operations | | Verify | Verify the validity of a ZK proof | | Get | Retrieve proof data and metadata | | List | Query proofs with filtering options | | Get Circuit | Fetch proof circuit information |

Usage Examples

// Submit a private transaction
const transaction = await $node["Aztec Network"].json({
  resource: "transaction",
  operation: "create",
  to: "0x1234567890abcdef1234567890abcdef12345678",
  amount: "100000000000000000000",
  asset: "0xabcdef1234567890abcdef1234567890abcdef12",
  private: true
});
// Query account balance
const balance = await $node["Aztec Network"].json({
  resource: "account", 
  operation: "getBalance",
  address: "0x9876543210fedcba9876543210fedcba98765432",
  assetId: "0xabcdef1234567890abcdef1234567890abcdef12"
});
// Deploy a smart contract
const contract = await $node["Aztec Network"].json({
  resource: "contract",
  operation: "deploy",
  bytecode: "0x608060405234801561001057600080fd5b50...",
  constructorArgs: ["initial_value", 42],
  salt: "0x1234567890abcdef"
});
// Generate and verify a ZK proof
const proof = await $node["Aztec Network"].json({
  resource: "proof",
  operation: "generate",
  circuit: "private_transfer",
  inputs: {
    amount: "1000000000000000000",
    recipient: "0xabcdef...",
    nullifier: "0x123456..."
  }
});

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Invalid API Key | Authentication failed with provided credentials | Verify API key is correct and has proper permissions | | Network Unreachable | Unable to connect to Aztec Network | Check network connectivity and endpoint configuration | | Insufficient Balance | Account lacks funds for transaction | Ensure account has sufficient balance for operation | | Invalid Proof | Zero-knowledge proof verification failed | Regenerate proof with correct parameters and inputs | | Contract Not Found | Smart contract address does not exist | Verify contract address and ensure it's deployed | | Note Decryption Failed | Unable to decrypt note with provided key | Check viewing key permissions and note ownership |

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