Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hsyndeniz/react-native-hd-wallet
Hierarchical-deterministic (HD) wallet generator for react native.
https://github.com/hsyndeniz/react-native-hd-wallet
ethereum hd-wallet hierarchical-deterministic hierarchical-deterministic-wallets react-native solana tezos
Last synced: about 2 months ago
JSON representation
Hierarchical-deterministic (HD) wallet generator for react native.
- Host: GitHub
- URL: https://github.com/hsyndeniz/react-native-hd-wallet
- Owner: hsyndeniz
- License: mit
- Created: 2023-03-19T22:05:03.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-20T06:41:21.000Z (almost 2 years ago)
- Last Synced: 2024-10-20T03:51:02.173Z (4 months ago)
- Topics: ethereum, hd-wallet, hierarchical-deterministic, hierarchical-deterministic-wallets, react-native, solana, tezos
- Language: Java
- Homepage:
- Size: 174 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# react-native-hd-wallet
Hierarchical-deterministic (HD) wallet generator for react native.
## Installation
```sh
npm install react-native-hd-wallet
```## Usage
```js
import { createHDWallet } from 'react-native-hd-wallet';// ...
const wallet = await createHDWallet();
// or with account index and mnemonic
const wallet = await createHDWallet(0, 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat');```
## Contributing
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
## License
MIT
---
Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)