Go to file
Nabarun ddf5649fb4
All checks were successful
Lint and Build / Run lint and build checks (pull_request) Successful in 18s
Update to actual CI triggers
2025-07-14 20:10:28 +05:30
.github/workflows Update to actual CI triggers 2025-07-14 20:10:28 +05:30
environments Update package name and cosmjs dependencies (#1) 2025-05-02 07:03:32 +00:00
src Update package name and cosmjs dependencies (#1) 2025-05-02 07:03:32 +00:00
.eslintignore Implement a cosmos-sdk chain faucet API (#1) 2024-07-18 05:50:31 +00:00
.eslintrc.json Implement a cosmos-sdk chain faucet API (#1) 2024-07-18 05:50:31 +00:00
.gitignore Implement a cosmos-sdk chain faucet API (#1) 2024-07-18 05:50:31 +00:00
CLAUDE.md Add CI for publishing docker image 2025-07-14 18:58:17 +05:30
Dockerfile Add netcat installation in Dockerfile (#2) 2024-07-26 12:23:30 +00:00
package.json Add CI for publishing docker image 2025-07-14 18:58:17 +05:30
README.md Update package name and cosmjs dependencies (#1) 2025-05-02 07:03:32 +00:00
tsconfig.json Implement a cosmos-sdk chain faucet API (#1) 2024-07-18 05:50:31 +00:00
yarn.lock Update package name and cosmjs dependencies (#1) 2025-05-02 07:03:32 +00:00

zenith-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": "zenith1jxtnf48ya9sh5tzmx5vhhagy02jl0lav6sdla0"}'
    
    # Expected output:
    # {"success":true,"txHash":"40405D3CCA8122482C36083762561908E2595A4B765B7457C3995525991D18CE"}