@siglesiasg/node-red-hyperledger-fabric-gateway
Version:
Hyperledger Fabric 2.x nodes for node-red with latest fabric-gateway library
15 lines (14 loc) • 359 B
text/typescript
import { NodeDef } from 'node-red';
export interface FabricIdentityDef extends NodeDef {
name: string;
mspIdSelector: string;
certType: string;
cert: string;
privateKey: string;
isFabricOpType: string;
fabricOpIdPath: string;
certPath?: string;
privateKeyPath?: string;
microfabUrl?: string;
microfabId?: string;
}