ncbd.dev // node.local:4221
tx 0000 / rx 0000
[root.node]

ncbd.dev

not_centralized && but_distributed
0x01 not_centralized
0x02 but_distributed
0x03 no_single_point_of_failure
0x04 peer_to_peer
0x05 consensus()
0x06 trustless
0x07 immutable_log
// scan 0.000 // peers 0000 // height 0
/manifesto.md

$ cat manifesto

[node.01] // active

Decentralize Everything

Central authority is a single point of failure. When power concentrates, systems become fragile. Distribution is resilience. Redundancy is strength. The network does not ask permission; it routes around damage.

tag: resilience, redundancy, fault-tolerance
[node.02] // active

Trust the Protocol

Trust is not eliminated — it is moved from institutions to mathematics. Cryptographic proofs replace handshakes. Code is law, verifiable and immutable. The signature is the source of truth.

tag: crypto, signatures, verification
[node.03] // quorum

Consensus Without Leaders

Agreement emerges from rules, not rulers. Byzantine fault tolerance means the network survives bad actors. The protocol endures where people fail. No throne, no crown, only quorum.

tag: bft, quorum, leaderless
[node.04] // active

Open Source, Open Network

Transparency is not optional. Every line of code auditable, every transaction verifiable. Secrecy is the enemy of distributed trust. Read the source. Run the node. Verify, do not trust.

/topology.map

$ traceroute --topology

A1·
A2
A3·
A4·
A5
A6·
A7·
A8
B1
B2·
B3·
B4
B5·
B6·
B7
B8·
C1·
C2·
C3
C4·
C5·
C6
C7·
C8·
D1
D2·
D3·
D4·
D5
D6·
D7·
D8
active node idle slot trace route
/protocol.spec

$ man protocol

// 01_handshake
peer.A > peer.B :: SYN
peer.B > peer.A :: ACK
peer.A > peer.B :: pubkey[0xab12]
peer.B > peer.A :: pubkey[0x9f44]
state: ESTABLISHED
// 02_consensus
propose(block.h=0x4a2f)
gather_votes() >= 2/3
finalize(block) -> chain
broadcast(chain.tip)
state: FINALIZED
// 03_failure
node.k :: UNREACHABLE
route(node.k -> node.l)
quorum_intact: true
network_alive: true
state: REROUTED
// 04_verify
hash(block) == 0x4a2f...
sig(block).valid: true
prev.link.valid: true
height++ :: 128341
state: VERIFIED
/packets.stream

$ tail -f packets