n8n-nodes-ethereum-automation
Version:
n8n node for Ethereum operations including wallet creation, sending ETH/ERC20 tokens, and transaction monitoring
55 lines (54 loc) • 1.43 kB
JSON
{
"name": "n8n-nodes-ethereum-automation",
"version": "1.0.1",
"description": "n8n node for Ethereum operations including wallet creation, sending ETH/ERC20 tokens, and transaction monitoring",
"keywords": [
"n8n",
"n8n-node",
"n8n-community-node-package",
"ethereum",
"blockchain",
"wallet",
"erc20"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "intensodefi",
"email": "intensodefi@protonmail.com"
},
"main": "index.js",
"scripts": {
"build": "tsc && npm run copy-assets",
"copy-assets": "cp nodes/Ethereum/*.svg dist/nodes/Ethereum/",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes/**/*.ts credentials/**/*.ts package.json",
"lintfix": "eslint nodes/**/*.ts credentials/**/*.ts package.json --fix"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"nodes": [
"dist/nodes/Ethereum/Ethereum.node.js"
],
"credentials": [
"dist/credentials/EthereumWallet.credentials.js"
]
},
"devDependencies": {
"@types/express": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint-plugin-n8n-nodes-base": "^1.0.0",
"n8n-core": "^0.125.0",
"n8n-workflow": "^0.107.0",
"prettier": "^2.7.1",
"typescript": "^4.9.5"
},
"dependencies": {
"ethers": "^6.8.1"
}
}