Files
bch-api/docker/testnet/start-local-testnet.sh
T

62 lines
1.8 KiB
Bash
Raw Normal View History

2019-07-17 12:19:38 -07:00
#!/bin/bash
2021-01-11 16:22:27 -08:00
# Docker containers for the below infrastructure is described here:
# https://psfoundation.cash/blog/cash-stack
# Pre-synced databases can be downloaded on the CashStrap page:
# https://fullstack.cash/cashstrap
# Which network are you using?
#export NETWORK=mainnet
export NETWORK=testnet
2019-12-08 08:28:00 -08:00
# Full node
2021-01-11 16:22:27 -08:00
export RPC_IP=172.17.0.1:18332
export RPC_BASEURL=http://$RPC_IP/
2019-07-17 12:19:38 -07:00
export RPC_USERNAME=bitcoin
export RPC_PASSWORD=password
2019-12-08 08:28:00 -08:00
# SLPDB
2020-03-30 18:56:49 -07:00
export SLPDB_URL=http://172.17.0.1:13300/
2021-10-27 08:31:03 -07:00
export SLPDB_PASS=portlandisacityinoregon
export SLPDB_PASS_GP=portlandisacityinoregon
export SLPDB_PASS_WL=portlandisacityinoregon
2021-01-11 16:22:27 -08:00
# Use the same address as SLPDB_URL if you don't have a separate whitelist server.
export SLPDB_WHITELIST_URL=http://172.17.0.1:13300/
# slp-api alternative SLP validator using slp-validate:
# https://github.com/Permissionless-Software-Foundation/slp-api
2021-10-27 08:31:03 -07:00
export SLP_API_URL=https://slpapi-testnet3.fullstackslp.nl/
2019-07-17 12:19:38 -07:00
2020-11-20 08:36:34 -08:00
# Mainnet Fulcrum / ElectrumX
export FULCRUM_URL=172.17.0.1
2021-01-11 16:22:27 -08:00
export FULCRUM_PORT=60002
2021-10-27 08:31:03 -07:00
export FULCRUM_API=http://172.17.0.1:3000/v1/
2020-11-20 08:36:34 -08:00
# Redis DB
export REDIS_PORT=6380
export REDIS_HOST=172.17.0.1
# JWT Token Secret
2021-10-27 08:31:03 -07:00
export TOKENSECRET=fridayharbor
2020-11-08 17:13:03 -08:00
# So that bch-api can call bch-js locally.
2021-01-11 16:22:27 -08:00
export LOCAL_RESTURL=http://127.0.0.1:3000/v4/
2020-11-08 17:13:03 -08:00
2021-01-11 16:22:27 -08:00
# Basic Authentication password (optional)
2021-10-27 08:31:03 -07:00
export PRO_PASS=thejaasjhehrakseuhakuhr
2021-01-11 16:22:27 -08:00
# Whitelisted domains. Automatically give pro-tier rate limit access to apps
# that originate froma domain on the whitelist.
export WHITELIST_DOMAINS=fullstack.cash,psfoundation.cash,torlist.cash
# Rate Limits. Numbers are divided into 1000. e.g. 1000 / 50 = 20 RPM for ANON.
# Requests use the ANON rate limit if they fail to pass in a JWT token.
# ANON = 20 requests per minute (RPM)
export ANON_RATE_LIMIT=50
# 10 = 100 RPM
2021-10-27 08:31:03 -07:00
export WHITELIST_RATE_LIMIT=1
export INTERNAL_RATE_LIMIT=100
2020-11-08 17:13:03 -08:00
2019-07-17 12:19:38 -07:00
npm start
2021-10-27 08:31:03 -07:00