Downloads
Binaries, SDKs, and the whitepaper.
Client binaries for the Forge testnet are below
(v0.1.0-testnet,
Linux x86-64, checksummed, unsigned testnet builds). The Python and
TypeScript SDKs install from source for now, and source for every artifact
lives at
github.com/orogen-network.
Client binaries
Forge testnet · Linux x86-64.
Download, verify the SHA-256, and run. These are unsigned testnet builds; mainnet releases will be signed with the foundation release key.
wallet-cli
v0.1.0-testnet · Linux x86-64 · release notes + SHA-256
Wallet + operator CLI: create an account, get testnet OROG from the faucet, register as an operator, and send heartbeats. The tool a miner needs to join.
mining-cli
v0.1.0-testnet · Linux x86-64 · release notes + SHA-256
Chain-spec generation, RFC list/check, and slash-receipt verification tooling.
The Python and TypeScript SDKs and the chain-node binary live on github.com/orogen-network, with the quick-install commands below.
Quick install
One-liners.
Three SDK source installs plus the binary release policy for operators, validators, and self-hosters.
Python SDK · PyPI orogen-sdk
# Python SDK (Python >= 3.10). Install from the source repo:
pip install "git+https://github.com/orogen-network/customer-sdk-py"
TypeScript SDK · npm @orogen/sdk
# TypeScript / Node >= 20 (works in browsers via fetch). Install from source:
npm install github:orogen-network/customer-sdk-ts
LiteLLM provider · PyPI litellm-orogen-provider
# Drop-in LiteLLM provider, registers the orogen/* namespace. Install from source:
pip install "git+https://github.com/orogen-network/litellm-backend-driver"
Node binary · shell installer · install.sh
# Wallet CLI (Linux x86-64), Forge testnet release v0.1.0-testnet
curl -fsSLO https://github.com/orogen-network/wallet-cli/releases/download/v0.1.0-testnet/wallet-cli-0.1.0-x86_64-linux-gnu.tar.gz
curl -fsSLO https://github.com/orogen-network/wallet-cli/releases/download/v0.1.0-testnet/wallet-cli-0.1.0-x86_64-linux-gnu.tar.gz.sha256
sha256sum -c wallet-cli-0.1.0-x86_64-linux-gnu.tar.gz.sha256 # verify
tar xzf wallet-cli-0.1.0-x86_64-linux-gnu.tar.gz && ./wallet-cli --help
Note: the Python and TypeScript SDKs install from the source repos above
for now. Direct download links are added only when the corresponding
file is present in
public/downloads/
and covered by release checksums.
Artifacts
Published files.
Whitepaper (PDF)
PDF · ~1.4 MB
Full protocol description: verification stack, BME engine, emission rule, slashing schedule, and the 24-month roadmap. Snapshot 0.1.
Files are served from orogen.network/downloads/
only after they exist in the release artifact directory. The link test
rejects missing local download targets.
Verifying releases
Signed checksums and reproducible builds.
# Release artifact policy:
# 1. GitHub release contains the tarball, SHA256SUMS, manifest, SBOM, and provenance.
# 2. orogen.network/downloads/ links are added only after the file is present locally.
# 3. Mainnet builds are signed with the foundation release key.Reproducible builds are a Year-1 commitment. The chain node and wallet CLI builds publish their Docker base image, toolchain version, and cargo lockfile in the release notes so any third party can rebuild from source and verify the same hash.