corda/samples/trader-demo
Adel El-Beik 6c4b8fdf23
ENT-11657: Upgrade artemis. (#7707)
* ENT-11657: Upgraded artemis.

* ENT-11657: Reverted dependencies task leftin.

* ENT-11657: Upgraded log4j and slf4j.
2024-04-03 11:15:00 +01:00
..
src ENT-6374 - Fix slf4j warning in trader-demo (#6971) 2021-10-18 11:59:51 +01:00
workflows-trader ENT-11155: Remove internal Kotlin utilities which have since been added after 1.2 (#7585) 2023-12-18 12:05:08 +00:00
build.gradle ENT-11657: Upgrade artemis. (#7707) 2024-04-03 11:15:00 +01:00
README.md make usage of flow overrides more explicit in documentation for trader-demo 2019-01-17 11:22:06 +00:00

Trader demo

This demo brings up five nodes: Bank A, Bank B, Bank Of Corda, NonLogging Bank and a notary node that they all use. Bank A will be the buyer, and requests some cash from the Bank of Corda in order to acquire commercial paper from Bank B, the seller.

The NonLogging Bank node is present to demonstrate the usage of the "Configuring Responder Flows" feature of Corda described here. The override is defined within the deployNodes section of the build.gradle. In this case, we are overriding the default responder for net.corda.traderdemo.flow.SellerFlow to be a version that does not print out information about the transaction.

    node {
        name "O=NonLogging Bank,L=London,C=GB"
        p2pPort 10025
        rpcUsers = ext.rpcUsers
        rpcSettings {
            address "localhost:10026"
            adminAddress "localhost:10027"
        }
        extraConfig = ['h2Settings.address' : 'localhost:10035']
        flowOverride("net.corda.traderdemo.flow.SellerFlow", "net.corda.traderdemo.flow.BuyerFlow")
    }

To run from the command line in Unix:

  1. Run ./gradlew samples:trader-demo:deployNodes to create a set of configs and installs under samples/trader-demo/build/nodes
  2. Run ./samples/trader-demo/build/nodes/runnodes to open up five new terminals with the five nodes
  3. Run ./gradlew samples:trader-demo:runBank to instruct the bank node to issue cash and commercial paper to the buyer and seller nodes respectively
  4. Run ./gradlew samples:trader-demo:runSeller to trigger the transaction. If you entered flow watch, you can see flows running on both sides of transaction. Additionally you should see final trade information displayed to your terminal

To run from the command line in Windows:

  1. Run gradlew samples:trader-demo:deployNodes to create a set of configs and installs under samples\trader-demo\build\nodes
  2. Run samples\trader-demo\build\nodes\runnodes to open up five new terminals with the five nodes
  3. Run gradlew samples:trader-demo:runBank to instruct the buyer node to request issuance of some cash from the Bank of Corda node
  4. Run gradlew samples:trader-demo:runSeller to trigger the transaction. If you entered flow watch, you can see flows running on both sides of transaction. Additionally you should see final trade information displayed to your terminal