Uses of Interface
org.hyperledger.fabric.client.Proposal.Builder
Package
Description
This package provides the set of interfaces that enable a Java application to
interact with a Fabric blockchain network.
-
Uses of Proposal.Builder in org.hyperledger.fabric.client
Modifier and TypeMethodDescriptionProposal.Builder.addArguments
(byte[]... args) Add transactions arguments to the proposal.Proposal.Builder.addArguments
(String... args) Add transactions arguments to the proposal.Contract.newProposal
(String transactionName) Build a new proposal that can be evaluated or sent to peers for endorsement.Proposal.Builder.putAllTransient
(Map<String, byte[]> transientData) Associates all of the specified transient data keys and values with the proposal.Proposal.Builder.putTransient
(String key, byte[] value) Associates the specified transient data key and value with the proposal.Proposal.Builder.putTransient
(String key, String value) Associates the specified transient data key and value with the proposal.Proposal.Builder.setEndorsingOrganizations
(String... mspids) Specifies the set of organizations that will attempt to endorse the proposal.