This repository was archived by the owner on Sep 3, 2019. It is now read-only.
Releases: bodhiproject/qweb3.js
Releases · bodhiproject/qweb3.js
0.7.6
Release Notes
IMPORTANT! This change require updating your Qtum client to 0.14.16. It includes the new sendtoaddress change and the gasPrice is being passed in as a string.
- Change
gasPriceparam input from exponential form to string decimal - Add params for
sendToAddressto return change to sender
0.7.5
Release Notes
- Add
listaddressgroupings - Configurable environment using dotenv
- Add
getpeerinfo - Return
argsobject insendtransactions containing contractAddress, amount, gasLimit, gasPrice
0.7.1
Release Notes
- Added
getWalletInfofunction
0.7.0
Release Notes
- Added support for dynamic array encoding of all types
0.6.0
Release Notes
- Refactored to use standard ES6 syntax vs Babel syntax. We felt there was not benefit to having to have Babel code on the backend. Please adjust your module imports accordingly.
0.5.0
Release Notes
Added functions for CLI commands:
- getBlock
- getBlockchainInfo
- getBlockHash
- listContracts
- getInfo
- dumpPrivateKey
- encryptWallet
- getNewAddress
- getUnconfirmedBalance
- importAddress
- importPrivateKey
- importPublicKey
- listLockUnspent
- sendToAddress
- setTxFee
0.4.0
Release Notes
- This version is the most stable to date and is ready for use in your projects!
- Removed the need to hardcode the topic (event) hashes in the ContractMetadata. This is calculated dynamically now so all you need in the ContractMetadata objects are the abi and/or address
- Using mock data for tests
0.3.1
Release Notes
- Added compatibility with all Solidity types except for Fixed Point Numbers (not fully implemented in Solidity) and dynamic types. Dynamic types are not recommended for function parameter use in Qtum currently.
- Fixed error with parsing pure numbers in bytes arrays
- uintToHex encoder method accepts decimal, string, hex string, or BN.js formats
- intToHex encoder method accepts decimal, string, or BN.js formats
0.2.6
Release Notes
- Use proper exporting. Qweb3 is default export and Contract, Decoder, and Utils are component exports.
- Move all util methods under Util class
- Added walletpassphrase, walletlock, and walletpassphrase cli methods