Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/parity #2

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "go-ethereum"]
path = go-ethereum
url = https://github.com/ethereum/go-ethereum
[submodule "openethereum"]
path = openethereum
url = https://github.com/openethereum/openethereum.git
1 change: 0 additions & 1 deletion go-ethereum
Submodule go-ethereum deleted from 6a62fe
1 change: 1 addition & 0 deletions openethereum
Submodule openethereum added at 41aee5
32 changes: 32 additions & 0 deletions testnet-config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This config should be placed in following path:
# ~/.local/share/io.parity.ethereum/config.toml

[parity]
# Ropsten Test Network
chain = "ropsten"
# Parity continously syncs the chain
mode = "active"
# Specify the number of blocks between each auto-update check.
auto_update_check_frequency = 10
# You will be identified as 'bitwyre-eth-node' amongst other nodes..
identity = "bitwyre-eth-node"

[network]
# Parity will try to maintain connection to at least 5 peers.
min_peers = 5

[rpc]
# Allows Cross-Origin Requests from domain '*'.
cors = ["*"]
# Allow connections only using specified addresses.
hosts = ["*"]
# Threads for handling incoming connections for HTTP JSON-RPC server.
server_threads = 2

[websockets]
# Only selected APIs will be exposed over this interface.
apis = ["web3", "eth", "pubsub", "net", "parity", "parity_pubsub", "private", "traces", "rpc", "shh", "shh_pubsub", "parity_transactions_pool", "personal", "parity_accounts", "secretstore"]

[ipc]
# Only selected APIs will be exposed over this interface.
apis = ["web3", "eth", "pubsub", "net", "parity", "parity_pubsub", "parity_accounts", "private", "traces", "rpc", "shh", "shh_pubsub", "parity_transactions_pool", "personal", "secretstore"]