Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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);
```