bitmessage-js/lib/index.js

13 lines
347 B
JavaScript
Raw Normal View History

2014-12-18 17:47:18 +01:00
/**
2014-12-29 20:59:18 +01:00
* Bitmessage library entry point. Just reexports common submodules.
2014-12-18 17:47:18 +01:00
* @module bitmessage
*/
"use strict";
2014-12-27 12:38:58 +01:00
// uint64_t implementation used for operations with int64. You may
// replace it with other library with the same API.
exports.Int64 = require("int64-native");
2014-12-18 17:47:18 +01:00
exports.Address = require("./address");
2014-12-29 20:59:18 +01:00
exports.wif = require("./wif");