Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/HathorNetwork/hathor-wallet-lib
Lib to create wallets using Hathor's full node API.
https://github.com/HathorNetwork/hathor-wallet-lib
hathor lib wallet
Last synced: 5 days ago
JSON representation
Lib to create wallets using Hathor's full node API.
- Host: GitHub
- URL: https://github.com/HathorNetwork/hathor-wallet-lib
- Owner: HathorNetwork
- License: mit
- Created: 2019-05-08T19:42:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-28T19:38:02.000Z (6 months ago)
- Last Synced: 2024-05-29T10:34:29.365Z (6 months ago)
- Topics: hathor, lib, wallet
- Language: TypeScript
- Homepage: https://hathor.network/
- Size: 2.65 MB
- Stars: 20
- Watchers: 11
- Forks: 11
- Open Issues: 113
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-hathor - Wallet Lib - [Official] Javascript lib to create wallets (Development Tools / SDKs)
README
# Hathor Wallet Library
Library used by [Hathor Wallet](https://github.com/HathorNetwork/hathor-wallet). More information at Hathor Network [website](https://hathor.network/).
## Install
`npm install @hathor/wallet-lib`
## Setting storage
This lib requires a storage to be set so it can persist data. Take a look at `src/storage.js` for the methods this storage object should implement.
```
const hathorLib = require('@hathor/wallet-lib');
hathorLib.storage.setStore(storageFactory);
```