forked from input-output-hk/cardano-sl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-wallet-config.nix
29 lines (22 loc) · 1017 Bytes
/
sample-wallet-config.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# If any customization is required, copy this file to
# ./custom-wallet-config.nix and make edits there.
{
## NOTE for docker users: The IP's in walletListen and ekgListen
## should be set to 0.0.0.0. If you override the port, you must
## specify the `-p` parameter to expose the service.
## Wallet API server.
#walletListen = "127.0.0.1:8090";
## Runtime metrics server.
#ekgListen = "127.0.0.1:8000";
## Directory for the wallet's local state. Must be set BEFORE
## running nix-build to have any effect, and it must be enclosed in
## double quotes.
#stateDir = "./state-wallet-mainnet";
## Used to connect to a custom set of nodes on the network. When
## unspecified an appropriate default topology is generated.
#topologyFile = ./topology.yaml;
## See https://downloads.haskell.org/~ghc/8.0.2/docs/html/users_guide/runtime_control.html#running-a-compiled-program
#ghcRuntimeArgs = "-N2 -qg -A1m -I0 -T";
## Primarily used for troubleshooting.
#additionalNodeArgs = "";
}