corda/tools/explorer
Stefan Iliev 1802e48963 CORDA-2586 - explorer exception handling (#4957)
* Initial version of new(old) dialog that won't print a stacktrace for rpc exceptions.

* Decoupled CordaVersionProvider. Moved common files to common-logging to lower dependencies on the node explorer.

* Removed unused import and duplicate documentation comment.

* Moved error code rewrite policy in the new common/logging module according to PR review.

* Removed extra line.

* Updated log4j configurations with new package name where logging policies will be contained.

* Included common-logging module with cliutils.
2019-05-01 13:50:50 +01:00
..
capsule CORDA-1985: Configure Gradle capsule plugin to use Capsule 1.0.3. (#3949) 2018-09-17 13:55:31 +01:00
src CORDA-2586 - explorer exception handling (#4957) 2019-05-01 13:50:50 +01:00
build.gradle CORDA-2586 - explorer exception handling (#4957) 2019-05-01 13:50:50 +01:00
README.md ENT-3128: Update documentation for Node Explorer. (#4817) 2019-02-27 14:32:39 +00:00

Node Explorer

The node explorer provides views of the node's vault and transaction data using Corda's RPC framework. The user can execute cash transaction commands to issue and move cash to other parties on the network or exit cash using the user interface.

Running the UI

Windows:

gradlew.bat tools:explorer:run

Other:

./gradlew tools:explorer:run

Running Demo Nodes

Node Explorer is included with the DemoBench application, which allows you to create local Corda networks on your desktop. For example:

* Notary
* Bank of Breakfast Tea    (*Issuer node* for GBP)
* Bank of Big Apples       (*Issuer node* for USD)
* Alice                    (*Participant node* for user Alice)
* Bob                      (*Participant node* for user Bob)

DemoBench will deploy all nodes with Corda's Finance CorDapp automatically, and allow you to launch an instance of Node Explorer for each.

TODOs:

  • Shows more useful information in the dashboard.
  • Improve Network View, display other nodes in the world map and show transactions between them.
  • Add a new view showing node's state machines.
  • Link transaction input to its originated transaction to make it easier to trace back.
  • Shows Node information (Configuration, properties etc.) in Settings view.
  • Support other contract types.

More information can be found in the Project website and Documentation.