Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/input-output-hk/chain-wallet-libs
https://github.com/input-output-hk/chain-wallet-libs
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/input-output-hk/chain-wallet-libs
- Owner: input-output-hk
- License: apache-2.0
- Created: 2019-09-20T01:51:31.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-04T09:04:39.000Z (about 1 year ago)
- Last Synced: 2024-05-17T15:38:03.181Z (6 months ago)
- Language: Rust
- Size: 2.01 MB
- Stars: 17
- Watchers: 19
- Forks: 13
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# chain-wallet-libs
[![MIT licensed][mit-badge]][mit-url]
[![C.I. Integration][ci-integration-badge]][ci-integration-url]
[![C.I. Checks][ci-check-badge]][ci-check-url]
[![Release][release-badge]][release-url][mit-badge]: https://img.shields.io/badge/license-MIT%2FApache--2.0-blue
[mit-url]: LICENSE
[ci-integration-badge]: https://github.com/input-output-hk/chain-wallet-libs/workflows/C.I.%20Integration/badge.svg
[ci-integration-url]: https://github.com/input-output-hk/chain-wallet-libs/actions?query=workflow%3A%22C.I.+Integration%22
[ci-check-badge]: https://github.com/input-output-hk/chain-wallet-libs/workflows/C.I.%20Checks/badge.svg
[ci-check-url]: https://github.com/input-output-hk/chain-wallet-libs/actions?query=workflow%3A%22C.I.+Checks%22
[release-badge]: https://github.com/input-output-hk/chain-wallet-libs/workflows/Release/badge.svg
[release-url]: https://github.com/input-output-hk/chain-wallet-libs/actions?query=workflow%3AReleaseChain Wallet libs is a set of library, written in [rust-lang], to use to build application for [Jörmungandr].
## released binaries
Currently we provide support for many platforms of the high level wallet library.
**Releases can be found there: [link][release-latest]**
### Android
| Target | released binaries |
| ------------------------- | :---------------: |
| `aarch64-linux-android` | ✓ |
| `arm-linux-androideabi` | ✓ |
| `armv7-linux-androideabi` | ✓ |
| `i686-linux-android` | ✓ |
| `x86_64-linux-android` | ✓ |This includes bindings for Android Kotlin already packaged in a AAR package.
### Cordova plugin
| Platform | supported |
| -------- | :-------: |
| android | ✓ |
| ios | ✓ |### iOS
| Target | released binaries |
| ------------------- | :---------------: |
| `aarch64-apple-ios` | ✓ |
| `x86_64-apple-ios` | ✓ |_Swift package in development..._
### Linux
| Target | released binaries |
| ---------------------------------- | :---------------: |
| `aarch64-unknown-linux-gnu` | ✓ |
| `arm-unknown-linux-gnueabi` | ✓ |
| `armv7-unknown-linux-gnueabihf` | ✓ |
| `mips64el-unknown-linux-gnueabi64` | ✓ |
| `powerpc64el-unknown-linux-gnu` | ✓ |
| `x86_64-unknown-linux-gnu` | ✓ |
| `x86_64-unknown-linux-musl` | ✓ |### MacOS
| Target | released binaries |
| --------------------- | :---------------: |
| `x86_64-apple-darwin` | ✓ |### Wasm (and JavaScript)
| Target | released binaries |
| ------------------------ | :---------------: |
| `wasm32-unknown-unknown` | ✓ |This include Javascript generated binaries (with typescript annotations)
for webjs and nodejs.### Windows
| Target | released binaries |
| ------------------------ | :---------------: |
| `x86_64-pc-windows-gnu` | ✓ |
| `x86_64-pc-windows-msvc` | ✓ |# Development
You can find the main rust libraries at the top level of this repository. These
are the core elements and offer prime support for all the different `bindings`
implemented in the `bindings` directory.For the Cordova plugin, check out the [readme in the plugin's
directory](bindings/wallet-cordova/README.md).## Code formatting
In order to avoid long lasting discussions and arguments about how code should
be formatted for better readability all must be formatted with `rustfmt`.## Clippy
Cargo clippy is ran on this repository at every PRs. This will come in handy to
prevent some readability issues but also potential mistakes in the C bindings
when manipulating raw pointers.## Documentation
- [Wallet Cryptography and Encoding](doc/CRYPTO.md)
- [Enhanced Mnemonic Encoding (EME)](doc/EME.md)
- [Cordova plugin](bindings/wallet-cordova/README.md)[rust-lang]: https://www.rust-lang.org/
[Jörmungandr]: https://input-output-hk.github.io/jormungandr
[release-latest]: https://github.com/input-output-hk/chain-wallet-libs/releases/latest