Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.32 KB

RUM-ETH.md

File metadata and controls

39 lines (32 loc) · 1.32 KB

RUM-ETH

An ETH (POA) Network is being maintained by RumSystem.net.

Ethereum

Launch a Node

TEMP_PATH=`mktemp -d`
TEMP_PORT=`shuf -n 1 -i 49152-65535`
geth --datadir $TEMP_PATH init quorum.json
geth \
    --datadir $TEMP_PATH \
    --networkid 19890609 \
    --port $TEMP_PORT \
    --bootnodes 'enode://3cd11a5dd80a59158f0f1baea9c0ce4928815ccfc4f888b27e4aaec99fe9143892c2c485de4f77a21442506da00473955c619374f17a26fc1d2b96ad4ace6542@149.56.22.113:30303'

API

  • Get Network Info
    http GET https://prs-bp2.press.one/api/chain
  • Get Block by ID
    http GET https://prs-bp2.press.one/api/chain/blocks/[BLOCK_ID]
    
  • Get Transaction by Address or Hash
    http GET https://prs-bp2.press.one/api/chain/transactions/[ADDRESS|HASH]