Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 970 Bytes

File metadata and controls

34 lines (23 loc) · 970 Bytes

Public RPC Asset Management

Overview

This repo will help manage all public contributions to Etho Protocol public RPC services on the Etho Protocol Network.

Installation Instructions

  1. Install Etho Protocol Node (Geth) From Latest Releases .
  2. Install Example System Service Below
  3. Open Pull-Request In This Repo & Add Your Public IP Address to ipaddresses.json

Example System Service

[Unit]
Description=Etho Protocol RPC Node

[Service]
Type=simple

User=ethonode
Group=ethonode

ExecStart=/usr/sbin/geth --rpc --rpcaddr 127.0.0.1 --rpcport 8545 --rpcapi "web3,eth,net,utils" --rpccorsdomain "*" --rpcvhosts "*"

Restart=always

[Install]
WantedBy=default.target