Page cover

bullseye-arrowQuickstart

Quickstart Guide: Get Up and Running with ZEUS

ZEUS can be used locally via the npm package or through the hosted ZEUS Verify API.

This guide shows both.


Option 1: ZEUS Core (npm)

Install

npm install zeus-time

or

yarn add zeus-time


Generate a Verifiable Receipt

import { stamp } from "zeus-time";

const payload = "hello world";

const receipt = stamp(payload);

console.log(receipt);

Example output (simplified):

The receipt contains everything required for independent verification.


Verify a Receipt

Verification does not require contacting any external service.


Option 2: ZEUS Verify (Hosted API)

Stamp a Payload

Response:


Verify a Receipt (Public)

Public verification does not require an API key.


What Happens Next?

You now have a deterministic, cryptographically verifiable receipt.

You can:

  • Store it

  • Audit it

  • Compare it

  • Re-verify it later

  • Prove ordering between events

circle-exclamation

Last updated