Modules stub
This commit is contained in:
parent
4d5a699c6e
commit
ca13fdf566
|
@ -50,6 +50,7 @@ With the help of browserify `bitmessage` provides different implementations for
|
||||||
- [ ] addr
|
- [ ] addr
|
||||||
- [ ] inv
|
- [ ] inv
|
||||||
- [ ] getdata
|
- [ ] getdata
|
||||||
|
- [ ] error
|
||||||
- [ ] object
|
- [ ] object
|
||||||
- [ ] Object types
|
- [ ] Object types
|
||||||
- [ ] getpubkey
|
- [ ] getpubkey
|
||||||
|
|
|
@ -7,7 +7,15 @@
|
||||||
|
|
||||||
/** Common structures. */
|
/** Common structures. */
|
||||||
exports.struct = require("./struct");
|
exports.struct = require("./struct");
|
||||||
|
/** Messages. */
|
||||||
|
exports.message = require("./message");
|
||||||
|
/** Objects. */
|
||||||
|
exports.object = require("./object");
|
||||||
|
|
||||||
/** Working with WIF. */
|
/** Working with WIF. */
|
||||||
exports.WIF = require("./wif");
|
exports.WIF = require("./wif");
|
||||||
|
/** Proof of work. */
|
||||||
|
exports.POW = require("./pow");
|
||||||
|
|
||||||
/** Working with addresses. */
|
/** Working with addresses. */
|
||||||
exports.Address = require("./address");
|
exports.Address = require("./address");
|
||||||
|
|
5
lib/message.js
Normal file
5
lib/message.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
/**
|
||||||
|
* Working with messages.
|
||||||
|
* @see {@link https://bitmessage.org/wiki/Protocol_specification#Message_types}
|
||||||
|
* @module bitmessage/message
|
||||||
|
*/
|
5
lib/object.js
Normal file
5
lib/object.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
/**
|
||||||
|
* Working with objects.
|
||||||
|
* @see {@link https://bitmessage.org/wiki/Protocol_specification#Object_types}
|
||||||
|
* @module bitmessage/object
|
||||||
|
*/
|
5
lib/pow.js
Normal file
5
lib/pow.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
/**
|
||||||
|
* Implements proof of work.
|
||||||
|
* @see {@link https://bitmessage.org/wiki/Proof_of_work}
|
||||||
|
* @module bitmessage/pow
|
||||||
|
*/
|
Loading…
Reference in New Issue
Block a user