Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .machine_readable/servers/menu.a2ml
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@
# ═══════════════════════════════════════════════════════════════════════════

@attestation:
format = "PMPL-provenance-v1"
format = "boj-provenance-v1"
algorithm = "Ed25519+Dilithium5"
signature = "PLACEHOLDER"
timestamp = "2026-03-08T00:00:00Z"
Expand Down
4 changes: 2 additions & 2 deletions .machine_readable/servers/order-ticket.a2ml
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@
; Community nodes additionally verify:
; - Binary hash matches canonical build (Attested proof in Federation.idr)
; - Cartridge hashes match the menu attestation
; - PMPL provenance chain is intact
; - provenance chain is intact

(security
(session-timeout-seconds 3600)
(sandbox-cartridges #t)
(require-agent-identity #f) ; optional but recommended
(audit-log #t)
(pmpl-provenance #t))
(provenance #t))
)
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ K9!
},

"add-license" = {
description = "Add PMPL-1.0 license",
description = "Add MPL-2.0 license",
commands = [
"curl -sL https://raw.githubusercontent.com/hyperpolymath/pmpl/main/LICENSE -o LICENSE",
"curl -sL https://www.mozilla.org/media/MPL/2.0/index.txt -o LICENSE",
"echo '✓ License added'",
],
},
Expand Down
2 changes: 1 addition & 1 deletion src/abi/Boj/Federation.idr
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
||| - Gossip protocol for node discovery (Byzantine fault tolerant)
||| - Hash attestation ties binary to canonical build
||| - Load-aware routing sends requests to healthy nodes
||| - PMPL provenance metadata is the legal expression of attestation
||| - Signed provenance metadata complements the hash attestation
module Boj.Federation

import Data.List
Expand Down
Loading