Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 815 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 815 Bytes

Rinkeby faucet

This project is a minimal API which do test transactions between two eth wallets through a Infura node.

Installation & Configuration

  1. Clone the repository

  2. Create the file .env copying .env.example and filling it properly

  3. Start the server:

    • Locally
      • Install dependencies: npm install
      • Run local server: npm start
    • Docker: docker up 5500:5500 -d example

Usage

Send a "send money" request to the server:

WALLET_ADDRESS="0x0000000000000000000000000000000000000000"

curl -XPOST localhost:5500/send-money --data "address=${WALLET_ADDRESS}"