All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
0.2.37 (2022-04-21)
- update terra testnet, add ethereum public rpc endpoints (28ee695)
0.2.36 (2022-03-31)
0.2.35 (2022-03-02)
- replaced web3 with ethers (4f18568)
0.2.34 (2022-03-02)
- added blockchain.com api, fix multichain endpoint (ad95456)
0.2.33 (2021-08-04)
- convert key to buffer before initializing fil wallet (ac3029e)
0.2.32 (2021-08-04)
- add babel runtime for filecoin dependency (84be61d)
0.2.31 (2021-08-04)
- update web3 to 1.5.0 (7a32e10)
- use rimraf in clean command (e168df3)
0.2.30 (2021-08-04)
- add electrumx api (91211c3)
0.2.29 (2021-01-13)
0.2.28 (2020-12-15)
- added terra/luna support (bdad20c)
0.2.27 (2020-11-26)
- updated dependencies (319d0c8)
0.2.26 (2020-11-26)
- updated bitgo-utxo-lib to fix zcash, updated bch endpoint (2cdec25)
0.2.25 (2020-11-10)
- FIL: return balance correctly (67c554d)
0.2.24 (2020-11-10)
0.2.23 (2020-11-10)
- FIL: default to testnet for unrecognized network (19401fa)
0.2.22 (2020-11-10)
- added FIL support (83d56b5)
0.2.21 (2020-10-30)
0.2.20 (2020-10-07)
0.2.19 (2020-09-25)
- fixed fetchTXs calling fetchUTXos instead (e09da7e)
0.2.18 (2020-09-25)
0.2.17 (2020-09-25)
- added fetchTXs endpoints (7582026)
0.2.16 (2020-09-18)
- added initial doge api support, updated dependencies (34cb062)
0.2.15 (2020-09-09)
- remove bn.js imports (71fa3f2)
0.2.14 (2020-07-13)
0.2.13 (2020-07-13)
- added getUTXO to wrap around fetchUTXO (e146c94)
0.2.12 (2020-07-13)
- add fetchUTXO (e543cd2)
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
togetBalance
- Exposed getUTXOs in BTC, ZEC and BCH handlers
0.1.1 (2019-12-02)
- Allowed importing without
.default
First public release, supporting BTC, BCH, ZEC, ETH and ERC20s.