mirror of
https://github.com/Permissionless-Software-Foundation/psf-bch-api-base.git
synced 2026-09-21 16:52:00 -07:00
fix(README): updated
This commit is contained in:
@@ -1,246 +1,187 @@
|
||||
# psf-bch-api
|
||||
# psf-bch-api-base
|
||||
|
||||
[](https://github.com/Permissionless-Software-Foundation/psf-bch-api/blob/master/LICENSE.md)
|
||||
[](https://github.com/feross/standard)
|
||||
|
||||
This is a REST API server for communicating with Bitcoin Cash (BCH) blockchain infrastructure. It is written in node.js JavaScript using the [Express.js](https://expressjs.com/) framework and follows the [Clean Architecture](https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html) design pattern. It replaces the legacy [bch-api](https://github.com/Permissionless-Software-Foundation/bch-api) and implements the [x402-bch protocol](https://github.com/x402-bch/x402-bch) for optional per-call payments.
|
||||
This project is a fork of `psf-bch-api` with one major change: paid access now uses the `x402` protocol on the Base ecosystem, with pricing in USDC, instead of `x402-bch` on BCH.
|
||||
|
||||
psf-bch-api is the heart of the [Cash Stack](https://cashstack.info), a full software stack for building blockchain-based applications. It creates a single web2 REST API interface that abstracts away the complexity of the underlying blockchain infrastructure, so that application developers can interact with the blockchain through simple HTTP calls.
|
||||
The API surface remains focused on BCH infrastructure (BCH full node, Fulcrum, and SLP indexer), but monetization and payment verification are handled through x402-compatible middleware and facilitator endpoints.
|
||||
|
||||

|
||||
## What Changed In This Fork
|
||||
|
||||
psf-bch-api depends on three pieces of back end infrastructure:
|
||||
- Switched from `x402-bch` middleware to `x402-express`.
|
||||
- Added Base/EVM payment support (`@x402/evm`) and `x402-axios` client example.
|
||||
- Pricing is configured in `X402_PRICE_USDC` (USDC amount), not BCH satoshis.
|
||||
- x402 network is configured using CAIP-2 format (for example `eip155:8453` for Base mainnet and `eip155:84532` for Base Sepolia).
|
||||
- Facilitator auth headers are generated using Coinbase CDP JWT auth (`FACILITATOR_KEY_ID` and `FACILITATOR_SECRET_KEY`) when using CDP endpoints.
|
||||
|
||||
- **[BCHN Full Node](https://cashstack.info/docs/back-end/bchn-full-node)** - the base blockchain node that validates transactions and blocks.
|
||||
- **[Fulcrum Indexer](https://cashstack.info/docs/back-end/fulcrum-indexer)** - an address indexer that tracks balances, transaction histories, and UTXOs.
|
||||
- **[SLP Token Indexer](https://cashstack.info/docs/back-end/slp-indexer/slp-indexer-software)** - tracks all SLP tokens on the blockchain.
|
||||
## Architecture
|
||||
|
||||
Front-end applications interact with psf-bch-api through libraries such as [bch-js](https://github.com/Permissionless-Software-Foundation/bch-js) or [bch-consumer](https://www.npmjs.com/package/bch-consumer).
|
||||
The server is a Node.js + Express REST API following a Clean Architecture style, and it still depends on:
|
||||
|
||||
High-level documentation about the full Cash Stack is available at [CashStack.info](https://cashstack.info). Interactive API reference documentation is served by the running server at its root URL (e.g. `http://localhost:5942/`), and a live version can be found at [bch.fullstack.cash](https://bch.fullstack.cash/).
|
||||
- BCH full node JSON-RPC
|
||||
- Fulcrum API
|
||||
- SLP indexer API
|
||||
|
||||
## The .env File
|
||||
The access-control layer now supports:
|
||||
|
||||
All runtime configuration is driven by a `.env` file in the project root. An example is provided at `.env-example`. To get started:
|
||||
- open access (no auth, no payment)
|
||||
- bearer-token auth
|
||||
- x402 paid access on Base + USDC
|
||||
- optional bearer bypass for trusted clients when x402 is enabled
|
||||
|
||||
`cp .env-example .env`
|
||||
## Quick Start
|
||||
|
||||
Then edit `.env` to match your environment. The file is organized into two sections:
|
||||
|
||||
### Infrastructure Setup
|
||||
|
||||
These variables tell psf-bch-api where to find the back end services it depends on:
|
||||
|
||||
- `RPC_BASEURL` - URL of the BCHN full node JSON-RPC interface. Default: `http://127.0.0.1:8332`
|
||||
- `RPC_USERNAME` - RPC username for the full node.
|
||||
- `RPC_PASSWORD` - RPC password for the full node.
|
||||
- `FULCRUM_API` - URL of the Fulcrum indexer REST API.
|
||||
- `SLP_INDEXER_API` - URL of the SLP Token Indexer REST API.
|
||||
- `LOCAL_RESTURL` - The REST API URL used internally for wallet operations. Default: `http://127.0.0.1:5942/v6/`
|
||||
|
||||
### Access Control Settings
|
||||
|
||||
These variables control who can access the API and how they pay for it. The three access-control use cases are described in detail in the [Access Control](#access-control) section below.
|
||||
|
||||
- `PORT` - Port the server listens on. Default: `5942`
|
||||
- `X402_ENABLED` - Enable x402-bch per-call payment middleware. Default: `true`
|
||||
- `SERVER_BCH_ADDRESS` - BCH address that receives x402 payments. Default: `bitcoincash:qqsrke9lh257tqen99dkyy2emh4uty0vky9y0z0lsr`
|
||||
- `FACILITATOR_URL` - URL of the x402-bch facilitator service. Default: `http://localhost:4345/facilitator`
|
||||
- `X402_PRICE_SAT` - Price in satoshis charged per API call via x402. Default: `200`
|
||||
- `USE_BASIC_AUTH` - Enable Bearer token authentication middleware. Default: `false`
|
||||
- `BASIC_AUTH_TOKEN` - The expected Bearer token value.
|
||||
|
||||
## Access Control
|
||||
|
||||
psf-bch-api supports three major access-control configurations. Which one you choose depends on your deployment scenario. The behavior is controlled entirely by the `X402_ENABLED` and `USE_BASIC_AUTH` environment variables.
|
||||
|
||||
### 1. No Rate Limits (Open Access)
|
||||
|
||||
Set both access-control flags to `false`:
|
||||
1. Install dependencies:
|
||||
|
||||
```bash
|
||||
npm install
|
||||
```
|
||||
|
||||
2. Create a local env file:
|
||||
|
||||
```bash
|
||||
cp .env-example .env
|
||||
```
|
||||
|
||||
3. Edit `.env` for your infrastructure and access-control mode.
|
||||
|
||||
4. Start the server:
|
||||
|
||||
```bash
|
||||
npm start
|
||||
```
|
||||
|
||||
By default, the API runs on `http://localhost:5942` and controllers are mounted under `/v6`.
|
||||
|
||||
## Environment Variables
|
||||
|
||||
All configuration is loaded from environment variables (typically from `.env`).
|
||||
|
||||
### Core Server and BCH Infrastructure
|
||||
|
||||
- `PORT` (default: `5942`)
|
||||
- `NODE_ENV` (default: `development`)
|
||||
- `API_PREFIX` (default: `/v6`)
|
||||
- `LOG_LEVEL` (default: `info`)
|
||||
- `RPC_BASEURL` (default: `http://127.0.0.1:8332`)
|
||||
- `RPC_USERNAME`
|
||||
- `RPC_PASSWORD`
|
||||
- `RPC_TIMEOUT_MS` (default: `15000`)
|
||||
- `RPC_REQUEST_ID_PREFIX` (default: `psf-bch-api`)
|
||||
- `FULCRUM_API`
|
||||
- `FULCRUM_TIMEOUT_MS` (default: `15000`)
|
||||
- `SLP_INDEXER_API`
|
||||
- `SLP_INDEXER_TIMEOUT_MS` (default: `15000`)
|
||||
- `REST_URL` or `LOCAL_RESTURL` (default fallback: `http://127.0.0.1:5942/v6/`)
|
||||
- `IPFS_GATEWAY` (default: `p2wdb-gateway-678.fullstack.cash`)
|
||||
- `SERVER_KEEPALIVE_TIMEOUT_MS` (default: `3000`)
|
||||
- `SERVER_HEADERS_TIMEOUT_MS` (default: `65000`)
|
||||
- `SERVER_REQUEST_TIMEOUT_MS` (default: `120000`)
|
||||
|
||||
### x402 + Base + USDC Settings
|
||||
|
||||
- `X402_ENABLED` (default: `true`)
|
||||
- `SERVER_BASE_ADDRESS` (EVM address receiving x402 settlements)
|
||||
- `X402_PRICE_USDC` (USDC charged per request)
|
||||
- `x402_NETWORK` (CAIP-2 chain ID; e.g. `eip155:8453` or `eip155:84532`)
|
||||
- `x402_FACILITATOR_URL` (default: `https://api.cdp.coinbase.com/platform/v2/x402`)
|
||||
- `FACILITATOR_KEY_ID` (required for CDP facilitator auth)
|
||||
- `FACILITATOR_SECRET_KEY` (required for CDP facilitator auth)
|
||||
|
||||
### Optional Bearer Auth
|
||||
|
||||
- `USE_BASIC_AUTH` (default: `false`)
|
||||
- `BASIC_AUTH_TOKEN`
|
||||
|
||||
## Access Control Modes
|
||||
|
||||
Behavior is controlled by `X402_ENABLED` and `USE_BASIC_AUTH`.
|
||||
|
||||
### 1) Open Access
|
||||
|
||||
```bash
|
||||
X402_ENABLED=false
|
||||
USE_BASIC_AUTH=false
|
||||
```
|
||||
|
||||
All API endpoints are publicly accessible without any authentication or payment. This is the simplest configuration, ideal for **local development** or **private, trusted networks** where access control is handled at the network level (e.g. behind a firewall or VPN).
|
||||
No payment and no auth checks.
|
||||
|
||||
### 2. Bearer Token Authentication
|
||||
### 2) Bearer Auth Only
|
||||
|
||||
Set `USE_BASIC_AUTH=true` and `X402_ENABLED=false`:
|
||||
|
||||
```
|
||||
```bash
|
||||
X402_ENABLED=false
|
||||
USE_BASIC_AUTH=true
|
||||
BASIC_AUTH_TOKEN=my-secret-token
|
||||
```
|
||||
|
||||
Every API request (except `/health` and `/`) must include an `Authorization` header with a valid Bearer token:
|
||||
Requests (except `/` and `/health`) must send:
|
||||
|
||||
```
|
||||
```text
|
||||
Authorization: Bearer my-secret-token
|
||||
```
|
||||
|
||||
Requests without a valid token receive an HTTP `401 Unauthorized` response. This is the best option when you want to **restrict access to a known set of users or services** (e.g. an organization's internal apps) without requiring cryptocurrency payments.
|
||||
### 3) x402 Payments on Base (USDC)
|
||||
|
||||
### 3. x402-bch Per-Call Payments
|
||||
|
||||
Set `X402_ENABLED=true`:
|
||||
|
||||
```
|
||||
```bash
|
||||
X402_ENABLED=true
|
||||
SERVER_BCH_ADDRESS=bitcoincash:qqlrzp23w08434twmvr4fxw672whkjy0py26r63g3d
|
||||
FACILITATOR_URL=http://localhost:4345/facilitator
|
||||
X402_PRICE_SAT=200
|
||||
USE_BASIC_AUTH=false
|
||||
SERVER_BASE_ADDRESS=0xYourBaseAddress
|
||||
X402_PRICE_USDC=0.1
|
||||
x402_NETWORK=eip155:8453
|
||||
x402_FACILITATOR_URL=https://api.cdp.coinbase.com/platform/v2/x402
|
||||
FACILITATOR_KEY_ID=your_key_id
|
||||
FACILITATOR_SECRET_KEY=your_secret
|
||||
```
|
||||
|
||||
Every API call under the `/v6` prefix requires a BCH micro-payment. When a request arrives without a valid `X-PAYMENT` header, the server responds with HTTP `402 Payment Required` and includes the payment details. Client libraries that support the x402-bch protocol (like [bch-js](https://github.com/Permissionless-Software-Foundation/bch-js)) can handle payments automatically.
|
||||
Protected endpoints return `402 Payment Required` when no valid payment is attached. x402-capable clients can pay and retry automatically.
|
||||
|
||||
This is the right choice for **public, monetized APIs** where you want to charge per call.
|
||||
### 4) x402 + Bearer Bypass
|
||||
|
||||
#### Combined: x402 + Bearer Token
|
||||
|
||||
You can enable both at the same time:
|
||||
|
||||
```
|
||||
```bash
|
||||
X402_ENABLED=true
|
||||
USE_BASIC_AUTH=true
|
||||
BASIC_AUTH_TOKEN=my-secret-token
|
||||
```
|
||||
|
||||
In this mode, requests that present a valid Bearer token bypass the x402 payment requirement. All other requests must pay. This allows you to give **free access to trusted clients** (via the Bearer token) while still **monetizing public access** via x402.
|
||||
Bearer-authenticated requests bypass payment; all others must pay via x402.
|
||||
|
||||
## Client Example: Axios + x402
|
||||
|
||||
Use `examples/01-x402-axios-client.js` to test the payment flow end-to-end.
|
||||
|
||||
What it does:
|
||||
|
||||
1. Calls a protected endpoint without payment and expects `402`.
|
||||
2. Repeats the call using `x402-axios` + an EVM wallet and expects success.
|
||||
|
||||
Run it with an EVM private key:
|
||||
|
||||
```bash
|
||||
PRIVATE_KEY=0x... node examples/01-x402-axios-client.js
|
||||
```
|
||||
|
||||
The script is configured for Base mainnet by default (`viem/chains` `base`). You can switch it to Base Sepolia by using the commented testnet import in the file.
|
||||
|
||||
## Coinbase CDP Credentials
|
||||
|
||||
When using Coinbase's hosted facilitator (`https://api.cdp.coinbase.com/platform/v2/x402`), you must provide:
|
||||
|
||||
- `FACILITATOR_KEY_ID`
|
||||
- `FACILITATOR_SECRET_KEY`
|
||||
|
||||
These are CDP Secret API Key credentials from the Coinbase Developer Platform API Keys dashboard and are used to generate JWT auth headers for `/verify` and `/settle`.
|
||||
|
||||
## Development
|
||||
|
||||
This is a standard node.js project. To set up a development environment:
|
||||
|
||||
1. Clone the repository:
|
||||
|
||||
`git clone https://github.com/Permissionless-Software-Foundation/psf-bch-api && cd psf-bch-api`
|
||||
|
||||
2. Install dependencies:
|
||||
|
||||
`npm install`
|
||||
|
||||
3. Create your configuration file:
|
||||
|
||||
`cp .env-example .env`
|
||||
|
||||
4. Edit `.env` to point to your back end infrastructure (full node, Fulcrum, SLP indexer). For local development you will likely want to disable access control:
|
||||
Common commands:
|
||||
|
||||
```bash
|
||||
npm start
|
||||
npm test
|
||||
npm run test:integration
|
||||
npm run docs
|
||||
```
|
||||
X402_ENABLED=false
|
||||
USE_BASIC_AUTH=false
|
||||
```
|
||||
|
||||
5. Start the server:
|
||||
|
||||
`npm start`
|
||||
|
||||
The server will start on port `5942` by default (or whatever you set in `PORT`). API documentation is available at `http://localhost:5942/`.
|
||||
|
||||
### Generating API Docs
|
||||
|
||||
The API reference documentation is generated by [apiDoc](https://apidocjs.com/) from inline annotations in the source code. To regenerate:
|
||||
|
||||
`npm run docs`
|
||||
|
||||
The output is written to the `docs/` directory and served by the running server at its root URL.
|
||||
|
||||
A live version can be found at [bch.fullstack.cash](https://bch.fullstack.cash/).
|
||||
|
||||
## Production (Docker)
|
||||
|
||||
A Docker setup is provided in the `production/docker/` directory for production deployments. The target OS is Ubuntu Linux.
|
||||
|
||||
1. Install [Docker and Docker Compose](https://docs.docker.com/engine/install/ubuntu/).
|
||||
|
||||
2. Navigate to the Docker directory:
|
||||
|
||||
`cd production/docker`
|
||||
|
||||
3. Create and configure the `.env` file. An example is provided:
|
||||
|
||||
`cp .env-example .env`
|
||||
|
||||
Edit `.env` to match your production infrastructure. Note that inside a Docker container, `localhost` refers to the container itself. Use `172.17.0.1` (the default Docker bridge gateway) to reach services running on the host machine:
|
||||
|
||||
```
|
||||
RPC_BASEURL=http://172.17.0.1:8332
|
||||
FULCRUM_API=http://172.17.0.1:3001/v1
|
||||
SLP_INDEXER_API=http://172.17.0.1:5010
|
||||
```
|
||||
|
||||
4. Build the Docker image:
|
||||
|
||||
`docker-compose build --no-cache`
|
||||
|
||||
5. Start the container:
|
||||
|
||||
`docker-compose up -d`
|
||||
|
||||
The container maps host port `5942` to container port `5942`. The `.env` file is mounted into the container as a volume, so you can update configuration without rebuilding.
|
||||
|
||||
To view logs:
|
||||
|
||||
`docker logs -f psf-bch-api`
|
||||
|
||||
To stop the container:
|
||||
|
||||
`docker-compose down`
|
||||
|
||||
A helper script `cleanup-images.sh` is provided to remove dangling Docker images after rebuilds.
|
||||
|
||||
## Testing
|
||||
|
||||
The project includes both unit tests and integration tests. Tests use [Mocha](https://mochajs.org/) as the test runner, [Chai](https://www.chaijs.com/) for assertions, and [Sinon](https://sinonjs.org/) for mocking. Code coverage is provided by [c8](https://github.com/bcoe/c8).
|
||||
|
||||
### Unit Tests
|
||||
|
||||
Unit tests are located in `test/unit/` and cover adapters, controllers, and use cases. They do not require any running infrastructure. To run:
|
||||
|
||||
`npm test`
|
||||
|
||||
This will first lint the code with [Standard](https://standardjs.com/), then execute all unit tests with code coverage.
|
||||
|
||||
To generate an HTML coverage report:
|
||||
|
||||
`npm run coverage`
|
||||
|
||||
The report is written to the `coverage/` directory.
|
||||
|
||||
### Integration Tests
|
||||
|
||||
Integration tests are located in `test/integration/` and require the back end infrastructure (full node, Fulcrum, SLP indexer) to be running. To run:
|
||||
|
||||
`npm run test:integration`
|
||||
|
||||
Integration tests have a 25-second timeout per test to accommodate network calls.
|
||||
|
||||
## Configuration Reference
|
||||
|
||||
All configuration values are read from environment variables (via the `.env` file). The complete list:
|
||||
|
||||
- `PORT` - Server listen port. Default: `5942`
|
||||
- `NODE_ENV` - Environment (`development` or `production`). Default: `development`
|
||||
- `API_PREFIX` - URL prefix for all REST endpoints. Default: `/v6`
|
||||
- `LOG_LEVEL` - Winston logging level. Default: `info`
|
||||
- `RPC_BASEURL` - Full node JSON-RPC URL. Default: `http://127.0.0.1:8332`
|
||||
- `RPC_USERNAME` - Full node RPC username.
|
||||
- `RPC_PASSWORD` - Full node RPC password.
|
||||
- `RPC_TIMEOUT_MS` - Full node RPC request timeout in ms. Default: `15000`
|
||||
- `FULCRUM_API` - Fulcrum indexer REST API URL.
|
||||
- `FULCRUM_TIMEOUT_MS` - Fulcrum API request timeout in ms. Default: `15000`
|
||||
- `SLP_INDEXER_API` - SLP Token Indexer REST API URL.
|
||||
- `SLP_INDEXER_TIMEOUT_MS` - SLP Indexer API request timeout in ms. Default: `15000`
|
||||
- `LOCAL_RESTURL` - Internal REST URL for wallet operations. Default: `http://127.0.0.1:5942/v6/`
|
||||
- `IPFS_GATEWAY` - IPFS gateway hostname. Default: `p2wdb-gateway-678.fullstack.cash`
|
||||
- `X402_ENABLED` - Enable x402-bch payment middleware. Default: `true`
|
||||
- `SERVER_BCH_ADDRESS` - BCH address for x402 payments. Default: `bitcoincash:qqsrke9lh257tqen99dkyy2emh4uty0vky9y0z0lsr`
|
||||
- `FACILITATOR_URL` - x402-bch facilitator service URL. Default: `http://localhost:4345/facilitator`
|
||||
- `X402_PRICE_SAT` - Satoshis charged per API call via x402. Default: `200`
|
||||
- `USE_BASIC_AUTH` - Enable Bearer token authentication. Default: `false`
|
||||
- `BASIC_AUTH_TOKEN` - Expected Bearer token value.
|
||||
|
||||
## License
|
||||
|
||||
|
||||
Reference in New Issue
Block a user