Files
psf-bch-api-base/.env-example
T

36 lines
720 B
Plaintext
Raw Normal View History

# START INFRASTRUCTURE SETUP
# Full Node Connection
RPC_BASEURL=http://172.17.0.1:8332
RPC_USERNAME=bitcoin
RPC_PASSWORD=password
2025-11-15 07:03:13 -08:00
# Fulcrum Indexer
FULCRUM_API=http://172.17.0.1:3001/v1
# SLP Indexer
SLP_INDEXER_API=http://localhost:5010
2025-11-23 10:16:21 -08:00
# REST API URL for wallet operations
LOCAL_RESTURL=http://localhost:5942/v6
2025-11-23 10:16:21 -08:00
# END INFRASTRUCTURE SETUP
# START ACCESS CONTROL
PORT=5942
# x402 payments required to access this API?
X402_ENABLED=true
SERVER_BCH_ADDRESS=bitcoincash:qqlrzp23w08434twmvr4fxw672whkjy0py26r63g3d
FACILITATOR_URL=http://localhost:4345/facilitator
2025-12-21 11:22:44 -07:00
X402_PRICE_SAT=200
# Basic Authentication required to access this API?
USE_BASIC_AUTH=true
BASIC_AUTH_TOKEN=some-random-token
# END ACCESS CONTROL