Get the serialized bytes of the signable object. Serialized bytes can be used to recreate the object using methods on Gateway.
Get block and private data events.
Optional
options: CallOptionsgRPC call
Block and private data protocol buffer messages. The iterator should be closed after use to complete the eventing session.
GatewayError Thrown by the iterator if the gRPC service invocation fails.
const events = await network.getBlockAndPrivateEventsData();
try {
for async (const event of events) {
// Process block and private data event
}
} finally {
events.close();
}
Generated using TypeDoc
Delivers block and private data events.