Bitkit

February 24, 2026 ยท View on GitHub

This repository is the umbrella index for Bitkit. It explains the architecture and points to the production repositories for the native apps and core dependencies.

Overview

Bitkit ships as native iOS and Android apps that share a Rust core via FFI. This repo is intentionally lightweight; build and development instructions live in the app and core repos.

Architecture

flowchart TD
  bitkitIos["bitkit-ios"]
  bitkitAndroid["bitkit-android"]

  subgraph rust["Shared Rust Layer"]
    bitkitCore["bitkit-core"]
    ldkNode["ldk-node"]
    vssFfi["vss-rust-client-ffi"]
    bitkitCore ~~~ ldkNode ~~~ vssFfi
  end

  bitkitIos -->|FFI| rust
  bitkitAndroid -->|FFI| rust

Deprecated/Archived

Where to start

License

This project is licensed under the MIT License. See the LICENSE file for more details.