12 lines
376 B
JavaScript
12 lines
376 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
|
|
*/
|
|
|
|
exports.constants = require('./constants');
|
|
exports.network = require('./network');
|
|
exports.framer = require('./framer');
|
|
exports.parser = require('./parser');
|