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.
Asked
Active
Viewed 171 times
1 Answers
5
By default it connects to the local node running on 8545
// local ethereum node address
localnode: "http://127.0.0.1:8545",
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