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-d-cent-wallet

v1.0.0

Published

n8n community node for D'CENT Wallet integration

Readme

n8n-nodes-d-cent-wallet

[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 integrating with D'CENT hardware wallets. This node provides 5 comprehensive resources enabling wallet information retrieval, account management, transaction processing, biometric authentication, and multi-chain operations for secure blockchain interactions.

n8n Community Node License TypeScript Hardware Wallet Blockchain Security

Features

  • Wallet Information - Retrieve wallet status, firmware version, device info, and configuration details
  • Account Management - Create, retrieve, and manage cryptocurrency accounts across multiple blockchains
  • Transaction Processing - Sign and broadcast transactions with hardware-level security
  • Biometric Authentication - Leverage fingerprint and face recognition for secure access control
  • Multi-Chain Support - Work with Bitcoin, Ethereum, and 100+ supported cryptocurrencies
  • Hardware Security - Utilize secure element protection for private key management
  • Device Integration - Direct communication with D'CENT hardware wallets
  • Real-time Status - Monitor wallet connectivity and operational status

Installation

Community Nodes (Recommended)

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

Manual Installation

cd ~/.n8n
npm install n8n-nodes-d-cent-wallet

Development Installation

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

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | D'CENT wallet API key for device authentication | Yes | | Device ID | Unique identifier for your D'CENT hardware wallet | Yes | | Environment | API environment (production/sandbox) | No |

Resources & Operations

1. WalletInfo

| Operation | Description | |-----------|-------------| | Get Status | Retrieve current wallet connection and operational status | | Get Firmware Version | Check installed firmware version and available updates | | Get Device Info | Obtain device model, serial number, and hardware specifications | | Get Configuration | Retrieve wallet settings and security configurations | | Update Settings | Modify wallet preferences and security options |

2. Account

| Operation | Description | |-----------|-------------| | Create Account | Generate new cryptocurrency account for specified blockchain | | Get Account | Retrieve account details including address and balance | | List Accounts | Get all accounts associated with the wallet | | Get Balance | Check current balance for specific account | | Get Address | Retrieve public address for receiving funds | | Delete Account | Remove account from wallet (requires confirmation) |

3. Transaction

| Operation | Description | |-----------|-------------| | Create Transaction | Prepare new transaction with recipient and amount details | | Sign Transaction | Sign transaction using hardware wallet security | | Broadcast Transaction | Submit signed transaction to blockchain network | | Get Transaction | Retrieve transaction details by hash or ID | | List Transactions | Get transaction history for specific account | | Estimate Fee | Calculate network fees for pending transaction | | Verify Transaction | Confirm transaction authenticity and status |

4. BiometricAuth

| Operation | Description | |-----------|-------------| | Register Fingerprint | Enroll new fingerprint for wallet authentication | | Authenticate | Verify identity using registered biometric data | | List Registered | Get all enrolled biometric identifiers | | Remove Biometric | Delete specific biometric registration | | Get Auth Status | Check current authentication state | | Configure Settings | Modify biometric authentication preferences |

5. MultiChain

| Operation | Description | |-----------|-------------| | List Supported Chains | Get all blockchain networks supported by wallet | | Switch Chain | Change active blockchain network | | Get Chain Info | Retrieve details about specific blockchain network | | Add Custom Chain | Register new blockchain network configuration | | Remove Chain | Delete custom blockchain network from wallet | | Sync Chain Data | Update blockchain network information and settings |

Usage Examples

// Get wallet status and firmware version
{
  "operation": "getStatus",
  "returnAll": true,
  "options": {
    "includeDetails": true
  }
}
// Create new Ethereum account
{
  "operation": "createAccount",
  "blockchain": "ethereum",
  "accountName": "ETH Trading Account",
  "derivationPath": "m/44'/60'/0'/0/0"
}
// Sign Bitcoin transaction
{
  "operation": "signTransaction",
  "blockchain": "bitcoin",
  "recipientAddress": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
  "amount": 0.001,
  "feeRate": 10
}
// Authenticate with fingerprint
{
  "operation": "authenticate",
  "method": "fingerprint",
  "timeout": 30,
  "retryCount": 3
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Device Not Connected | D'CENT wallet is not connected or recognized | Check USB connection and ensure device is unlocked | | Invalid API Key | Authentication failed with provided credentials | Verify API key and device ID in node credentials | | Insufficient Balance | Account balance too low for transaction | Check account balance or reduce transaction amount | | Biometric Failure | Fingerprint or face recognition failed | Clean sensor, retry authentication, or use PIN backup | | Chain Not Supported | Blockchain network not available on device | Update firmware or select supported blockchain | | Transaction Timeout | Signing process exceeded time limit | Retry transaction and respond promptly to device prompts |

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