mxbit
Version:
Bitcoin cash bike-shed
83 lines (62 loc) • 1.11 kB
JavaScript
/*!
* pkg.js - package constants
* Copyright (c) 2014-2017, Christopher Jeffrey (MIT License).
* Copyright (c) 2014-2017, Christopher Jeffrey (MIT License).
* Copyright (c) 2018, mxbit developers.
* https://github.com/bcoin-org/mxbit
*/
;
const pkg = exports;
/**
* Package Name
* @const {String}
* @default
*/
pkg.name = require('../package.json').name;
/**
* Project Name
* @const {String}
* @default
*/
pkg.core = 'mxbit';
/**
* Organization Name
* @const {String}
* @default
*/
pkg.organization = 'bcoin-org';
/**
* Currency Name
* @const {String}
* @default
*/
pkg.currency = 'bitcoin cash';
/**
* Currency Unit
* @const {String}
* @default
*/
pkg.unit = 'bch';
/**
* Base Unit
* @const {String}
* @default
*/
pkg.base = 'satoshi';
/**
* Config file name.
* @const {String}
* @default
*/
pkg.cfg = `${pkg.core}.conf`;
/**
* Repository URL.
* @const {String}
* @default
*/
pkg.url = `https://github.com/${pkg.organization}/${pkg.name}`;
/**
* Current version string.
* @const {String}
*/
pkg.version = require('../package.json').version;