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

v0.1.0

Published

Custom n8n nodes for Sei blockchain integration

Readme

n8n-nodes-sei

Custom n8n nodes for Sei blockchain integration.

Features

  • Sei Transaction Builder: Build Sei blockchain transactions (token transfers, contract interactions)
  • Sei Transaction Executor: Execute Sei blockchain transactions
  • Sei Explorer: Query blocks, transactions, balances, and contract calls
  • Sei Deploy Contract: Deploy custom, ERC-20, or ERC-721 contracts to Sei or any EVM-compatible chain
  • Sei Compile Contract: Compile Solidity source code to bytecode and ABI with built-in templates
  • Support for Sei Mainnet, Testnet, and custom networks
  • Token transfers, smart contract interactions, contract deployment and compilation

Installation

Prerequisites

  • Node.js 18.10 or higher
  • npm or pnpm
  • n8n installed globally

Install from npm (when published)

npm install n8n-nodes-sei

Install for local development

  1. Clone this repository
  2. Install dependencies:
    npm install
  3. Build the project:
    npm run build
  4. Link the package:
    npm link
  5. Link to your n8n installation:
    cd ~/.n8n/custom  # or your custom n8n directory
    npm link n8n-nodes-sei

Usage

Setting up Credentials

  1. In n8n, go to Settings > Credentials
  2. Add new credential of type "Sei API"
  3. Enter your wallet private key (hex format)

Using the Nodes

Sei Transaction Builder

  • Build transactions for token transfers or contract interactions
  • Returns transaction data that can be used with the executor

Sei Transaction Executor

  • Execute transactions on the Sei blockchain
  • Requires transaction data from the builder or manual input

Sei Explorer

  • Query block info, transaction details, account balances, or call contract methods
  • Supports custom RPC and all EVM-compatible chains

Sei Deploy Contract

  • Deploy a smart contract to Sei or any EVM-compatible chain
  • Supports three contract types:
    • Custom: Paste ABI and bytecode, enter constructor arguments
    • ERC-20: Fill in token name, symbol, decimals, initial supply
    • ERC-721: Fill in collection name, symbol
  • Network selection: Sei Mainnet, Testnet, or custom RPC
  • Uses the same credential as other Sei nodes
  • Outputs deployed contract address and transaction hash

Sei Compile Contract

  • Compile Solidity source code to bytecode and ABI
  • Features:
    • Solidity Compiler: Built-in compiler with version selection (0.8.19-0.8.24)
    • Optimization: Configurable compiler optimization settings
    • Template Support: Use built-in ERC-20 and ERC-721 contract templates
    • Error Handling: Comprehensive compilation error and warning reporting
    • Output Format: Produces bytecode and ABI ready for deployment
  • Perfect for complete smart contract workflow: Write → Compile → Deploy → Interact

Networks Supported

  • Sei Mainnet (Pacific-1)
  • Sei Testnet (Atlantic-2)
  • Custom networks via RPC URL (any EVM chain)

Development

Building

npm run build

Linting

npm run lint

Testing locally

npm run dev  # Watch mode

License

MIT License