improved peer jsdoc, fixed docs for messages, and switched to use svg for readme icon
This commit is contained in:
parent
8f2d0089df
commit
664ceb2d30
@ -1,4 +1,4 @@
|
|||||||
<img src="http://bitcore.io/css/images/module-p2p.png" alt="bitcore payment protocol" height="35" width="102">
|
<img src="http://bitcore.io/css/images/bitcore-p2p.svg" alt="bitcore payment protocol" height="35" width="102">
|
||||||
Bitcore P2P
|
Bitcore P2P
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
|||||||
@ -6,7 +6,7 @@ description: A superclass for the messages of the bitcoin network
|
|||||||
|
|
||||||
The bitcoin protocol specifies a set of [messages](https://en.bitcoin.it/wiki/Protocol_specification) that can be sent from peer to peer. `bitcore-p2p` provides support for some of these messages.
|
The bitcoin protocol specifies a set of [messages](https://en.bitcoin.it/wiki/Protocol_specification) that can be sent from peer to peer. `bitcore-p2p` provides support for some of these messages.
|
||||||
|
|
||||||
To create a messages, you can use any of the message constructors, here is a simple example:
|
To create a message, you can use any of the message constructors, here is a simple example:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
var messages = new Messages();
|
var messages = new Messages();
|
||||||
|
|||||||
@ -11,8 +11,11 @@ var $ = bitcore.util.preconditions;
|
|||||||
var util = require('util');
|
var util = require('util');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A constructor to create Peer instances to send and recieve messages
|
* The Peer constructor will create an instance of Peer to send and recieve messages
|
||||||
* using the standard Bitcoin protocol.
|
* using the standard Bitcoin protocol. A Peer instance represents one connection
|
||||||
|
* on the Bitcoin network. To create a new peer connection provide the host and port
|
||||||
|
* options and then invoke the connect method. Additionally, a newly connected socket
|
||||||
|
* can be provided instead of host and port.
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* ```javascript
|
* ```javascript
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user