Skip to content
This repository was archived by the owner on Sep 3, 2019. It is now read-only.

Releases: bodhiproject/qweb3.js

0.7.6

05 Apr 03:14
da900e0

Choose a tag to compare

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 gasPrice param input from exponential form to string decimal
  • Add params for sendToAddress to return change to sender

0.7.5

02 Apr 17:17
bb2869a

Choose a tag to compare

Release Notes

  • Add listaddressgroupings
  • Configurable environment using dotenv
  • Add getpeerinfo
  • Return args object in send transactions containing contractAddress, amount, gasLimit, gasPrice

0.7.1

26 Mar 06:24
398e057

Choose a tag to compare

Release Notes

  • Added getWalletInfo function

0.7.0

23 Feb 04:07
a029230

Choose a tag to compare

Release Notes

  • Added support for dynamic array encoding of all types

0.6.0

06 Feb 05:57
7e62b6b

Choose a tag to compare

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

02 Feb 03:58
c9e7c57

Choose a tag to compare

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

17 Jan 08:11
670cdce

Choose a tag to compare

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

09 Jan 18:14
908254a

Choose a tag to compare

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

05 Jan 19:52
fe9e4e1

Choose a tag to compare

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