|
30 | 30 | //
|
31 | 31 | // NOTE: The main downside to using an index.js file like this is that it will pull in all the code - rather than the consumer requiring code module-by-module
|
32 | 32 | // It's of course possible to construct your own stripped-down index.[custom name].js file for, e.g., special webpack bundling usages.
|
33 |
| -const mymonero_core_js = {}; |
34 |
| -mymonero_core_js.monero_utils_promise = require("./monero_utils/MyMoneroCoreBridge")(); // NOTE: This is actually a promise. Call .then(function(monero_utils) { }) to actually use |
35 |
| -mymonero_core_js.monero_config = require("./monero_utils/monero_config"); |
| 33 | +const haven_core_js = {}; |
| 34 | +haven_core_js.haven_utils_promise = require("./monero_utils/MyMoneroCoreBridge")(); // NOTE: This is actually a promise. Call .then(function(monero_utils) { }) to actually use |
| 35 | +haven_core_js.haven_config = require("./monero_utils/monero_config"); |
36 | 36 | // mymonero_core_js.monero_txParsing_utils = require("./monero_utils/monero_txParsing_utils");
|
37 | 37 | // mymonero_core_js.monero_sendingFunds_utils = require("./monero_utils/monero_sendingFunds_utils");
|
38 |
| -mymonero_core_js.monero_keyImage_cache_utils = require("./monero_utils/monero_keyImage_cache_utils"); |
39 |
| -mymonero_core_js.monero_paymentID_utils = require("./monero_utils/monero_paymentID_utils"); |
40 |
| -mymonero_core_js.monero_amount_format_utils = require("./monero_utils/monero_amount_format_utils"); |
41 |
| -mymonero_core_js.api_response_parser_utils = require("./hostAPI/response_parser_utils"); |
| 38 | +haven_core_js.haven_keyImage_cache_utils = require("./monero_utils/monero_keyImage_cache_utils"); |
| 39 | +haven_core_js.haven_paymentID_utils = require("./monero_utils/monero_paymentID_utils"); |
| 40 | +haven_core_js.haven_amount_format_utils = require("./monero_utils/monero_amount_format_utils"); |
| 41 | +haven_core_js.api_response_parser_utils = require("./hostAPI/response_parser_utils"); |
42 | 42 | //
|
43 |
| -mymonero_core_js.nettype_utils = require("./cryptonote_utils/nettype"); |
44 |
| -mymonero_core_js.JSBigInt = require("./cryptonote_utils/biginteger").BigInteger; // so that it is available to a hypothetical consumer's language-bridging web context for constructing string arguments to the above modules |
| 43 | +haven_core_js.nettype_utils = require("./cryptonote_utils/nettype"); |
| 44 | +haven_core_js.JSBigInt = require("./cryptonote_utils/biginteger").BigInteger; // so that it is available to a hypothetical consumer's language-bridging web context for constructing string arguments to the above modules |
45 | 45 | //
|
46 |
| -module.exports = mymonero_core_js; |
| 46 | +module.exports = haven_core_js; |
0 commit comments