Skip to content

Commit

Permalink
Improve parameters description and example values
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiloc committed Sep 27, 2024
1 parent e0b100d commit eb53a78
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions reference/sample-configuration-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ The signer configuration file is a TOML file that contains the configuration opt

| Name | Required | Description |
| :--- | :--- | :--- |
| node\_host || IP address and port where your Stacks node can be accessed. The port 20443 is the default RPC endpoint for Stacks nodes. Note that you must use an IP address - DNS hosts are not supported at this time. |
| endpoint || Location where the signer will expose an RPC endpoint for receiving events from your Stacks node. |
| node\_host || IP:PORT where your Stacks node can be accessed. The port 20443 is the default RPC endpoint for Stacks nodes. Note that you must use an IP address - DNS hosts are not supported at this time. |
| endpoint || IP:PORT where the signer will expose an RPC endpoint for receiving events from your Stacks node. |
| stacks\_private\_key || Hex representation of the signer's Stacks private key used for communicating with the Stacks Node, including writing to the Stacker DB instance. |
| network || Network to use. One of "mainnet", "testnet" or "mocknet". |
| auth\_password || Authorization token for HTT |
| auth\_password || Authorization token for HTTP requests made from the signer to your Stacks node. |
| db\_path || Path to the signer's database file or :memory: for an in-memory database. |
| metrics\_endpoint | | Address and port for Prometheus metrics collection. |
| metrics\_endpoint | | IP:PORT for Prometheus metrics collection. |
| event\_timeout\_ms | | Time to wait (in milliseconds) for a response from the stacker-db instance. |
| dkg\_public\_timeout\_ms | | Timeout in (milliseconds) to gather DkgPublicShares messages. |
| dkg\_private\_timeout\_ms | | Timeout in (milliseconds) to gather DkgPrivateShares messages. |
Expand Down Expand Up @@ -298,7 +298,7 @@ amount = 24378281250000
rpc_bind = "0.0.0.0:20443"
p2p_bind = "0.0.0.0:20444"
bootstrap_node = "029266faff4c8e0ca4f934f34996a96af481df94a89b0c9bd515f3536a95682ddc@seed.testnet.hiro.so:30444"
prometheus_bind = "0.0.0.0:9153"
prometheus_bind = "127.0.0.1:9153"
working_dir = "/hirosystems/data"
local_peer_seed = "{{ redacted }}"
# Required for nodes attached to signers, optional for other nodes
Expand Down Expand Up @@ -417,7 +417,7 @@ auth_password = "$your_http_auth_token"
stacks_private_key = "$your_stacks_private_key"

# The IP address and port where prometheus metrics can be accessed.
metrics_endpoint = "0.0.0.0:9154"
metrics_endpoint = "127.0.0.1:9154"
```

### Mainnet Stacks Node
Expand Down

0 comments on commit eb53a78

Please sign in to comment.