-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
77 lines (67 loc) · 2.28 KB
/
config.toml
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[parity]
# Local Development Chain
chain = "/home/parity/chain-spec.json"
# Forces Parity to run even if there are known issues regarding consensus. Not recommended.
no_consensus = true
# Blockchain and settings will be stored in /home/parity.
base_path = "/home/parity"
# Parity databases will be stored in /home/parity/chains.
db_path = "/home/parity/chains"
# Your encrypted private keys will be stored in /home/parity/keys.
keys_path = "/home/parity/keys"
# Parity will not save local transaction queue to disk.
no_persistent_txqueue = true
[account]
# From: [0x913da4198e6be1d5f5e4a40d0667f70c0b5430eb] you'll be able to send tranasactions without password.
unlock = ["0x913da4198e6be1d5f5e4a40d0667f70c0b5430eb"]
# File at /home/parity/password should contain passwords to unlock your accounts. One password per line.
password = ["/home/parity/password"]
[network]
# Enable or disable new peers discovery.
discovery = false
# Connect only to reserved nodes.
reserved_only = true
[rpc]
# JSON-RPC will be listening for connections on IP 0.0.0.0.
interface = "all"
# Allows Cross-Origin Requests from domain '*'.
cors = ["*"]
# Only selected APIs will be exposed over this interface.
apis = ["all"]
# Allow connections only using specified addresses.
hosts = ["all"]
# Enable experimental JSON-RPC APIs
experimental_rpcs = true
[websockets]
# JSON-RPC will be listening for connections on IP 0.0.0.0.
interface = "all"
# Allows connecting from Origin '*'.
origins = ["all"]
# Only selected APIs will be exposed over this interface.
apis = ["all"]
# Allow connections only using specified addresses.
hosts = ["all"]
[ipc]
# You won't be able to use IPC to interact with Parity.
disable = true
[secretstore]
# You won't be able to encrypt and decrypt secrets.
disable = true
[ipfs]
# You won't be able to hash-query blockchain data.
enable = false
[mining]
reseal_min_period = 0
min_gas_price = 1
# Targeting 6500000 gas per block when sealing a new block.
gas_floor_target = "8000000"
# Gas limit will be raised at most by 6500000 gas.
gas_cap = "8000000"
# Parity will reject transactions above 6500000 gas.
tx_gas_limit = "8000000"
[footprint]
# Significant speed up but unclean exit is unrecoverable (disables DB WAL).
fast_and_loose = false
[snapshots]
# Disables automatic periodic snapshots.
disable_periodic = true