7

I have GETH running a test network, and now I'd like to get AugurProject's ETHRPC to connect. I can't find any documentation on ETHRPC.

eth
  • 85,679
  • 53
  • 285
  • 406
Walt D
  • 391
  • 2
  • 9

1 Answers1

5

By default it connects to the local node running on 8545

// local ethereum node address
localnode: "http://127.0.0.1:8545", 

source

If you read the code, you can see lines like the following and understand how it fetches data.

nodes: {
    hosted: HOSTED_NODES.slice(),
    local: null
},
niksmac
  • 9,673
  • 2
  • 40
  • 72