Last active
August 29, 2015 14:11
-
-
Save ryandotsmith/cf3bf9c59ab098a7df98 to your computer and use it in GitHub Desktop.
Chain.com Transaction - Create Bitcoin Transactions in Node.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Chain = require('chain-node'); | |
var chain = new Chain(blockChain: 'testnet3'); | |
var req = { | |
inputs: [{ | |
address: "mxLGQRD9p3MayF7WrUJsyuY4cZdPSH2yA4", | |
// Private key never leaves this process! | |
private_key: "cNX5yYSnj6Bd3BEjsfV6ZQyn8hQYYDQB79vjHNkv7NAPazo9GBJT", | |
}], | |
outputs: [{ | |
address: "mxLGQRD9p3MayF7WrUJsyuY4cZdPSH2yA4", | |
amount: 1000 | |
}], | |
change_address: "mwa5qJi4KvqRKu9npGzoqnvfnuMAwfdeGL" | |
}; | |
chain.transact(req, function(err, resp) { | |
console.log(resp); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment