testnet-charger

Prevent testnet faucet abuse by withdrawing once and then distributing the funds among addresses in wallet

Usage no npm install needed!

<script type="module">
  import testnetCharger from 'https://cdn.skypack.dev/testnet-charger';
</script>

README

Testnet charger

Prevent testnet faucet abuse by withdrawing once and then distributing the funds among addresses in wallet

Usage

var Charger = require('testnet-charger')
var c = new Charger(wallet) // wallet is instance of github.com/tradle/cb-wallet
c.charge(wallet.getNextAddress(1), 1000)
c.charge(wallet.getNextAddress(2), 1042)
c.charge(wallet.getNextAddress(3), 2378)
// optional: c.setFaucet(Charger.faucets.RoyalForkBlog)
c.execute(function(err) {
  if (!err) {
    console.log('Withdrew TBTC from faucet and distributed to specified addresses')
  }
})