How to use quorum Explorer #1445
-
I have created a private network, and I want to use quorum explorer to view the situation of the network and carry out operations such as publishing contracts and transactions. But there was an error when I ran quorum explorer. hangzv@zhangzv-MS-7C88:~/桌面/quorum-explorer$ npm run dev
ready - started server on 0.0.0.0:25000, url: http://localhost:25000 Bus error (core dumped) Here is my config.json The following is the log file when I started |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, I think you are referring to this project : https://github.com/ConsenSys/quorum-explorer There is an example in the quick dev start, from the docker compose you can see:
from the example you are giving, it is correct for validators, but for members you need to add private information (if you want support for private contracts) {
"name": "member1",
"client": "goquorum",
"rpcUrl": "http://member1quorum:8545",
"privateTxUrl": "http://member1tessera:9080",
"privateKey": "0x8f2a55949038a9610f50fb23b5883af3b4ecb3c3bb792cbcefbd1542c692be63",
"accountAddress": "0xfe3b557e8fb62b89f4916b721be55ceb828dbd73"
}, |
Beta Was this translation helpful? Give feedback.
Hello, I think you are referring to this project : https://github.com/ConsenSys/quorum-explorer
There is an example in the quick dev start, from the docker compose you can see:
from the example you are giving, it is correct for validators, but for members you need to add private information (if you want support for private contracts)