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

    Interface Identity

    Represents a client identity used to interact with a Fabric network. The identity consists of an identifier for the organization to which the identity belongs, and implementation-specific credentials describing the identity.

    interface Identity {
        credentials: Uint8Array;
        mspId: string;
    }
    Index

    Properties

    Properties

    credentials: Uint8Array

    Implementation-specific credentials. For an identity described by a X.509 certificate, the credentials are the PEM-encoded certificate.

    mspId: string

    Member services provider to which this identity is associated.