155 lines
4.0 KiB
JavaScript
155 lines
4.0 KiB
JavaScript
/*!
|
|
* bcoin.js - a javascript bitcoin library.
|
|
* Copyright (c) 2014-2015, Fedor Indutny (MIT License).
|
|
* Copyright (c) 2014-2017, Christopher Jeffrey (MIT License).
|
|
* https://github.com/bcoin-org/bcoin
|
|
*/
|
|
|
|
/* eslint prefer-arrow-callback: "off" */
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* A bcoin "environment" which exposes all
|
|
* constructors for primitives, the blockchain,
|
|
* mempool, wallet, etc. It also exposes a
|
|
* global worker pool.
|
|
*
|
|
* @exports bcoin
|
|
* @type {Object}
|
|
*/
|
|
|
|
const bcoin = exports;
|
|
|
|
/**
|
|
* Define a module for lazy loading.
|
|
* @param {String} name
|
|
* @param {String} path
|
|
*/
|
|
|
|
bcoin.define = function define(name, path) {
|
|
let cache = null;
|
|
Object.defineProperty(bcoin, name, {
|
|
enumerable: true,
|
|
get() {
|
|
if (!cache)
|
|
cache = require(path);
|
|
return cache;
|
|
}
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Set the default network.
|
|
* @param {String} network
|
|
*/
|
|
|
|
bcoin.set = function set(network) {
|
|
bcoin.Network.set(network);
|
|
return bcoin;
|
|
};
|
|
|
|
/*
|
|
* Expose
|
|
*/
|
|
|
|
// Blockchain
|
|
bcoin.define('blockchain', './blockchain');
|
|
bcoin.define('blockstore', './blockstore');
|
|
bcoin.define('Chain', './blockchain/chain');
|
|
bcoin.define('ChainEntry', './blockchain/chainentry');
|
|
|
|
// BTC
|
|
bcoin.define('btc', './btc');
|
|
bcoin.define('Amount', './btc/amount');
|
|
bcoin.define('URI', './btc/uri');
|
|
|
|
// Coins
|
|
bcoin.define('coins', './coins');
|
|
bcoin.define('Coins', './coins/coins');
|
|
bcoin.define('CoinEntry', './coins/coinentry');
|
|
bcoin.define('CoinView', './coins/coinview');
|
|
|
|
// HD
|
|
bcoin.define('hd', './hd');
|
|
bcoin.define('HDPrivateKey', './hd/private');
|
|
bcoin.define('HDPublicKey', './hd/public');
|
|
bcoin.define('Mnemonic', './hd/mnemonic');
|
|
|
|
// Index
|
|
bcoin.define('indexer', './indexer');
|
|
bcoin.define('Indexer', './indexer/indexer');
|
|
bcoin.define('TXIndexer', './indexer/txindexer');
|
|
bcoin.define('AddrIndexer', './indexer/addrindexer');
|
|
|
|
// Mempool
|
|
bcoin.define('mempool', './mempool');
|
|
bcoin.define('Fees', './mempool/fees');
|
|
bcoin.define('Mempool', './mempool/mempool');
|
|
bcoin.define('MempoolEntry', './mempool/mempoolentry');
|
|
|
|
// Miner
|
|
bcoin.define('mining', './mining');
|
|
bcoin.define('Miner', './mining/miner');
|
|
|
|
// Net
|
|
bcoin.define('net', './net');
|
|
bcoin.define('packets', './net/packets');
|
|
bcoin.define('Peer', './net/peer');
|
|
bcoin.define('Pool', './net/pool');
|
|
|
|
// Node
|
|
bcoin.define('node', './node');
|
|
bcoin.define('Node', './node/node');
|
|
bcoin.define('FullNode', './node/fullnode');
|
|
bcoin.define('SPVNode', './node/spvnode');
|
|
|
|
// Primitives
|
|
bcoin.define('primitives', './primitives');
|
|
bcoin.define('Address', './primitives/address');
|
|
bcoin.define('Block', './primitives/block');
|
|
bcoin.define('Coin', './primitives/coin');
|
|
bcoin.define('Headers', './primitives/headers');
|
|
bcoin.define('Input', './primitives/input');
|
|
bcoin.define('InvItem', './primitives/invitem');
|
|
bcoin.define('KeyRing', './primitives/keyring');
|
|
bcoin.define('MerkleBlock', './primitives/merkleblock');
|
|
bcoin.define('MTX', './primitives/mtx');
|
|
bcoin.define('Outpoint', './primitives/outpoint');
|
|
bcoin.define('Output', './primitives/output');
|
|
bcoin.define('TX', './primitives/tx');
|
|
|
|
// Protocol
|
|
bcoin.define('protocol', './protocol');
|
|
bcoin.define('consensus', './protocol/consensus');
|
|
bcoin.define('Network', './protocol/network');
|
|
bcoin.define('networks', './protocol/networks');
|
|
bcoin.define('policy', './protocol/policy');
|
|
|
|
// Script
|
|
bcoin.define('script', './script');
|
|
bcoin.define('Opcode', './script/opcode');
|
|
bcoin.define('Program', './script/program');
|
|
bcoin.define('Script', './script/script');
|
|
bcoin.define('ScriptNum', './script/scriptnum');
|
|
bcoin.define('SigCache', './script/sigcache');
|
|
bcoin.define('Stack', './script/stack');
|
|
bcoin.define('Witness', './script/witness');
|
|
|
|
// Utils
|
|
bcoin.define('utils', './utils');
|
|
bcoin.define('util', './utils/util');
|
|
|
|
// Wallet
|
|
bcoin.define('wallet', './wallet');
|
|
bcoin.define('Path', './wallet/path');
|
|
bcoin.define('WalletKey', './wallet/walletkey');
|
|
bcoin.define('WalletDB', './wallet/walletdb');
|
|
|
|
// Workers
|
|
bcoin.define('workers', './workers');
|
|
bcoin.define('WorkerPool', './workers/workerpool');
|
|
|
|
// Package Info
|
|
bcoin.define('pkg', './pkg');
|