Interface HolderAuthorizationStatement

Expand description

Holder statement signed by HolderContext.authorizeCredentialUse and returned in HolderAuthorization.


interface HolderAuthorizationStatement {
    credential_digest: string;
    holder_id_pubkey: string;
    issued_at: number;
    subject_pubkey: string;
}

Properties§

§readonly credential_digest: string

Credential digest this authorization allows the subject to present.

§readonly holder_id_pubkey: string

Nostr public key identifying the holder.

§readonly issued_at: number

Unix timestamp in seconds.

§readonly subject_pubkey: string

External application's Nostr subject public key.