laconic-faucet/README.md

699 B

laconic-faucet

  • Install dependencies and build:

    yarn && yarn build
    
  • Set the private key of a funded faucet account as faucetKey in the config file

  • Run the faucet:

    yarn start
    
    # Expected output:
    # Config:
    # ...
    # Faucet server running on port <port>
    # Using DB directory '/path/to/faucet/data/db'
    
  • Example request:

    curl -X POST http://localhost:3000/faucet \
      -H "Content-Type: application/json" \
      -d '{"address": "laconic1cndafgkspae7es7g2j52hmxxukwsy84v6h07w5"}'
    
    # Expected output:
    # {"success":true,"txHash":"40405D3CCA8122482C36083762561908E2595A4B765B7457C3995525991D18CE"}