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

https://github.com/luncher/wallet-all

light wallet sdk implements
https://github.com/luncher/wallet-all

Last synced: 3 months ago
JSON representation

light wallet sdk implements

Awesome Lists containing this project

README

        

## Light Wallet Implements

### Coin List

+ ETC
+ ETH
+ XMR
+ etc.

### Quick Start

+ Install
> npm install wallet-all -S

+ Usage

```javascript
const { createWalletByType } = require('wallet-all')

const walletAccount = {
coinTag: 'ETH',
privKey: 'xqwjhdiuq3hioq3'
}
const wallet = createWalletByType(walletAccount.coinTag, walletAccount)

const balance = await wallet.getBalance()

```

### API List

+ getTransactionCount
+ getBalance
+ transferAll
+ transfer

## License MIT