Home / Docs / State Chain

State Chain

A linear chain of multisig blocks forming a deterministic state machine for DAO governance.

Properties

Block Structure

type Block struct {
    Index      uint64
    PrevHash   string
    Ops        []Op            // [{action: "set"/"delete", key, value}]
    Signatures []BlockSignature
    Hash       string          // SHA-256 of ops only
    Timestamp  int64
}

System Keys

Operations

Sync