Type alias ClaimDefault

ClaimDefault: {
    iat: number;
    jti: ClaimIdEncoded;
    nbf: number;
    prevClaimId: ClaimIdEncoded | null;
    prevDigest: string | null;
    seq: number;
}

The ClaimIdEncoded corresponds to the ClaimId used in the Sigchain. The iat and nbf corresponds to the unix timestamp where it was created by the Sigchain. The prevDigest is the multibase multihash digest of the previous claim by the same node that created this claim. The seq is the ordinal and cardinal counter of the claim according to the sigchain.

Type declaration

Generated using TypeDoc