Last active
August 25, 2018 19:58
-
-
Save MicrowaveDev/b931ce8ed0dbcbdc7146bbb7d07f296f to your computer and use it in GitHub Desktop.
Parity mac service
This file contains 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
bash <(curl https://get.parity.io -Lk) -r stable | |
sudo wget -O /Library/LaunchDaemons/parity-testnet-node.plist https://gist.githubusercontent.com/Jonybang/b931ce8ed0dbcbdc7146bbb7d07f296f/raw/188b71dd907b8540090c6b401385292943ac08ff/parity-testnet-node.plist | |
sudo launchctl load -w /Library/LaunchDaemons/parity-testnet-node.plist |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>Parity Testnet</string> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>KeepAlive</key> | |
<true/> | |
<key>ThrottleInterval</key> | |
<integer>300</integer> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/bin/parity</string> | |
<string>--testnet</string> | |
<string>--chain</string> | |
<string>kovan</string> | |
<string>--jsonrpc-hosts</string> | |
<string>all</string> | |
<string>--jsonrpc-interface</string> | |
<string>all</string> | |
<string>--ws-hosts</string> | |
<string>all</string> | |
<string>--ws-interface</string> | |
<string>all</string> | |
<string>--ws-origins</string> | |
<string>all</string> | |
<string>--jsonrpc-cors</string> | |
<string>all</string> | |
<string>--force-ui</string> | |
<string>--no-persistent-txqueue</string> | |
</array> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment