Burn-stream-writer lets you write to a burn-stream.
Burn-stream-writer writes to a burn-stream by connecting to a Bitcoin client over RPC.
- Set up a Bitcoin client with RPC enabled.
- Get a burn-stream JSON app config file (see burn-stream for more info).
- Make a JSON file that matches the configuration of your Bitcoin client. Take care not to accidentally share the password for your Bitcoin client! An example:
{
"host": "localhost",
"port": "18332",
"user": "user",
"pass": "real secure"
}
To write from the command line, run bin/write.js
. It will ask for confirmation before writing. An example command:
node bin/write.js --amount 100000 --message sup
About the args:
--clientConfig
defaults toclient-config.json
--appConfig
defaults toapp-config.json
- You can set
--fee
to specify a fee - You can set
--changeAddress
to specify a change address - You can set
--amount min
to send the minimum allowed amount
To write from Javascript code, you can require burn-stream-writer (see bin/write.js
for an example).