Skip to content

Instantly share code, notes, and snippets.

@ryandotsmith
Last active August 29, 2015 14:11
Show Gist options
  • Save ryandotsmith/cf3bf9c59ab098a7df98 to your computer and use it in GitHub Desktop.
Save ryandotsmith/cf3bf9c59ab098a7df98 to your computer and use it in GitHub Desktop.
Chain.com Transaction - Create Bitcoin Transactions in Node.js
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