Close the gateway when it is no longer required. This releases all resources associated with networks and contracts obtained using the Gateway, including removing event listeners.
Get the identity used by this gateway.
Get a network representing the named Fabric channel.
Fabric channel name.
Recreate a block and private data events request from serialized data.
Serialized block and private data events request.
A block and private data events request.
Recreate a block events request from serialized data.
Serialized block events request.
A block events request.
Recreate a chaincode events request from serialized data.
Serialized chaincode events request.
A chaincode events request.
Recreate a commit status request from serialized data.
Serialized commit status request.
A commit status request.
Recreate a filtered block events request from serialized data.
Serialized filtered block events request.
A filtered block events request.
Recreate a proposal from serialized data.
Serialized proposal.
A proposal.
Create a block and private data events request with the specified digital signature. Supports off-line signing flow.
Serialized block and private data events request.
Digital signature.
A signed block and private data events request.
Create a block events request with the specified digital signature. Supports off-line signing flow.
Serialized block events request.
Digital signature.
A signed block events request.
Create a chaincode events request with the specified digital signature. Supports off-line signing flow.
Serialized chaincode events request.
Digital signature.
A signed chaincode events request.
Create a commit with the specified digital signature, which can be used to access information about a transaction that is committed to the ledger. Supports off-line signing flow.
Serialized commit status request.
Digital signature.
A signed commit status request.
Create a filtered block events request with the specified digital signature. Supports off-line signing flow.
Serialized filtered block events request.
Digital signature.
A signed filtered block events request.
Create a proposal with the specified digital signature. Supports off-line signing flow.
Serialized proposal.
Digital signature.
A signed proposal.
Create a transaction with the specified digital signature. Supports off-line signing flow.
Serialized proposal.
Digital signature.
A signed transaction.
Recreate a transaction from serialized data.
Serialized proposal.
A transaction.
Gateway represents the connection of a specific client identity to a Fabric Gateway. A Gateway is obtained using the connect function.
This type implements the Disposable interface, allowing instances to be disposed of with ECMAScript explicit resource management and the
using
keyword instead of calling close directly.See
ECMAScript explicit resource management