DOCUMENTATION
Timeverse Protocol v4.6
A technical overview of the Timeverse protocol core. For full documentation, visit timeverse.ma/docs.
§0 Normative Constants
The fundamental and invariable values that define the structure of time in the Timeverse protocol.
| Constant | Value |
|---|---|
| EPOCH | 1663912800 (2022-09-23T06:00:00Z) |
| BINUTE | 120 seconds |
| HS (Horo-Second) | 7200 seconds (2 hours) |
| DAY | 86400 seconds |
| WEEK | 6 days |
| MONTH | 30 days (5 weeks) |
| YEAR | 360 days (12 months) |
| CYCLE | 30 years (10800 days) |
§1 Temporal Geometry
How time is mapped onto a circular geometric structure, defining angles and directions.
The protocol uses a 12 HS (Horo-Seconds) clock, where each HS corresponds to a 30° segment on a 360° circle. The reference (0°) is set at HS6, corresponding to the "dEAST" direction.
UNIFIED_FORMULA:
binuteFraction = BINUTE + (SECOND / BINUTE_S)
baseAngle = (HS - 6) * 30
fractionAngle = (binuteFraction / 60) * 30
angle = (baseAngle + fractionAngle) MOD 360§3 D-Calendar
The uniform calendar structure used throughout the Timeverse.
The D-Calendar is a universal system with a fixed structure: a 6-day week, a 5-week month (30 days), and a 12-month year (360 days). A full cycle lasts 30 years.
C.Y.M.W.D
§4 Timeversestamp Formats
The different timestamp formats used to encode temporal information.
| Format | Example |
|---|---|
| FULL planet.days.SWTn.tile.C.Y.M.W.D@HS:BINUTE:SECOND.PHASE.ANGLE | earth.1235.SWT12.600.0.4.6.1.6@7:19:17.0.114407.219.57 |
| SHORT days@HS:BINUTE:SECOND | 1235@7:19:17 |
| SIMPLE planet.SWTn.days@HS:BINUTE:SECOND | earth.SWT12.1235@7:19:17 |
| CAPSULE C.Y.M.W.D@HS.BINUTE | 0.4.6.1.6@7.19 |