Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eddytheco/qbip39
https://github.com/eddytheco/qbip39
bip39 crypto qt6 wallet
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/eddytheco/qbip39
- Owner: EddyTheCo
- License: gpl-3.0
- Created: 2023-12-14T12:56:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-28T10:31:27.000Z (9 months ago)
- Last Synced: 2024-03-28T11:35:57.391Z (9 months ago)
- Topics: bip39, crypto, qt6, wallet
- Language: C++
- Homepage: https://eddytheco.github.io/QBip39/
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bip-39 implementation
[TOC]
This repo implements methods to work with mnemonic sentences following [Bip-39](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki)
## Installing the library
### From source code
```
git clone https://github.com/EddyTheCo/QBip39.gitmkdir build
cd build
qt-cmake -G Ninja -DCMAKE_INSTALL_PREFIX=installDir -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DBUILD_DOCS=OFF ../QBip39cmake --build .
cmake --install .
```
where `installDir` is the installation path.
One can choose to build or not the test and the documentation with the `BUILD_TESTING` and `BUILD_DOCS` variables.### From GitHub releases
Download the releases from this repo.## Adding the libraries to your CMake project
```CMake
include(FetchContent)
FetchContent_Declare(
QtBip39
GIT_REPOSITORY https://github.com/EddyTheCo/QBip39.git
GIT_TAG vMAJOR.MINOR.PATCH
FIND_PACKAGE_ARGS MAJOR.MINOR CONFIG
)
FetchContent_MakeAvailable(QtBip39)target_link_libraries( QtBip39::qbip39)
```## API reference
You can read the [API reference](https://eddytheco.github.io/QBip39/), or generate it yourself like
```
cmake -DBUILD_DOCS=ON ../
cmake --build . --target doxygen_docs
```## Contributing
We appreciate any contribution!
You can open an issue or request a feature.
You can open a PR to the `develop` branch and the CI/CD will take care of the rest.
Make sure to acknowledge your work, and ideas when contributing.