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
- Host: GitHub
- URL: https://github.com/luncher/wallet-all
- Owner: Luncher
- Created: 2018-08-30T09:35:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-14T11:40:33.000Z (over 6 years ago)
- Last Synced: 2025-01-13T04:41:32.479Z (4 months ago)
- Language: JavaScript
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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