Created
March 3, 2017 09:11
-
-
Save whysoserious/3fcbb94dc8bb0367d4c4f78405650ef9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This config should be placed in following path: | |
# $HOME/Library/Application Support/io.parity.ethereum/config.toml | |
[ui] | |
# You will need to unlock accounts manually if UI is disabled. | |
disable = true | |
[network] | |
# Parity will sync by downloading latest state first. Node will be operational in couple minutes. | |
warp = true | |
# Parity will listen for connections on port 30306. | |
port = 30306 | |
# Parity will maintain at most 100 peers. | |
max_peers = 100 | |
[rpc] | |
# You won't be able to interact with Parity using JSON-RPC over HTTP. | |
disable = true | |
# JSON-RPC over HTTP will be accessible on port 8645. | |
port = 8645 | |
[ipc] | |
# You won't be able to use IPC to interact with Parity. | |
disable = true | |
[dapps] | |
# You won't be able to access any web Dapps. | |
disable = true | |
# Dapps Server will be running on port 8000. | |
port = 8000 | |
[vm] | |
# Enables Just In Time compiler. Super-fast for CPU-intensive contracts. | |
jit = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment