itns-sidechain/lib/pkg.js

64 lines
800 B
JavaScript
Raw Normal View History

2017-03-01 09:16:41 -08:00
/*!
* pkg.js - package constants
* Copyright (c) 2014-2017, Christopher Jeffrey (MIT License).
* https://github.com/bcoin-org/bcoin
*/
'use strict';
2018-01-02 20:24:56 -08:00
/**
* Package Name
* @const {String}
* @default
*/
2018-01-05 04:07:16 -08:00
exports.name = 'handshake';
2018-01-02 20:24:56 -08:00
/**
* Currency Name
* @const {String}
* @default
*/
2018-01-05 04:07:16 -08:00
exports.currency = 'handshake';
2018-01-02 20:24:56 -08:00
/**
* Currency Unit
* @const {String}
* @default
*/
2018-01-05 04:07:16 -08:00
exports.unit = 'hsk';
/**
* Base Unit
* @const {String}
* @default
*/
exports.base = 'doo';
2018-01-02 20:24:56 -08:00
/**
* Config file name.
* @const {String}
* @default
*/
exports.cfg = `${exports.name}.cfg`;
2017-03-01 09:16:41 -08:00
/**
* Current version string.
* @const {String}
2018-01-02 20:24:56 -08:00
* @default
2017-03-01 09:16:41 -08:00
*/
exports.version = 'v1.0.0-pre';
2017-03-01 09:16:41 -08:00
/**
* Repository URL.
* @const {String}
2018-01-02 20:24:56 -08:00
* @default
2017-03-01 09:16:41 -08:00
*/
2018-01-05 04:07:16 -08:00
exports.url = 'https://github.com/bcoin-org/handshake';