samples-java
samples-java copied to clipboard
This repository contains multiple sample apps, from CorDapps that help you get started, all the way to demonstrating specific features and advanced usage.
In the original example repo there was an example of using custom queries: https://github.com/corda/cordapp-example/blob/release-V4/java-source/src/main/java/com/example/api/ExampleApi.java#L132-L137 QueryCriteria generalCriteria = new QueryCriteria.VaultQueryCriteria(Vault.StateStatus.ALL); FieldInfo lenderField = QueryCriteriaUtils.getField("lender", IOUSchemaV1.PersistentIOU.class); CriteriaExpression lenderIndex = Builder.equal(lenderField, myLegalName.toString()); QueryCriteria...
Hi, following up [this question ](https://stackoverflow.com/questions/64643031/to-use-or-not-to-use-collectsignatureflow-when-all-the-accounts-involved-in-a-tr) on StackOverflow. Since the signers are all accounts all in the same node, the _CollectSignatureFlow_ should not be needed. The comment in the source...
I have finished both flows of issue. But when I try HouseSaleInitiorFlow, I can only see nothing but "starting". And I found that the transaction is not finished. Does anyone...
It is mention in the repo that ie will have PartyA, ParyB and PartyC but it is not found in code
there is mentioned that it's a 4.12 version of bank-in-a-box. https://docs.r3.com/en/platform/corda/4.12/enterprise/apps/bankinabox/getting-started.html but in this docs given repo is old repo 4.1. https://github.com/corda/bank-in-a-box please guide me how can I run this...