UNPKG

bsp-network

Version:

SDK for writing node.js applications to interact with bsp network. This package encapsulates the APIs to connect to a bsp network, submit transactions and perform queries against the ledger.

9 lines (8 loc) 281 B
/** * Copyright 2020 IBM All Rights Reserved. * * SPDX-License-Identifier: Apache-2.0 */ import { Endorser, EventInfo } from 'fabric-common'; import { CommitEvent } from '../../events'; export declare function newCommitEvent(peer: Endorser, eventInfo: EventInfo): CommitEvent;