n8n-nodes-ethereum-automation
Version:
n8n node for Ethereum operations including wallet creation, sending ETH/ERC20 tokens, and transaction monitoring
25 lines • 851 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EthereumWallet = void 0;
class EthereumWallet {
constructor() {
this.name = 'ethereumWallet';
this.displayName = 'Ethereum Wallet';
this.documentationUrl = 'https://docs.n8n.io/integrations/builtin/credentials/ethereum/';
this.properties = [
{
displayName: 'Private Key',
name: 'privateKey',
type: 'string',
typeOptions: {
password: true,
},
default: '',
description: 'Private key of the Ethereum wallet (without 0x prefix)',
required: true,
}
];
}
}
exports.EthereumWallet = EthereumWallet;
//# sourceMappingURL=EthereumWallet.credentials.js.map