Skip to content

Latest commit

 

History

History
294 lines (161 loc) · 13.3 KB

CHANGELOG.md

File metadata and controls

294 lines (161 loc) · 13.3 KB

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

0.2.38 (2022-09-02)

Features

  • add electrumx api (91211c3)
  • add fetchUTXO (e543cd2)
  • add handler for litecoin (941f228)
  • add litecoin support (3915e22)
  • added blockchain.com api, fix multichain endpoint (ad95456)
  • added doge getTransactions (d2d8a09)
  • added fetchTXs endpoints (7582026)
  • added FIL support (83d56b5)
  • added getUTXO to wrap around fetchUTXO (e146c94)
  • added initial doge api support, updated dependencies (34cb062)
  • added jsonrpc api (047624f)
  • added terra/luna support (bdad20c)
  • export doge handler (932c107)
  • FIL: default to testnet for unrecognized network (19401fa)
  • reduced retry amounts (1804776)
  • replaced web3 with ethers (4f18568)
  • update ethereum mainnet endpoint (bde5eb4)
  • update terra testnet, add ethereum public rpc endpoints (28ee695)
  • update web3 to 1.5.0 (7a32e10)
  • updated bitgo-utxo-lib to fix zcash, updated bch endpoint (2cdec25)
  • updated dependencies (f483881)
  • updated dependencies (319d0c8)

Bug Fixes

  • add babel runtime for filecoin dependency (84be61d)
  • convert key to buffer before initializing fil wallet (ac3029e)
  • FIL: return balance correctly (67c554d)
  • fixed fetchTransactions calling fetchUTXos instead (e09da7e)
  • remove bn.js imports (71fa3f2)
  • use rimraf in clean command (e168df3)

0.2.37 (2022-04-21)

Features

  • update terra testnet, add ethereum public rpc endpoints (28ee695)

0.2.36 (2022-03-31)

Features

  • update ethereum mainnet endpoint (bde5eb4)
  • updated dependencies (f483881)

0.2.35 (2022-03-02)

Features

  • replaced web3 with ethers (4f18568)

0.2.34 (2022-03-02)

Features

  • added blockchain.com api, fix multichain endpoint (ad95456)

0.2.33 (2021-08-04)

Bug Fixes

  • convert key to buffer before initializing fil wallet (ac3029e)

0.2.32 (2021-08-04)

Bug Fixes

  • add babel runtime for filecoin dependency (84be61d)

0.2.31 (2021-08-04)

Features

Bug Fixes

  • use rimraf in clean command (e168df3)

0.2.30 (2021-08-04)

Features

0.2.29 (2021-01-13)

Features

0.2.28 (2020-12-15)

Features

  • added terra/luna support (bdad20c)

0.2.27 (2020-11-26)

Features

0.2.26 (2020-11-26)

Features

  • updated bitgo-utxo-lib to fix zcash, updated bch endpoint (2cdec25)

0.2.25 (2020-11-10)

Bug Fixes

  • FIL: return balance correctly (67c554d)

0.2.24 (2020-11-10)

0.2.23 (2020-11-10)

Features

  • FIL: default to testnet for unrecognized network (19401fa)

0.2.22 (2020-11-10)

Features

0.2.21 (2020-10-30)

0.2.20 (2020-10-07)

Features

0.2.19 (2020-09-25)

Bug Fixes

  • fixed fetchTXs calling fetchUTXos instead (e09da7e)

0.2.18 (2020-09-25)

0.2.17 (2020-09-25)

Features

  • added fetchTXs endpoints (7582026)

0.2.16 (2020-09-18)

Features

  • added initial doge api support, updated dependencies (34cb062)

0.2.15 (2020-09-09)

Bug Fixes

0.2.14 (2020-07-13)

0.2.13 (2020-07-13)

Features

  • added getUTXO to wrap around fetchUTXO (e146c94)

0.2.12 (2020-07-13)

Features

0.2.11 (2020-06-26)

0.2.10 (2020-06-11)

0.2.9 (2020-06-11)

0.2.8 (2020-06-11)

0.2.7 (2020-06-11)

0.2.6 (2020-06-11)

0.2.5 (2020-06-11)

0.2.4 (2020-06-11)

0.2.3 (2020-04-29)

0.2.2 (2020-04-10)

0.2.1 (2020-04-10)

0.2.0 (2020-04-09)

The UTXO type has been changed from

interface SoChainUTXO {
    txid: string;
    value: number;
    output_no: number;
    confirmations: number;
    script_hex?: string;
}

to

interface UTXO {
    txHash: string;
    vOut: number;
    amount: number;
    confirmations: number;
    scriptPubKey?: string;
}

0.1.14 (2020-04-02)

0.1.13 (2020-04-02)

0.1.12 (2020-03-05)

0.1.11 (2020-01-09)

0.1.10 (2020-01-08)

0.1.9 (2019-12-23)

0.1.8 (2019-12-23)

0.1.7 (2019-12-23)

0.1.6 (2019-12-23)

0.1.5 (2019-12-09)

0.1.4 (2019-12-05)

  • Added approve option for ERC20s

0.1.3 (2019-12-03)

  • Randomized API fallback order

0.1.2 (2019-12-03)

  • Renamed balanceOf to getBalance
  • Exposed getUTXOs in BTC, ZEC and BCH handlers

0.1.1 (2019-12-02)

  • Allowed importing without .default

0.1.0 (2019-12-02)

First public release, supporting BTC, BCH, ZEC, ETH and ERC20s.