An open API service indexing awesome lists of open source software.

https://github.com/tradle/testnet-charger

get testnet bitcoins from a faucet and distribute to an arbitrary number of addresses
https://github.com/tradle/testnet-charger

Last synced: about 1 year ago
JSON representation

get testnet bitcoins from a faucet and distribute to an arbitrary number of addresses

Awesome Lists containing this project

README

          

# Testnet charger

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

## Usage

```js
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')
}
})
````