From ae80f2825267cc9f92e1e72089c12b9f6475f8c3 Mon Sep 17 00:00:00 2001 From: himynameismartin Date: Sun, 18 Jan 2015 11:29:23 +0100 Subject: [PATCH] Added JavaScript syntax highlighting --- docs/api/index.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/docs/api/index.md b/docs/api/index.md index 122b3c5..1988787 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -5,24 +5,27 @@ description: Sample code for the most common task in any bitcoin application. ## Create a Private Key -``` +```javascript var privKey = new bitcore.PrivateKey(); ``` ## Create an Address -``` + +```javascript var privKey = new bitcore.PrivateKey(); var address = privKey.toAddress(); ``` ## Create a Multisig Address -``` + +```javascript // Build a 2-of-3 address from public keys var P2SHAddress = new bitcore.Address([publicKey1, publicKey2, publicKey3], 2); ``` ## Request a Payment -``` + +```javascript var paymentInfo = { address: '1DNtTk4PUCGAdiNETAzQFWZiy2fCHtGnPx', amount: 120000 //satoshis @@ -31,7 +34,8 @@ var uri = new bitcore.URI(paymentInfo).toString(); ``` ## Create a Transaction -``` + +```javascript var transaction = new Transaction() .from(utxos) // Feed information about what unspend outputs one can use .to(address, amount) // Add an output with the given amount of satoshis @@ -40,7 +44,8 @@ var transaction = new Transaction() ``` ## Connect to the Network -``` + +```javascript var peer = new Peer('5.9.85.34'); peer.on('inv', function(message) {