{"id":35176607,"url":"https://github.com/blueokanna/flipper_zero_wallet","last_synced_at":"2026-01-13T22:54:30.977Z","repository":{"id":330885368,"uuid":"1113148414","full_name":"blueokanna/flipper_zero_wallet","owner":"blueokanna","description":"BIP39 HD Wallet for Flipper Zero（Dev now, Not Fully work right now）","archived":false,"fork":false,"pushed_at":"2025-12-29T16:13:00.000Z","size":131,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-31T11:17:40.512Z","etag":null,"topics":["crypto","flipperzero","wallet"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blueokanna.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-09T15:30:55.000Z","updated_at":"2025-12-29T16:13:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/blueokanna/flipper_zero_wallet","commit_stats":null,"previous_names":["blueokanna/flipper_zero_wallet"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/blueokanna/flipper_zero_wallet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blueokanna%2Fflipper_zero_wallet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blueokanna%2Fflipper_zero_wallet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blueokanna%2Fflipper_zero_wallet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blueokanna%2Fflipper_zero_wallet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blueokanna","download_url":"https://codeload.github.com/blueokanna/flipper_zero_wallet/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blueokanna%2Fflipper_zero_wallet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400889,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["crypto","flipperzero","wallet"],"created_at":"2025-12-28T22:49:49.810Z","updated_at":"2026-01-13T22:54:30.971Z","avatar_url":"https://github.com/blueokanna.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `flipperzero-template`🚀\n\nA template for kick-starting a Rust + FlipperZero project using [`flipperzero-rs`](https://github.com/flipperzero-rs/flipperzero) 🐬❤️🦀.\n\n# Usage\n\n## Initial setup\n\n1. Install [`rustup`](https://rust-lang.github.io/rustup/) by following the instructions on [`rustup.rs`](https://rustup.rs/).\n1. Install the nightly build tool-chain to support the[`different-binary-name`](https://doc.rust-lang.org/cargo/reference/unstable.html#different-binary-name) feature:\n    ```\n    rustup toolchain install nightly\n    ```\n1. Install [`cargo-generate`](https://github.com/cargo-generate/cargo-generate):\n    ```\n    cargo install cargo-generate\n    ```\n1. Use `rustup` to install the `thumbv7em-none-eabihf` target to the nightly build:\n    ```\n    rustup target add --toolchain nightly thumbv7em-none-eabihf\n    ```\n\n## Generate the project\n1. Use `cargo generate` to clone this template:\n    ```\n    cargo generate --git https://github.com/flipperzero-rs/flipperzero-template.git --name my-project\n    ```\n1. Switch into the local directory:\n    ```\n    cd my-project\n    ```\n\n## Build with `cargo build`\n\n```\ncargo build\n```\n\n## Copy the binary to your Flipper Zero\n\n\u003e [!IMPORTANT]\n\u003e This requires the `storage` command from [`flipperzero-tools`](https://crates.io/crates/flipperzero-tools) (`cargo install --locked flipperzero-tools`) or [`storage.py`](https://github.com/flipperdevices/flipperzero-firmware/blob/dev/scripts/storage.py) from the official SDK.\n\nThe resulting `.fap` binary can be found in [`target/thumbv7em-none-eabihf/debug`](target/thumbv7em-none-eabihf/debug).\n\n```sh\nstorage send target/thumbv7em-none-eabihf/release/my-project.fap /ext/apps/Examples/my-project.fap\n```\n\n## Build and run on change\n\n\u003e [!IMPORTANT]\n\u003e This requires the `run-fap` command from [`flipperzero-tools`](https://crates.io/crates/flipperzero-tools) (`cargo install --locked flipperzero-tools`) or [`runfap.py`](https://github.com/flipperdevices/flipperzero-firmware/blob/dev/scripts/runfap.py) from the official SDK.\n\nYou can automatically build and run your binary using [`cargo-watch`](https://crates.io/crates/cargo-watch) and the `run-fap` tool.\n\n```sh\ncargo watch -s 'cargo build --release \u0026\u0026 run-fap target/thumbv7em-none-eabihf/release/my-project.fap'\n```\n\n# License\n\nThis template is licensed under the [MIT License](https://github.com/flipperzero-rs/flipperzero/blob/v0.7.2/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblueokanna%2Fflipper_zero_wallet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblueokanna%2Fflipper_zero_wallet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblueokanna%2Fflipper_zero_wallet/lists"}