以太坊ETH钱包openethereum(原Parity)使用指南

以太坊ETH钱包Parity项目已经于2020年初停止,新项目叫openethereum,介于官方文档过老,这里介绍下怎么用。

主要介绍下Docker下的使用。

配置文件 config.toml相比原来Parity的,在位置和内容上有些变化。

首先是内容,下面给出一个示例,开启JSON-RPC及其它所有API,所有IP都可监听。

# This config should be placed in following path:
#   %AppData%\Parity\Ethereum\config.toml

[rpc]
#JSON-RPC over HTTP will be accessible on port 15501.
port = 15501
#  JSON-RPC will be listening for connections on IP 0.0.0.0.
interface = "0.0.0.0"
# Allows Cross-Origin Requests from domain '*'.
cors = ["*"]
# Allow connections only using specified addresses.
hosts = ["*"]
# Allow all APIs will be exposed over this interface.

apis = ["all"]

[mining]
# Account address to receive reward when block is mined.
# author = ""

新建一个目录parity,将上面的配置文件放到该目录下。

下面创建一个Docker下的openethereum容器

docker run -d -p 15101:15501 -p 30303:30303 -p 30303:30303/udp --name parity1 --restart=always -v /parity/:/home/openethereum/.local/share/io.parity.ethereum/ openethereum/openethereum:v3.1.1 --base-path /home/openethereum/.local/share/io.parity.ethereum/ --config /home/openethereum/.local/share/io.parity.ethereum/config.toml

也可以使用openethereum的独立客户端,使用源码编译或者使用官方释放的编译好的二进制包,从而避免因Docker产生的一些问题,如Docker网络故障等,同时也能更方便地访问日志。

2 thoughts on “以太坊ETH钱包openethereum(原Parity)使用指南”

  1. code: 13, kind: PermissionDenied, message: “Permission denied”,配置好了日志显示请问这个啥情况

Leave a Comment

豫ICP备19001387号-1