code wiki / _hdl_build / nx_pub_fin_handoff.nx
nx_pub_fin_handoff.nx
buildroot/runtime/_hdl_build/nx_pub_fin_handoff.nx
about
nx_pub_fin_handoff.nx -- push the sovereign nishifamily.com/finance dashboard to the Nishi Publisher
(operator: "push to publisher, don't directly do"). The finance workstream REQUESTS; the publisher
SHIPS (serialize -> idempotent sha-skip -> stage -> VERIFY-sha -> ATOMIC-promote -> ledger) to a LOCAL,
ISOLATED finance liveroot. Mirrors nx_pub_reader_handoff exactly (DRY #15). The OUTWARD transport
liveroot -> nishifamily.com is OPERATOR-GATED (publisher R6 policy=outward + R8 transport). The LIVE
in-app serving of /finance is done by the OPAQUE route (olg_route) calling the SAME renderer; this
liveroot file is the publishable artifact + the sha-verified, ledgered audit trail. license_tier: ORIGINAL
dependencies 3 imports · 0 importers
imports: nx_publisher.nxnx_itoa_lib.nxnx_syscalls.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| none |
functions
| 12 | func fh_puts(s: *u8) -> i64 { var n: i64 = 0; while s[n] != 0 as u8 { n = n + 1 } sys_write(1, s, n); return 0 } |
| 17 | func fh_putn(v: i64) -> i64 { nxi_out(v); return 0 } |
| 18 | func fh_exists(path: *u8) -> i64 { let fd: i64 = sys_openat_rd(path); if fd < 0 { return 0 } sys_close(fd); return 1 } |
| 20 | func main() -> i64 |