@adshares/ads-client
v1.0.2
Published
JavaScript ES2015 client for the ADS blockchain API.
Readme
ADS JS Client is an JavaScript ES2015 client for the ADS blockchain API.
The module can be used to send basic transactions. ADS JS Client is a free, open-source npm module. It supports both mainnet and testnet.
Install
npm install @adshares/ads-clientor
yarn add @adshares/ads-clientUsage
All methods return Promises.
import AdsClient from '@adshares/ads-client';
// pass true to enable testnet
const adsClient = new AdsClient(false);
adsWallet.getInfo().then(info => {})
adsWallet.getNodes().then(nodes => {})
adsWallet.sendTransaction(_DATA_, _SIGNATURE_).then(response => {})
Contributing
Please follow our Contributing Guidelines
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Authors
- Maciej Pilarczyk - programmer
See also the list of contributors who participated in this project.
License
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
