63 lines
802 B
JavaScript
63 lines
802 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 = '0.0.0';
|
|
|
|
/**
|
|
* Repository URL.
|
|
* @const {String}
|
|
* @default
|
|
*/
|
|
|
|
exports.url = 'https://github.com/handshakecompany/handshake';
|