Interface IssuanceResponse

Expand description

Issuer-created response containing the blind signature for an issuance request.


interface IssuanceResponse {
    blind_signature: string;
    info: JsonValue;
    issuer_id: string;
    version: 1;
}

Properties§

§readonly blind_signature: string

Unpadded URL-safe base64 encoded PBRSA blind signature.

§readonly info: JsonValue

Issuer-visible credential information bound into the blind signature.

§readonly issuer_id: string

Nostr public key identifying the issuer that signed the response.

§readonly version: 1