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-zksync-era

v1.0.0

Published

n8n community node for zkSync Era blockchain operations

Readme

n8n-nodes-zksync-era

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

An n8n community node for interacting with zkSync Era, Ethereum's leading Layer 2 scaling solution. This node provides access to 7 comprehensive resources including accounts, transactions, blocks, bridges, paymasters, proofs, and smart contracts, enabling seamless integration with zkSync Era's high-performance blockchain infrastructure.

n8n Community Node License TypeScript zkSync Era Layer 2 Smart Contracts

Features

  • Account Management - Query account balances, nonces, transaction history, and deploy accounts
  • Transaction Operations - Send transactions, check status, estimate fees, and retrieve transaction details
  • Block Explorer - Access block information, finalized blocks, and L1 batch details
  • Bridge Functionality - Deposit and withdraw assets between Ethereum L1 and zkSync Era L2
  • Paymaster Integration - Utilize account abstraction with custom fee payment methods
  • Proof Verification - Generate and verify zero-knowledge proofs for transactions and blocks
  • Smart Contract Interaction - Deploy, call, and manage smart contracts on zkSync Era
  • High Performance - Leverage zkSync Era's fast finality and low transaction costs

Installation

Community Nodes (Recommended)

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

Manual Installation

cd ~/.n8n
npm install n8n-nodes-zksync-era

Development Installation

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

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your zkSync Era RPC endpoint API key | Yes | | RPC URL | zkSync Era RPC endpoint URL (mainnet/testnet) | Yes | | Network | Target network (mainnet, goerli, sepolia) | Yes | | Private Key | Wallet private key for transaction signing | No* |

*Required only for operations that involve sending transactions or signing data

Resources & Operations

1. Account

| Operation | Description | |-----------|-------------| | Get Balance | Retrieve ETH or token balance for an account | | Get Nonce | Get the current nonce for an account | | Get Transaction History | Fetch transaction history for an account | | Deploy Account | Deploy a new smart contract account | | Get Account Info | Retrieve comprehensive account information |

2. Transaction

| Operation | Description | |-----------|-------------| | Send Transaction | Submit a transaction to zkSync Era | | Get Transaction | Retrieve transaction details by hash | | Get Transaction Status | Check transaction confirmation status | | Estimate Fee | Calculate gas fees for a transaction | | Get Receipt | Get transaction receipt with logs and events | | Wait for Confirmation | Wait for transaction to be confirmed |

3. Block

| Operation | Description | |-----------|-------------| | Get Block | Retrieve block information by number or hash | | Get Latest Block | Get the most recent block | | Get Finalized Block | Get the latest finalized block | | Get Block Range | Fetch multiple blocks within a range | | Get L1 Batch | Retrieve L1 batch information | | Get Block Details | Get comprehensive block data with transactions |

4. Bridge

| Operation | Description | |-----------|-------------| | Deposit | Bridge assets from Ethereum L1 to zkSync Era | | Withdraw | Bridge assets from zkSync Era to Ethereum L1 | | Get Deposit Status | Check status of L1 to L2 deposit | | Get Withdrawal Status | Check status of L2 to L1 withdrawal | | Estimate Deposit Fee | Calculate fees for depositing assets | | Get Bridge History | Retrieve bridge transaction history |

5. Paymaster

| Operation | Description | |-----------|-------------| | Get Paymaster Balance | Check paymaster account balance | | Submit Paymaster Transaction | Send transaction using paymaster | | Estimate Paymaster Fee | Calculate fees when using paymaster | | Get Paymaster Info | Retrieve paymaster configuration | | Validate Paymaster | Check if paymaster can sponsor transaction |

6. Proof

| Operation | Description | |-----------|-------------| | Get Transaction Proof | Generate proof for a specific transaction | | Get Block Proof | Generate proof for a block | | Verify Proof | Verify a zero-knowledge proof | | Get Proof Status | Check proof generation status | | Get L1 Proof | Retrieve proof submitted to L1 |

7. Contract

| Operation | Description | |-----------|-------------| | Deploy Contract | Deploy a new smart contract | | Call Contract | Execute a read-only contract function | | Send Contract Transaction | Execute a state-changing contract function | | Get Contract Info | Retrieve contract metadata and ABI | | Estimate Contract Gas | Calculate gas for contract interactions | | Get Contract Events | Retrieve events emitted by contract |

Usage Examples

// Get account balance
{
  "address": "0x1234567890123456789012345678901234567890",
  "tokenAddress": "0x0000000000000000000000000000000000000000" // ETH
}
// Send a transaction
{
  "to": "0x9876543210987654321098765432109876543210",
  "value": "0.1", // ETH amount
  "gasLimit": 21000,
  "gasPrice": "250000000" // 0.25 Gwei
}
// Deploy a smart contract
{
  "bytecode": "0x608060405234801561001057600080fd5b50...",
  "constructorArgs": ["Hello", "World"],
  "gasLimit": 2000000
}
// Bridge deposit from L1 to L2
{
  "l1TokenAddress": "0xA0b86a33E6441c8C06DD2F11c6b6E1E77a6E7E2b",
  "amount": "100.0",
  "l2Address": "0x1234567890123456789012345678901234567890"
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Invalid API Key | Authentication failed with provided credentials | Verify API key and RPC URL are correct | | Insufficient Balance | Account lacks funds for transaction | Check account balance and add funds | | Gas Estimation Failed | Unable to estimate transaction gas | Verify contract call parameters and network status | | Transaction Reverted | Smart contract execution failed | Check contract state and function parameters | | Network Timeout | RPC request timed out | Retry request or check network connectivity | | Invalid Address | Provided address format is incorrect | Ensure address is valid zkSync Era format |

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