public/subjects/blockchain/send-ether
nprimo 4fa5c876a7 docs: run prettify and move h1 to h2 2023-06-09 09:17:48 +01:00
..
README.md docs: run prettify and move h1 to h2 2023-06-09 09:17:48 +01:00

README.md

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.

function sendEther(amount, address) {
  //...
}
module.exports = sendEther

Notions