Build on Quantum-Safe Infrastructure

Node running in
under five minutes.

46 RPC endpoints. A 3-command Cargo quickstart. Full Rust source on GitHub. TypeScript and Python SDKs in development.

bleep-node — devnet
$ git clone https://github.com/BleepEcosystem/BLEEP-v1.git && cd BLEEP-v1
$ cargo build --workspace --release
$ cargo run --bin bleep-node -- --config config/devnet.toml
Compiling bleep-crypto v0.5.0
Compiling bleep-zkp v0.5.0
Compiling bleep-consensus v0.5.0
Finished release [optimized] target(s)
[ BLEEP ] Protocol Version 5 — Quantum Trust Network
[ BLEEP ] Generating SPHINCS+ keypair ... done (32ms)
[ BLEEP ] Generating Kyber-1024 keypair ... done (8ms)
[ BLEEP ] Winterfell STARK self-test prove-verify ... passed (847ms)
[ BLEEP ] Node ready — Block Height: 0 — Validators: 1 (devnet)
[ BLEEP ] RPC listening on http://localhost:3030
Quickstart

Node running in 3 commands

01

Clone the Repository

The complete 29-crate workspace. Rust stable required.

git clone .../BLEEP-v1.git && cd BLEEP-v1
02

Build the Node

Full workspace build — all 29 crates in dependency order.

cargo build --workspace --release
03

Start a Local Node

Single-node devnet with all 46 RPC endpoints live on port 3030.

cargo run --bin bleep-node -- --config config/devnet.toml
RPC Reference

46 endpoints.
Full coverage.

Node

6 endpoints

Version, peers, metrics, audit log, config, graceful shutdown.

Chain

7 endpoints

Latest block, block by height/hash, epoch, state root, shard status, finality.

Transactions

8 endpoints

Submit, status, mempool, simulate, history, SMT proof, batch, fee estimate.

Consensus & Validators

8 endpoints

Validator set, stake/unstake, consensus state, STARK proof retrieval, slashing evidence.

BLEEP Connect Bridge

6 endpoints

Submit intent, intent status, tier-3 proof, executor list, quote, supported chains.

Governance

5 endpoints

Proposals, submit, ZK-encrypted vote, proposal detail, constitutional parameters.

Cryptography Utilities

6 endpoints

Verify SPHINCS+ signature, verify STARK proof, KEM encapsulate, SMT proof, hash, params.

SDKs

Client libraries

🦀

Rust SDK

Full workspace source. All 29 crates directly importable as library dependencies via Cargo.

Available · Source
🟦

TypeScript SDK

Wraps all 46 RPC endpoints. Wallet integration, transaction signing, bridge utilities.

In Development
🐍

Python SDK

Research and data tooling focus — transaction analysis, validator monitoring, STARK proof verification.

In Development
Research

Live data, open questions

BLEEP generates empirical data on the practical cost of combining STARK-based execution proofs with NIST-finalized post-quantum primitives in a live consensus environment. If you're evaluating BLEEP for research purposes — including grant applications, academic study, or Ethereum-ecosystem alignment — RESEARCH.md is the document to read first.