niko_trust/go.mod
Niko Marmeladkov 79df689f7a refactor: drop PoW, checkpoint chain, gossip, light node and BFT; keep WS
The decentralization stack overcomplicated the project. Removed:
internal/pow, internal/smt, internal/checkpoint, internal/bft,
internal/lightnode, cmd/lightnode, relay gossip/checkpoint/proof/BFT
endpoints, their docs, vectors and the blake3 dependency.

Kept: WebSocket streaming on the relay, the full protocol v1 object set
including DelegationClaim (0x07) and KeyRotation request/confirm
(0x08/0x09) with chain resolution in verify.Graph, TrustedIssuers,
batch fetch, stable cursor pagination, per-type metrics.

INV-1 reverts to its original form: the relay holds no keys again.
Everything removed remains reachable at commit 20cc52c.
2026-08-26 00:49:25 +03:00

10 lines
192 B
Modula-2

module git.n1ko.dev/Niko/niko_trust
go 1.25
require (
filippo.io/edwards25519 v1.1.0
github.com/btcsuite/btcd/btcutil v1.1.6
github.com/coder/websocket v1.8.15
gopkg.in/yaml.v3 v3.0.1
)