# Send Ether In this exercise, you will send ETH using a script. ### Instructions Write a node script that provides a function `sendEther(amount, address)` which connects to a local node (`http://localhost:8545`) and sends an amount in Ether to the specified address. ```js function sendEther(amount, address) { //... } module.exports = sendEther ``` ### Notions - [hardhat](https://hardhat.org) - [ganache](https://www.trufflesuite.com/ganache) - [ethers](https://docs.ethers.io/) - [web3](https://web3js.readthedocs.io/)