Package Information
Released: 4/30/2025
Downloads: 0 weekly / 6 monthly
Latest Version: 0.1.0
Author: nyangbari
Available Nodes
Documentation
Wallet Node
A custom n8n node to interact with blockchain wallets using ethers.js.
Features
- 🔍 Get Balance: Check the ETH balance of any wallet address.
- 💸 Send Transaction: Send ETH to another address using a private key from credentials.
Operations
1. Get Balance
Inputs
RPC URL(e.g., Infura or Alchemy endpoint)Wallet Addressto query
Outputs
balanceWei: Balance in weibalanceEther: Balance in ETH
Credentials
- ❌ Not required
2. Send Transaction
Inputs
RPC URLTo AddressAmountin ETH
Credentials
- ✅
walletCredentialsApi(must containprivateKey)
- ✅
Outputs
txHash: The transaction hash of the sent transaction
Credentials
Create a new credential of type walletCredentialsApi with the following structure:
{
"privateKey": "your-wallet-private-key"
}