{"id":13790593,"url":"https://github.com/Anylsite/anyl-wallet","last_synced_at":"2025-05-12T09:32:53.427Z","repository":{"id":77297721,"uuid":"139720284","full_name":"Anylsite/anyl-wallet","owner":"Anylsite","description":"🏦 Anyl Embedded Wallet for Internet of Things","archived":false,"fork":false,"pushed_at":"2019-07-18T17:50:15.000Z","size":317,"stargazers_count":30,"open_issues_count":33,"forks_count":16,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-11-18T05:38:14.570Z","etag":null,"topics":["blockchain","crypto","cryptocurrency","iot","wallet"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Anylsite.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2018-07-04T12:38:52.000Z","updated_at":"2024-06-14T11:35:46.000Z","dependencies_parsed_at":"2023-06-12T13:45:18.918Z","dependency_job_id":null,"html_url":"https://github.com/Anylsite/anyl-wallet","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anylsite%2Fanyl-wallet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anylsite%2Fanyl-wallet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anylsite%2Fanyl-wallet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Anylsite%2Fanyl-wallet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Anylsite","download_url":"https://codeload.github.com/Anylsite/anyl-wallet/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253709367,"owners_count":21951125,"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":["blockchain","crypto","cryptocurrency","iot","wallet"],"created_at":"2024-08-03T22:00:47.535Z","updated_at":"2025-05-12T09:32:52.756Z","avatar_url":"https://github.com/Anylsite.png","language":"C","funding_links":[],"categories":["Awesome Embedded Bitcoin [![Awesome](https://awesome.re/badge-flat.svg)](https://awesome.re)"],"sub_categories":["Github"],"readme":"# anyledger-wallet\n\n## Overview\n\n🏦 AnyLedger Embedded Wallet for Internet of Things\n\nC crypto libraries to safely manage, generate and store private keys, to generate blockchain addresses and to sign transactions. \n\nAdditionally, it contains a RTOS app ([Zephyr](https://github.com/AnyLedger/zephyr)).\nThe current implementation uses Ethereum and HyperLedger, but the same architecture will be used for all the other chains. The current implementation supports [100+ hardware platforms](https://docs.zephyrproject.org/latest/boards/index.html) and is mainly bug tested on Nordic nRF52840.\n\nAny IoT device flashing the embedded wallet can safely connect to a given blockchain, do transactions and interact with smart contracts. \n\n## Contributing\n\nHave a look at our [contribution guidelines](https://github.com/AnyLedger/anyledger-wallet/blob/master/CONTRIBUTING.md).\n\n## Compilation\n\n### Dependencies\n\n##### Linux (Ubuntu)\nOn a fresh Ubuntu:18.04 docker image. Adapt as appropriate to your distro.\n```\napt-get update\napt-get install libgtest-dev g++ make cmake wget build-essential clang clang-tidy ninja-build git python3-pip protobuf-compiler python-protobuf -y\n\n# Ubuntu's libgtest-dev is only the source. You have to compile them manually.\ncd /usr/src/gtest; cmake .; cmake --build . --target install \n\n# Install Ethereum Solidity compiler\napt-get install software-properties-common -y \u0026\u0026 add-apt-repository ppa:ethereum/ethereum -y \u0026\u0026 apt-get update\napt-get install solc -y\n\n# without this, you will get a Python 3 ASCII/UTF8 error on Ubuntu\nexport LC_ALL=C.UTF-8\nexport LANG=C.UTF-8\ncd /\ngit clone https://github.com/AnyLedger/anyledger-wallet\n\nalias build='rm -rf build; mkdir build; cd build; cmake -GNinja ../; ninja; cd ..'\n\ncd anyledger-wallet; pip3 install --user -r requirements.txt; build\n```\n\n##### macOS\n\nGTest:\n\n```\ngit clone https://github.com/google/googletest \ncd googletest  \nmkdir build  \ncd build  \ncmake ..  \nmake  \nmake install\n```\n\nAdditional dependencies (installed using [Homebrew](https://brew.sh)):\n\n`brew install gcc make cmake wget ninja nanopb-generator protobuf pkgconfig`\n\n#### Python (this is required for ABI compiler)\n`pip3 install --user -r requirements.txt`\n\n#### solidity compiler\nA working `solc` should be available in your `$PATH`. See the [Installation instructions](https://solidity.readthedocs.io/en/v0.5.7/installing-solidity.html).\n\n### x86 build\n\nThis build is used to develop and test the wallet library on your desktop.\n\n1) clone wallet repo\n`git clone git@github.com:AnyLedger/anyledger-wallet.git \u0026\u0026 cd anyledger-wallet`\n\n2) create build directory and generate build targets\n`mkdir build \u0026\u0026 cd build \u0026\u0026 cmake -GNinja ../`\n\n3) compile the library \u0026 run the tests\n`ninja \u0026\u0026 ctest`\n\n### zephyr build\n\nPrerequisites: a working zephyr SDK (at least v0.9.5), see [here](https://docs.zephyrproject.org/latest/getting_started/getting_started.html) for instructions. \nPlease make sure you can compile and flash at least blinky example before building the wallet.\n\n1) clone wallet repo to the zephyr's `samples` directory\n`mkdir samples/anyledger/ \u0026\u0026 git clone git@github.com:AnyLedger/anyledger-wallet.git`\n\n2) create build directory and generate build targets\n`cd samples/anyledger/anyledger-wallet/build \u0026\u0026 cmake -GNinja  -DBOARD=nrf52840_pca10056 -DBUILD_XCOMPILE=1  ../`\n\n3) compile \u0026 flash the firmware\n`ninja \u0026\u0026 ninja flash`\n\n## Using AnyLedger wallet\n\nTo start AnyLedger wallet using a QEMU virtual machine, [see here](https://github.com/AnyLedger/anyledger-wallet/blob/master/BUILD-qemu.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAnylsite%2Fanyl-wallet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FAnylsite%2Fanyl-wallet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAnylsite%2Fanyl-wallet/lists"}