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

v1.0.0

Published

n8n community node for Filecoin blockchain network integration

Downloads

29

Readme

n8n-nodes-filecoin

[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 seamless integration with the Filecoin network, enabling developers to interact with decentralized storage, blockchain data, and network operations. With 6 comprehensive resources and extensive operation support, it facilitates storage deal management, wallet operations, message handling, and network monitoring within your n8n workflows.

n8n Community Node License TypeScript Filecoin IPFS Blockchain

Features

  • Complete Storage Management - Create, monitor, and manage Filecoin storage deals with comprehensive lifecycle tracking
  • Wallet Operations - Perform wallet balance checks, transaction creation, and address management across the network
  • Blockchain Interaction - Access chain head data, block information, and network state for monitoring and analytics
  • Actor System Integration - Interact with Filecoin actors, retrieve state information, and execute actor-specific operations
  • Message Broadcasting - Send, track, and verify messages on the Filecoin network with detailed status monitoring
  • Network Analytics - Monitor network statistics, peer information, and protocol versions for operational insights
  • Real-time Monitoring - Track deal status, transaction confirmations, and network health in automated workflows
  • Enterprise Security - Secure API key authentication with comprehensive error handling and retry mechanisms

Installation

Community Nodes (Recommended)

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

Manual Installation

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

Development Installation

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

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your Filecoin node API key or access token | Yes | | Node URL | Filecoin node endpoint URL (e.g., https://api.node.glif.io) | Yes | | Network | Target network (mainnet, calibration, etc.) | No |

Resources & Operations

1. Chain

| Operation | Description | |-----------|-------------| | Get Head | Retrieve the current chain head information | | Get Block | Get specific block data by CID or height | | Get Messages | Retrieve messages from a specific block | | Get Parent Receipts | Get receipts for parent block messages | | Get Tipset | Retrieve tipset information by height or key | | Read State | Read current chain state information |

2. Actor

| Operation | Description | |-----------|-------------| | Get Actor | Retrieve actor information by address | | Get State | Get current actor state data | | List Actors | List all actors in the system | | Get Code | Retrieve actor code information | | Get Actor Events | Get events emitted by an actor | | Call Method | Execute actor method calls |

3. Message

| Operation | Description | |-----------|-------------| | Send Message | Broadcast a message to the Filecoin network | | Get Message | Retrieve message details by CID | | Get Receipt | Get message execution receipt | | Search Messages | Search for messages by criteria | | Estimate Gas | Estimate gas costs for message execution | | Wait for Message | Wait for message confirmation and results |

4. Wallet

| Operation | Description | |-----------|-------------| | Get Balance | Check wallet balance for an address | | List Wallets | List all available wallet addresses | | Create Wallet | Generate a new wallet address | | Import Wallet | Import an existing wallet | | Sign Message | Sign a message with wallet private key | | Verify Signature | Verify message signature authenticity |

5. Storage

| Operation | Description | |-----------|-------------| | Create Deal | Initiate a new storage deal | | Get Deal | Retrieve storage deal information | | List Deals | List all storage deals by criteria | | Get Deal Status | Check current status of storage deals | | Calculate Price | Estimate storage costs and pricing | | Find Miners | Discover available storage miners |

6. Network

| Operation | Description | |-----------|-------------| | Get Network Info | Retrieve network statistics and information | | Get Peers | List connected network peers | | Get Version | Get node version and protocol information | | Sync Status | Check node synchronization status | | Get Network Name | Retrieve current network identifier | | Connection Status | Monitor network connection health |

Usage Examples

// Monitor storage deal status
{
  "nodes": [
    {
      "name": "Check Deal Status",
      "type": "n8n-nodes-filecoin.Filecoin",
      "parameters": {
        "resource": "Storage",
        "operation": "Get Deal Status",
        "dealCid": "bafyreiabcd1234567890abcdef"
      }
    }
  ]
}
// Check wallet balance and send payment
{
  "nodes": [
    {
      "name": "Get Wallet Balance",
      "type": "n8n-nodes-filecoin.Filecoin",
      "parameters": {
        "resource": "Wallet",
        "operation": "Get Balance",
        "address": "f1abc123def456ghi789jkl012mno345pqr678stu"
      }
    },
    {
      "name": "Send Payment",
      "type": "n8n-nodes-filecoin.Filecoin",
      "parameters": {
        "resource": "Message",
        "operation": "Send Message",
        "from": "f1abc123def456ghi789jkl012mno345pqr678stu",
        "to": "f1xyz789uvw456rst123opq890lmn567hij234klm",
        "value": "1000000000000000000"
      }
    }
  ]
}
// Monitor network health and sync status
{
  "nodes": [
    {
      "name": "Check Network Status",
      "type": "n8n-nodes-filecoin.Filecoin",
      "parameters": {
        "resource": "Network",
        "operation": "Sync Status"
      }
    },
    {
      "name": "Get Chain Head",
      "type": "n8n-nodes-filecoin.Filecoin",
      "parameters": {
        "resource": "Chain",
        "operation": "Get Head"
      }
    }
  ]
}
// Create and monitor storage deal
{
  "nodes": [
    {
      "name": "Find Storage Miners",
      "type": "n8n-nodes-filecoin.Filecoin",
      "parameters": {
        "resource": "Storage",
        "operation": "Find Miners",
        "minPower": "32GiB",
        "maxPrice": "0.0000000001"
      }
    },
    {
      "name": "Create Storage Deal",
      "type": "n8n-nodes-filecoin.Filecoin",
      "parameters": {
        "resource": "Storage",
        "operation": "Create Deal",
        "dataCid": "bafybeigdyrzt5sfp7udm7hu76uh7y26nf3efuylqabf3oclgtqy55fbzdi",
        "miner": "f01000",
        "duration": 1555200
      }
    }
  ]
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Invalid API Key | Authentication failed with provided credentials | Verify API key is correct and has sufficient permissions | | Network Timeout | Request timed out waiting for network response | Check node connectivity and increase timeout settings | | Insufficient Funds | Wallet balance too low for transaction | Verify wallet has adequate FIL balance for operation | | Actor Not Found | Specified actor address does not exist | Confirm actor address is valid and properly formatted | | Deal Creation Failed | Storage deal proposal was rejected | Check deal parameters, miner availability, and pricing | | Message Pending | Transaction is still being processed | Wait for confirmation or check message status periodically |

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