Skip to content

Commit d0cd198

Browse files
committed
Changes some names to "haven" from "mymonero" for clarity
- still a ways to go
1 parent a97e81f commit d0cd198

File tree

4 files changed

+22
-23
lines changed

4 files changed

+22
-23
lines changed

index.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@
3030
//
3131
// 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
3232
// 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");
3636
// mymonero_core_js.monero_txParsing_utils = require("./monero_utils/monero_txParsing_utils");
3737
// 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");
4242
//
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
4545
//
46-
module.exports = mymonero_core_js;
46+
module.exports = haven_core_js;

package.json

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
{
2-
"name": "mymonero-core-js",
3-
"version": "1.1.0",
4-
"description": "The JS library containing the Monero crypto plus lightweight wallet functions behind the official MyMonero apps",
2+
"name": "haven-core-js",
3+
"version": "1.0.0",
4+
"description": "The JS library containing the Haven crypto plus lightweight wallet functions",
55
"main": "index.js",
66
"repository": {
77
"type": "git",
8-
"url": "git+https://github.com/mymonero/mymonero-core-js.git"
8+
"url": "git+https://github.com/haven-protocol-org/haven-core-js"
99
},
1010
"scripts": {
1111
"format": "find . -name '*.js*' | xargs prettier --write --config ./.prettierrc --config-precedence file-override",
1212
"test": "mocha"
1313
},
1414
"keywords": [
15-
"monero",
16-
"mymonero",
15+
"haven",
1716
"javascript",
1817
"js",
1918
"lightweight",
@@ -24,12 +23,12 @@
2423
"utility",
2524
"tool"
2625
],
27-
"author": "MyMonero",
28-
"license": "See LICENSE.TXT. Copyright (c) 2014-2019, MyMonero.com. All rights reserved.",
26+
"author": "Haven Protocol",
27+
"license": "See LICENSE.TXT.",
2928
"bugs": {
30-
"url": "https://github.com/mymonero/mymonero-core-js/issues"
29+
"url": "https://github.com/haven-protocol-org/haven-core-js/issues"
3130
},
32-
"homepage": "https://github.com/mymonero/mymonero-core-js#readme",
31+
"homepage": "https://github.com/haven-protocol-org/haven-core-js#readme",
3332
"dependencies": {},
3433
"devDependencies": {
3534
"babel-core": "6.26.3",

wallaby.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = function(wallaby) {
3030
process.env.NODE_ENV = "development";
3131

3232
return {
33-
name: "mymonero-core-js",
33+
name: "haven-core-js",
3434
files: [
3535
"cryptonote_utils/**/*.js",
3636
"hostAPI/**/*.js",

webpack.config.browser.common.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ module.exports =
3737
entry: "./index.js",
3838
output: {
3939
path: path.resolve(__dirname, "build"),
40-
filename: "mymonero-core.js",
41-
library: "mymonero_core_js",
40+
filename: "haven-core.js",
41+
library: "haven_core_js",
4242
libraryTarget: "umd"
4343
},
4444
cache: false,

0 commit comments

Comments
 (0)