-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathergo-testnet.conf
43 lines (36 loc) · 1.35 KB
/
ergo-testnet.conf
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
# Example configuration which can be used to run Ergo client (aka Ergo node)
# Please also read instructions for a full node setup https://github.com/ergoplatform/ergo/wiki/Set-up-a-full-node
ergo {
# Directory to keep data
directory = "./ergo/testnet/data"
networkType = "testnet"
node {
# Is the node is doing mining (can be turned off if you
mining = true
# external (e.g. GPU) miner is not used (so do mining on CPU locally)
useExternalMiner = false
}
wallet {
# Perform blocks scanning when the wallet is locked (may consume additinal disk space)
postponedScanning = true
# Save used boxes (may consume additinal disk space) or delete them immediately
keepSpentBoxes = true
# Mnemonic seed used in wallet for ONLY FOR TESTS!
# testMnemonic = "ozone drill grab fiber curtain grace pudding thank cruise elder eight nine"
# Number of keys to be generated for tests
# testKeysQty = 10
}
}
scorex {
network {
nodeName = "morphic-testnet-node"
knownPeers = []
}
restApi {
# API is binded for localhost, replace to "0.0.0.0:9052" to be available from remote host
bindAddress = "0.0.0.0:9053"
# Base16-encoded Blake2b hash from your secret, that should be passed in headers as api_key
# SET THIS TO YOUR UNIQUE HASH IF YOU DON'T WANT ANYBODY TO ACCESS YOUR WALLET!
apiKeyHash = ""
}
}