feat: NIP-AB device pairing — Phase 1 (core library + CLI) (#333)

This commit is contained in:
tlongwell-block
2026-04-16 14:56:36 -04:00
committed by GitHub
parent cd6fc96fc5
commit b8d6a5cf8b
19 changed files with 4339 additions and 5 deletions
+2 -1
View File
@@ -41,7 +41,8 @@ CREATE TABLE channels (
purpose_set_at TIMESTAMPTZ,
participant_hash BYTEA,
ttl_seconds INT,
ttl_deadline TIMESTAMPTZ
ttl_deadline TIMESTAMPTZ,
CONSTRAINT chk_channels_id_not_nil CHECK (id <> '00000000-0000-0000-0000-000000000000'::uuid)
);
CREATE INDEX idx_channels_type ON channels (channel_type);