63 lines
800 B
JavaScript
63 lines
800 B
JavaScript
/*!
|
|
* pkg.js - package constants
|
|
* Copyright (c) 2014-2017, Christopher Jeffrey (MIT License).
|
|
* https://github.com/bcoin-org/bcoin
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* Package Name
|
|
* @const {String}
|
|
* @default
|
|
*/
|
|
|
|
exports.name = 'handshake';
|
|
|
|
/**
|
|
* Currency Name
|
|
* @const {String}
|
|
* @default
|
|
*/
|
|
|
|
exports.currency = 'handshake';
|
|
|
|
/**
|
|
* Currency Unit
|
|
* @const {String}
|
|
* @default
|
|
*/
|
|
|
|
exports.unit = 'hsk';
|
|
|
|
/**
|
|
* Base Unit
|
|
* @const {String}
|
|
* @default
|
|
*/
|
|
|
|
exports.base = 'doo';
|
|
|
|
/**
|
|
* Config file name.
|
|
* @const {String}
|
|
* @default
|
|
*/
|
|
|
|
exports.cfg = `${exports.name}.cfg`;
|
|
|
|
/**
|
|
* Current version string.
|
|
* @const {String}
|
|
* @default
|
|
*/
|
|
|
|
exports.version = 'v1.0.0-pre';
|
|
|
|
/**
|
|
* Repository URL.
|
|
* @const {String}
|
|
* @default
|
|
*/
|
|
|
|
exports.url = 'https://github.com/bcoin-org/handshake';
|