From 908911fba62984eee40c017abc0f6c5eb659afc8 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Fri, 28 Nov 2025 06:02:05 -0800 Subject: [PATCH 1/2] Copying .env-local to docker --- production/docker/.env-local | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/production/docker/.env-local b/production/docker/.env-local index 6c7bfcd..c175025 100644 --- a/production/docker/.env-local +++ b/production/docker/.env-local @@ -19,16 +19,16 @@ LOCAL_RESTURL=http://localhost:5942/v6 # START ACCESS CONTROL +PORT=5942 + # x402 payments required to access this API? -X402_ENABLED=false -#X402_ENABLED=true -#SERVER_BCH_ADDRESS=bitcoincash:qqlrzp23w08434twmvr4fxw672whkjy0py26r63g3d -#FACILITATOR_URL=http://localhost:4345/facilitator +X402_ENABLED=true +SERVER_BCH_ADDRESS=bitcoincash:qqlrzp23w08434twmvr4fxw672whkjy0py26r63g3d +FACILITATOR_URL=http://localhost:4345/facilitator # Basic Authentication required to access this API? -USE_BASIC_AUTH=false -#USE_BASIC_AUTH=true -#BASIC_AUTH_TOKEN=some-random-token +USE_BASIC_AUTH=true +BASIC_AUTH_TOKEN=some-random-token # END ACCESS CONTROL From 50db4be890208a5e79fce33387409bc74319cbc9 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Tue, 9 Dec 2025 11:35:15 -0700 Subject: [PATCH 2/2] fix(minimal-slp-wallet): Updating to v7.0.1 --- package-lock.json | 46 ++++++++++++---------------------------------- package.json | 2 +- 2 files changed, 13 insertions(+), 35 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6255ecf..c751575 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,7 +14,7 @@ "cors": "2.8.5", "dotenv": "16.3.1", "express": "5.1.0", - "minimal-slp-wallet": "7.0.0", + "minimal-slp-wallet": "7.0.1", "psffpp": "1.2.0", "slp-token-media": "1.2.10", "winston": "3.11.0", @@ -30,37 +30,6 @@ "standard": "17.1.2" } }, - "../minimal-slp-wallet": { - "version": "7.0.0", - "license": "MIT", - "dependencies": { - "@chris.troutner/retry-queue": "1.0.11", - "@psf/bch-js": "7.1.0", - "bch-consumer": "1.6.2", - "bch-donation": "1.1.2", - "crypto-js": "4.0.0" - }, - "devDependencies": { - "apidoc": "1.2.0", - "c8": "10.1.3", - "chai": "4.2.0", - "coveralls": "3.1.0", - "esbuild": "0.20.0", - "esbuild-plugin-polyfill-node": "0.3.0", - "eslint": "7.17.0", - "eslint-config-prettier": "7.1.0", - "eslint-config-standard": "16.0.2", - "eslint-plugin-node": "11.1.0", - "eslint-plugin-prettier": "3.3.1", - "eslint-plugin-standard": "4.0.1", - "husky": "4.3.8", - "lodash.clonedeep": "4.5.0", - "mocha": "9.2.1", - "semantic-release": "19.0.3", - "sinon": "9.2.0", - "standard": "16.0.4" - } - }, "node_modules/@bcoe/v8-coverage": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-1.0.2.tgz", @@ -6495,8 +6464,17 @@ } }, "node_modules/minimal-slp-wallet": { - "resolved": "../minimal-slp-wallet", - "link": true + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/minimal-slp-wallet/-/minimal-slp-wallet-7.0.1.tgz", + "integrity": "sha512-lMDyDXgMS60KCL9UXpLsFviPbDH+XhT4E3mI0gEsWWLuaXEzB5fw5YMas8svPudel19ciywVqHmFUb3XqTF13g==", + "license": "MIT", + "dependencies": { + "@chris.troutner/retry-queue": "1.0.11", + "@psf/bch-js": "7.1.0", + "bch-consumer": "1.6.2", + "bch-donation": "1.1.2", + "crypto-js": "4.0.0" + } }, "node_modules/minimalistic-assert": { "version": "1.0.1", diff --git a/package.json b/package.json index 26c125f..e352319 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "cors": "2.8.5", "dotenv": "16.3.1", "express": "5.1.0", - "minimal-slp-wallet": "7.0.0", + "minimal-slp-wallet": "7.0.1", "psffpp": "1.2.0", "slp-token-media": "1.2.10", "winston": "3.11.0",