| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1x 1x 1x | "use strict";
const BN = require("bn.js");
/**
* @module constants
*/
/**
* Constants
* @typedef {Object} constants
* @property {BN.jsObject} zeroBN - BN.js object representing 0
*/
const constants = {
zeroBN: new BN(0)
};
module.exports = constants;
|