Interface RevocationProof

Expand description

Issuer identity proof for a signed revocation.


interface RevocationProof {
    issuer_id_pubkey: string;
    signature: string;
}

Properties§

§readonly issuer_id_pubkey: string

Nostr public key identifying the issuer that signed the revocation.

§readonly signature: string

Schnorr signature over the revocation payload.