@broxus/js-core
Version:
MobX-based JavaScript Core library
16 lines (15 loc) • 1.08 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SECONDS_IN_MINUTE = exports.SECONDS_IN_HOUR = exports.SECONDS_IN_DAY = exports.SECONDS_IN_WEEK = exports.SECONDS_IN_MONTH = exports.SECONDS_IN_YEAR = exports.DEFAULT_LP_TOKEN_DECIMALS = exports.DEFAULT_NATIVE_CURRENCY_DECIMALS = exports.EmptyCell = exports.DeadAddress = exports.ZeroAddress = void 0;
const everscale_inpage_provider_1 = require("everscale-inpage-provider");
exports.ZeroAddress = new everscale_inpage_provider_1.AddressLiteral('0:0000000000000000000000000000000000000000000000000000000000000000');
exports.DeadAddress = new everscale_inpage_provider_1.AddressLiteral('0:000000000000000000000000000000000000000000000000000000000000dead');
exports.EmptyCell = 'te6ccgEBAQEAAgAAAA==';
exports.DEFAULT_NATIVE_CURRENCY_DECIMALS = 9;
exports.DEFAULT_LP_TOKEN_DECIMALS = 9;
exports.SECONDS_IN_YEAR = 3.1536 * 10 ** 7;
exports.SECONDS_IN_MONTH = 2628288;
exports.SECONDS_IN_WEEK = 604800;
exports.SECONDS_IN_DAY = 86400;
exports.SECONDS_IN_HOUR = 3600;
exports.SECONDS_IN_MINUTE = 60;