ubuntu安装parity

  1. bash <(curl https://get.parity.io -L)
    2.添加parity的配置文件 config.toml,路径:~/.local/share/io.parity.ethereum
    [parity]
    db_path = "/data/io.parity.ethereum/chains"

[rpc]
disable = false
port = 8545
interface = "local"
apis = ["web3", "eth", "net", "parity", "traces", "rpc", "secretstore", "personal"]

[ui]
interface = "all"
port = 8180

[websockets]
disable = false
port = 8546
interface = "all"
apis = ["web3", "eth", "pubsub", "net", "parity", "parity_pubsub", "traces", "rpc", "shh", "shh_pubsub"]

你可能感兴趣的:(ubuntu安装parity)