15 lines
431 B
JavaScript
15 lines
431 B
JavaScript
/*!
|
|
* protocol/index.js - bitcoin protocol for bcoin
|
|
* Copyright (c) 2014-2015, Fedor Indutny (MIT License)
|
|
* Copyright (c) 2014-2016, Christopher Jeffrey (MIT License).
|
|
* https://github.com/bcoin-org/bcoin
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
exports.constants = require('./constants');
|
|
exports.network = require('./network');
|
|
exports.framer = require('./framer');
|
|
exports.parser = require('./parser');
|
|
exports.packets = require('./packets');
|