Docs: Fix links and misc

This commit is contained in:
Braydon Fuller 2014-12-17 14:06:44 -05:00
parent ed6e1124dd
commit 079b507e82
4 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ var privateKey = new PrivateKey();
var address = privateKey.toAddress();
```
You can also instantiate an address from a String, `PublicKey`, or [HDPublicKey](Hierarchical.md), in case you are not the owner of the private key.
You can also instantiate an address from a String, [PublicKey](PublicKey.md), or [HDPublicKey](Hierarchical.md), in case you are not the owner of the private key.
```javascript
// from a string

View File

@ -4,7 +4,7 @@ Bitcore provides full support for [BIP32](https://github.com/bitcoin/bips/blob/m
## HDPrivateKey
An instance of a [PrivateKey](#PrivateKey.md) that also contains information required to derive child keys.
An instance of a [PrivateKey](PrivateKey.md) that also contains information required to derive child keys.
Sample usage:

View File

@ -12,7 +12,7 @@ Most project will only need to work in one of either networks. The value of `Net
The functionality of testnet and livenet is mostly similar (except for some relaxed block validation rules on testnet). They differ in the constants being used for human representation of base58 encoded strings. These are sometimes referred to as "version" constants.
Take a look at this modified snippet from (networks.js)[https://github.com/bitpay/bitcore/blob/master/lib/networks.js]
Take a look at this modified snippet from [networks.js](https://github.com/bitpay/bitcore/blob/master/lib/networks.js)
```javascript
var livenet = new Network();
_.extend(livenet, {

View File

@ -5,7 +5,7 @@ All bitcoin transactions have scripts embedded into its inputs and outputs. The
When a transaction is validated, the input scripts are concatenated with the output scripts and evaluated. To be valid, all transaction scripts must evaluate to true. A good analogy for how this works is that the output scripts are puzzles that specify in which conditions can those bitcoins be spent. The input scripts provide the correct data to make those output scripts evaluate to true.
For more detailed information about the bitcoin scripting language, check the online reference (on bitcoin's wiki)[https://en.bitcoin.it/wiki/Script].
For more detailed information about the bitcoin scripting language, check the online reference [on bitcoin's wiki](https://en.bitcoin.it/wiki/Script).
The `Script` object provides an interface to construct, parse, and identify bitcoin scripts. It also gives simple interfaces to create most common script types. This class is useful if you want to create custom input or output scripts. In other case, you should probably use `Transaction`.