Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: dual stack #649

Merged
merged 2 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ The latest docker image of ARC can be found [here](https://hub.docker.com/r/bsvb
## Microservices
The API http server as well as all gRPC servers of each service has dual-stack capability and thus listen on both IPv4 & IPv6 addresses.
### API
API is the REST API microservice for interacting with ARC. See the [API documentation](https://bitcoin-sv.github.io/arc/api.html) for more information.
Expand Down
3 changes: 2 additions & 1 deletion config/example_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ broadcasting: # settings for connection to nodes
p2p: 18335

cache:
engine: freecache # cache engine - freecache/redis
engine: freecache # cache engine - one of freecache | redis
freecache: # freecache configuration
size: 10000000 # size of cache
redis:
Expand Down Expand Up @@ -111,6 +111,7 @@ api:
address: localhost:9090 # address to start api server on
wocApiKey: "mainnet_XXXXXXXXXXXXXXXXXXXX" # api key for www.whatsonchain.com
wocMainnet: false # query main or test net on www.whatsonchain.com
requestExtendedLogs: true # if true, the logs will include request methods & headers
defaultPolicy: # default policy of bitcoin node
excessiveblocksize: 2000000000
blockmaxsize: 512000000
Expand Down
3 changes: 2 additions & 1 deletion test/config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ blocktx:
api:
address: 0.0.0.0:9090
wocApiKey: "mainnet_XXXXXXXXXXXXXXXXXXXX"
wocMainnet: false
requestExtendedLogs: true
defaultPolicy:
excessiveblocksize: 2000000000
blockmaxsize: 512000000
Expand Down Expand Up @@ -130,7 +132,6 @@ api:
minconfconsolidationinput: 6
minconsolidationinputmaturity: 6
acceptnonstdconsolidationinput: false
requestExtendedLogs: true

callbacker:
listenAddr: 0.0.0.0:8021
Expand Down
Loading