{"id":28214840,"url":"https://github.com/2140-dev/kyoto","last_synced_at":"2025-06-12T01:31:25.950Z","repository":{"id":237862744,"uuid":"795374191","full_name":"2140-dev/kyoto","owner":"2140-dev","description":"An implementation of Bitcoin Improvement Proposal 157/158","archived":false,"fork":false,"pushed_at":"2025-06-01T08:16:59.000Z","size":1493,"stargazers_count":69,"open_issues_count":7,"forks_count":13,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-06-01T08:37:46.382Z","etag":null,"topics":["bitcoin","cryptocurrency","networking","peer-to-peer"],"latest_commit_sha":null,"homepage":"https://docs.rs/kyoto-cbf","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/2140-dev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-05-03T06:27:54.000Z","updated_at":"2025-06-01T08:17:02.000Z","dependencies_parsed_at":"2024-05-03T12:16:45.171Z","dependency_job_id":"a1fe2bd7-7941-4eae-946c-b9bdcfca5e77","html_url":"https://github.com/2140-dev/kyoto","commit_stats":{"total_commits":304,"total_committers":3,"mean_commits":"101.33333333333333","dds":0.009868421052631526,"last_synced_commit":"a3b5ffffdf1efe4a137300a0b96bf1011ac682f5"},"previous_names":["rustaceanrob/kyoto","2140-dev/kyoto"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/2140-dev/kyoto","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2140-dev%2Fkyoto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2140-dev%2Fkyoto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2140-dev%2Fkyoto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2140-dev%2Fkyoto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/2140-dev","download_url":"https://codeload.github.com/2140-dev/kyoto/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2140-dev%2Fkyoto/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259377091,"owners_count":22848287,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bitcoin","cryptocurrency","networking","peer-to-peer"],"created_at":"2025-05-17T21:08:29.658Z","updated_at":"2025-06-12T01:31:25.942Z","avatar_url":"https://github.com/2140-dev.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003eKyoto: Bitcoin Light Client\u003c/h1\u003e\n  \u003cp\u003e\n    \u003cstrong\u003eAn Implementation of BIP-157/BIP-158\u003c/strong\u003e\n  \u003c/p\u003e\n\n  \u003cp\u003e\n    \u003ca href=\"https://crates.io/crates/kyoto-cbf\"\u003e\u003cimg alt=\"Crate Info\" src=\"https://img.shields.io/crates/v/kyoto-cbf.svg\"/\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/2140-dev/kyoto/blob/master/LICENSE\"\u003e\u003cimg alt=\"MIT or Apache-2.0 Licensed\" src=\"https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg\"/\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/2140-dev/kyoto/actions?query=workflow%3A%22Build+%26+Test%22\"\u003e\u003cimg alt=\"CI Status\" src=\"https://github.com/2140-dev/kyoto/workflows/CI/badge.svg\"/\u003e\u003c/a\u003e\n    \u003ca href=\"https://docs.rs/kyoto-cbf\"\u003e\u003cimg alt=\"API Docs\" src=\"https://img.shields.io/badge/docs.rs-kyoto_cbf-green\"/\u003e\u003c/a\u003e\n    \u003ca href=\"https://blog.rust-lang.org/2022/08/11/Rust-1.63.0.html\"\u003e\u003cimg alt=\"Rustc Version 1.63.0+\" src=\"https://img.shields.io/badge/rustc-1.63.0%2B-lightgrey.svg\"/\u003e\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\n## About\n\nKyoto is aiming to be a simple, memory-conservative, and private Bitcoin client for developers to build wallet applications. To read more about the scope, usage recommendations, and implementation details, see [DETAILS.md](./doc/DETAILS.md).\n\n## Running an example\n\nTo run the Signet example, in the root directory:\n\n```\ncargo run --example signet\n```\n\nOr, with `just`:\n\n```\njust example\n```\n\n## Getting Started\n\nIt is recommended to walk through the [Signet example code](./example/signet.rs). Unlike usual clients that source data from the blockchain, there are two components to the CBF system. There is a \"node\" that fetches data on behalf of a user, and a \"client\" that receives data, logs, and warnings from the node. The client may also interact with the node by sending transactions to broadcast or new scripts. This crate allows a highly configurable node construction, so your app may optimize for the desired speed, privacy, and preferences.\n\nSee the [docs](https://docs.rs/kyoto-cbf) for more details on the `NodeBuilder`, `Node`, `Client`, and more.\n\n### BDK\n\nKyoto integrates well with the Bitcoin Dev Kit (BDK) ecosystem.\n\n* **[Book of BDK - Kyoto Examples](https://bookofbdk.com/cookbook/syncing/kyoto/)**: Learn how to use Kyoto with BDK Wallet through step-by-step examples.\n* **[BDK FFI](https://github.com/bitcoindevkit/bdk-ffi)**: Build native Bitcoin experiences across multiple platforms by combining Kyoto with BDK's foreign function interface libraries.\n* **[bdk-kyoto Crate](https://github.com/bitcoindevkit/bdk-kyoto)**: A dedicated crate that provides direct integration between BDK and Kyoto for Rust applications.\n\n## Minimum Supported Rust Version (MSRV) Policy\n\nThe `kyoto` core library with default features supports an MSRV of Rust 1.63.\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](./CONTRIBUTING.md) to get started.\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n\n## License\n\nLicensed under either of\n\n* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or \u003chttps://www.apache.org/licenses/LICENSE-2.0\u003e)\n* MIT license ([LICENSE-MIT](LICENSE-MIT) or \u003chttps://opensource.org/licenses/MIT\u003e)\n\nat your option.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F2140-dev%2Fkyoto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F2140-dev%2Fkyoto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F2140-dev%2Fkyoto/lists"}