This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.toml.example
55 lines (36 loc) · 1.97 KB
/
config.toml.example
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[mixnode]
version = '0.10.0'
# Human readable ID of this particular mixnode.
id = 'mixer'
# Layer of this particular mixnode determining its position in the network.
layer = 2
# Socket address to which this mixnode will bind to and will be listening for packets.
listening_address = '165.22.206.54:1789'
# Path to file containing private identity key.
private_identity_key_file = '/home/nym/.nym/mixnodes/mixer/data/private_identity.pem'
# Path to file containing public identity key.
public_identity_key_file = '/home/nym/.nym/mixnodes/mixer/data/public_identity.pem'
# Path to file containing private identity key.
private_sphinx_key_file = '/home/nym/.nym/mixnodes/mixer/data/private_sphinx.pem'
# Path to file containing public sphinx key.
public_sphinx_key_file = '/home/nym/.nym/mixnodes/mixer/data/public_sphinx.pem'
##### additional mixnode config options #####
# Optional address announced to the directory server for the clients to connect to.
# It is useful, say, in NAT scenarios or wanting to more easily update actual IP address
# later on by using name resolvable with a DNS query, such as `nymtech.net:8080`.
# Additionally a custom port can be provided, so both `nymtech.net:8080` and `nymtech.net`
# are valid announce addresses, while the later will default to whatever port is used for
# `listening_address`.
announce_address = 'nym-ams3-01.robotsystematic.com:1789'
# Validator server to which the node will be reporting their presence data.
validator_rest_url = 'http://testnet-finney-validator.nymtech.net:1317'
# Metrics server to which the node will be reporting their metrics data.
metrics_server_url = 'http://testnet-metrics.nymtech.net:8080'
# Address of the validator contract managing the network.
mixnet_contract_address = 'hal1k0jntykt7e4g3y88ltc60czgjuqdy4c9c6gv94'
##### advanced configuration options #####
# Absolute path to the home Nym Clients directory.
nym_root_directory = '/root/.nym/mixnodes'
##### logging configuration options #####
[logging]
# TODO