d77290831c
* [CORDA-1035] Testing api KDoc Updates (#2584) * Testing api KDoc Updates * Update after code review * Update api-current * Revert changes to compiler.xml * Made comment changes from review * Fixing merge conflict * Don't expose net.corda.node through test API (first pass) * Fixing merge conflicts * Update api-current * Addressing review commits * Fix exposure of internal implementation of MessageHandlerRegistration * Make InProcess expose ServiceHub instead of internal StartedNodeServices * Move InternalMockMessaginService interface to internal namespace * Move MOCK_VERSION_INFO to internal namespace to avoid exposing VersionInfo * Don't expose WritableTransactionStorage via testing api * Create public VerifierType enum * Update api-current and modify check-api-changes to check for net.corda.node exposures * Fix merge conflicts * Fixing another merge conflict * Fix accidentally broken unit tests * Make getInternalServices a property * Fix failing unit tests * Add todo to check-api-changes * Fix rpc sender thread busy looping * Fix tests * Fixing tests * Address mike's comments * Fixing tests * Make random port allocation internal * Update api * Update api |
||
---|---|---|
.. | ||
capsule | ||
src | ||
build.gradle | ||
README.md |
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
A demonstration Corda network topology is configured with 5 nodes playing the following roles:
- Notary
- Issuer nodes (representing two fictional central banks - UK Bank Plc issuer of GBP and USA Bank Corp issuer of USD)
- Participant nodes (representing two users - Alice and Bob)
The Issuer nodes have the ability to issue, move and exit cash amounts. The Participant nodes are only able to spend cash (eg. move cash).
Windows:
gradlew.bat tools:explorer:runDemoNodes
Other:
./gradlew tools:explorer:runDemoNodes
These Corda nodes will be created on the following port on localhost.
- Notary -> 20005 (Does not accept logins)
- UK Bank Plc -> 20011 (Issuer node)
- USA Bank Corp -> 20008 (Issuer node)
- Alice -> 20017
- Bob -> 20014
Explorer login credentials to the Issuer nodes are defaulted to manager
and test
.
Explorer login credentials to the Participants nodes are defaulted to user1
and test
.
Please note you are not allowed to login to the notary.
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.