Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

VerifyStatus

import { VerifyStatus } from "https://raw.githubusercontent.com/marigold-dev/tzstamp/0.3.4/proof/mod.ts";

Verification status

enum VerifyStatus {
Verified = "verified",
NotFound = "notFound",
Mismatch = "mismatch",
}

§Members

§
VerifyStatus.Mismatch = "mismatch"
[src]

Proof could not be verified. The asserted timestamp does not match the on-chain timestamp. The proof has been modified, perhaps maliciously.

§
VerifyStatus.NotFound = "notFound"
[src]

Proof could not be verified. The Tezos node could not find the block at the affixed address.

§
VerifyStatus.Verified = "verified"
[src]

Proof is successfully verified. The stored input hash existed by the stored timestamp.