From 1b3ed7b29e922ad94fddd755e7715b7c0e3dce17 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Mon, 23 Mar 2026 12:57:24 -0700 Subject: [PATCH 1/2] Getting global URL --- examples/01-x402-axios-client.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/01-x402-axios-client.js b/examples/01-x402-axios-client.js index 9a9064e..ceac349 100644 --- a/examples/01-x402-axios-client.js +++ b/examples/01-x402-axios-client.js @@ -6,7 +6,9 @@ import { base } from 'viem/chains' import { createWalletClient, http } from 'viem' -const baseURL = 'http://localhost:5942' +// const baseURL = 'http://localhost:5942' // Local +const baseURL = 'https://x402.fullstack.cash' // Production + const endpointPath = '/v6/full-node/blockchain/getBlockchainInfo' const pKey = process.env.PRIVATE_KEY || '' From ee773b789d48c1fb0bf6147c403544cea5efa396 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Mon, 23 Mar 2026 13:04:49 -0700 Subject: [PATCH 2/2] Building from master branch --- production/docker/Dockerfile | 2 +- production/docker/docker-compose.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/production/docker/Dockerfile b/production/docker/Dockerfile index c7313f9..bff319b 100644 --- a/production/docker/Dockerfile +++ b/production/docker/Dockerfile @@ -51,7 +51,7 @@ RUN git clone https://github.com/Permissionless-Software-Foundation/psf-bch-api- # and `stage` has the most up-to-date changes. WORKDIR /home/safeuser/psf-bch-api-base -RUN git checkout ct-unstable +#RUN git checkout ct-unstable # Install dependencies RUN npm install diff --git a/production/docker/docker-compose.yml b/production/docker/docker-compose.yml index ed777d2..5fe930c 100644 --- a/production/docker/docker-compose.yml +++ b/production/docker/docker-compose.yml @@ -19,4 +19,5 @@ services: - ./.env:/home/safeuser/.env - ../data:/home/safeuser/psf-bch-api/production/data - ../data/logs:/home/safeuser/psf-bch-api/logs - restart: always \ No newline at end of file + restart: always +