@hyperledger/fabric-gateway
    Preparing search index...

    Interface ProposalOptions

    Options used when evaluating or endorsing a transaction proposal.

    interface ProposalOptions {
        arguments?: (string | Uint8Array<ArrayBufferLike>)[];
        endorsingOrganizations?: string[];
        transientData?: Record<string, string | Uint8Array<ArrayBufferLike>>;
    }
    Index

    Properties

    arguments?: (string | Uint8Array<ArrayBufferLike>)[]

    Arguments passed to the transaction function.

    endorsingOrganizations?: string[]

    Specifies the set of organizations that will attempt to endorse the proposal. No other organizations' peers will be sent this proposal. This is usually used in conjunction with transientData for private data scenarios.

    transientData?: Record<string, string | Uint8Array<ArrayBufferLike>>

    Private data passed to the transaction function but not recorded on the ledger.