Skip to content

Releases: chainflag/eth-faucet

v1.2.0

07 Aug 16:42
Compare
Choose a tag to compare

Changelog

  • 816cd5d feat: accept private key with or without 0x prefix
  • 6bbfaf7 feat: add hcaptcha verification feature
  • 20f049d feat: configure frontend token symbol via command-line argument
  • b4aa78f feat: support decimal payout amount
  • 598cef1 feat: support sending eip1559 tx type
  • 5e23f23 feat: support using ENS name to claim test ether
  • 07b04a5 refactor: build frontend with vite
  • 59d07fb refactor: change request and response of claim handler to json format
  • 9ecd8c4 refactor: maintain nonce locally

v1.1.0

01 Apr 15:26
Compare
Choose a tag to compare

Changelog

  • 8f628b6 feat: get wallet info from command flags
  • 0799959 fix: use lowercase network name to retrieve chainid
  • fa2d800 refactor: add EtherToWei function
  • 75c6cb8 refactor: rename the flags regarding the faucet
  • 6f94ddd chore(build): allow image build to reuse cached go module dependencies

v1.0.0

17 Sep 02:30
Compare
Choose a tag to compare

The first release version of eth-faucet.

use private key as sender
$ docker run -d -p 8080:8080 -e WEB3_PROVIDER="rpc endpoint" -e PRIVATE_KEY="hex private key" chainflag/eth-faucet:1.0.0

use keystore file as sender
$ docker run -d -p 8080:8080 -e WEB3_PROVIDER="rpc endpoint" -e KEYSTORE="keystore path" -v $(pwd)/keystore:/app/keystore -v $(pwd)/password.txt:/app/password.txt chainflag/eth-faucet:1.0.0