diff --git a/package-lock.json b/package-lock.json
index 1e59b353..12362d86 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -125,6 +125,7 @@
"lint-staged": "^12.4.3",
"mocha": "^10.0.0",
"nock": "^13.2.9",
+ "node-fetch": "^2.6.7",
"nyc": "^15.1.0",
"os-browserify": "^0.3.0",
"postcss": "^8.4.16",
@@ -14291,7 +14292,8 @@
},
"node_modules/node-fetch": {
"version": "2.6.7",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
+ "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
"dependencies": {
"whatwg-url": "^5.0.0"
},
@@ -17913,7 +17915,8 @@
},
"node_modules/tr46": {
"version": "0.0.3",
- "license": "MIT"
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
},
"node_modules/trim-newlines": {
"version": "3.0.1",
@@ -18662,7 +18665,8 @@
},
"node_modules/webidl-conversions": {
"version": "3.0.1",
- "license": "BSD-2-Clause"
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
},
"node_modules/webpack": {
"version": "5.70.0",
@@ -18928,7 +18932,8 @@
},
"node_modules/whatwg-url": {
"version": "5.0.0",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
"dependencies": {
"tr46": "~0.0.3",
"webidl-conversions": "^3.0.0"
@@ -28686,6 +28691,8 @@
},
"node-fetch": {
"version": "2.6.7",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
+ "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
"requires": {
"whatwg-url": "^5.0.0"
}
@@ -30912,7 +30919,9 @@
}
},
"tr46": {
- "version": "0.0.3"
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
},
"trim-newlines": {
"version": "3.0.1",
@@ -31380,7 +31389,9 @@
"version": "1.2.0"
},
"webidl-conversions": {
- "version": "3.0.1"
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
},
"webpack": {
"version": "5.70.0",
@@ -31556,6 +31567,8 @@
},
"whatwg-url": {
"version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
"requires": {
"tr46": "~0.0.3",
"webidl-conversions": "^3.0.0"
diff --git a/package.json b/package.json
index 1d9363b7..1f64b85f 100644
--- a/package.json
+++ b/package.json
@@ -15,7 +15,7 @@
"test:controller": "npx mocha ./tests/controller/**.ts",
"test:report": "rm -rf .nyc_output && rm -rf coverage && npx nyc --reporter=text --reporter=html npm run test:controller",
"install:local": "npm i ../controllers/packages/solana-controllers/*.tgz && npm i ../controllers/packages/base-controllers/*.tgz",
- "locale": "node ./src/scripts/importLocales.js",
+ "locale": "node ./src/scripts/importLocales.mjs",
"serve:prod": "vue-cli-service serve --mode production"
},
"dependencies": {
@@ -136,6 +136,7 @@
"lint-staged": "^12.4.3",
"mocha": "^10.0.0",
"nock": "^13.2.9",
+ "node-fetch": "^2.6.7",
"nyc": "^15.1.0",
"os-browserify": "^0.3.0",
"postcss": "^8.4.16",
diff --git a/public/index.html b/public/index.html
index 02fa532d..cc5e36cd 100644
--- a/public/index.html
+++ b/public/index.html
@@ -68,10 +68,16 @@
-
+
-
-
<%= htmlWebpackPlugin.options.title %>
+
+ <%= htmlWebpackPlugin.options.title %>