Interface IAttestationWithResponse

interface IAttestationWithResponse {
    hash: string;
    identity: PublicKey;
    signature: {
        data: string;
        type: SigningAlgorithm;
    };
    timestamp: number;
    valid: boolean;
    web2Response: IWeb2Result;
}

Hierarchy (view full)

Properties

hash: string
identity: PublicKey
signature: {
    data: string;
    type: SigningAlgorithm;
}
timestamp: number
valid: boolean
web2Response: IWeb2Result