2014-12-18 17:47:18 +01:00
|
|
|
/**
|
|
|
|
* Main Bitmessage module. Just reexports all public submodules.
|
|
|
|
* @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");
|