@atomicfinance/bitcoin-wallet-provider 4.1.8 → 4.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
 
2
2
  
3
- > @atomicfinance/bitcoin-wallet-provider@4.1.2 build /Users/matthewblack/code/github.com/AtomicFinance/bitcoin-abstraction-layer/packages/bitcoin-wallet-provider
3
+ > @atomicfinance/bitcoin-wallet-provider@4.1.8 build /Users/matthewblack/code/github.com/AtomicFinance/bitcoin-abstraction-layer/packages/bitcoin-wallet-provider
4
4
  > ../../node_modules/.bin/tsc --project tsconfig.json
5
5
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atomicfinance/bitcoin-wallet-provider
2
2
 
3
+ ## 4.1.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 58031b0: React native compatibility
8
+ - Updated dependencies [58031b0]
9
+ - @atomicfinance/bitcoin-utils@4.1.9
10
+ - @atomicfinance/utils@4.1.9
11
+ - @atomicfinance/errors@4.1.9
12
+ - @atomicfinance/provider@4.1.9
13
+ - @atomicfinance/types@4.1.9
14
+
3
15
  ## 4.1.8
4
16
 
5
17
  ### Patch Changes
@@ -2,7 +2,7 @@ import { CoinSelectTarget } from '@atomicfinance/bitcoin-utils';
2
2
  import Provider from '@atomicfinance/provider';
3
3
  import { Address, bitcoin as bT, SendOptions, Transaction } from '@atomicfinance/types';
4
4
  import { BIP32Interface } from 'bip32';
5
- import { BitcoinNetwork } from 'bitcoin-networks';
5
+ import { BitcoinNetwork } from 'bitcoin-network';
6
6
  import * as bitcoin from 'bitcoinjs-lib';
7
7
  type UnusedAddressesBlacklist = {
8
8
  [address: string]: true;
@@ -18,7 +18,7 @@ import {
18
18
  import { addressToString } from '@atomicfinance/utils';
19
19
  import { dualFundingCoinSelect } from '@node-dlc/core';
20
20
  import { BIP32Interface } from 'bip32';
21
- import { BitcoinNetwork } from 'bitcoin-networks';
21
+ import { BitcoinNetwork } from 'bitcoin-network';
22
22
  import * as bitcoin from 'bitcoinjs-lib';
23
23
  import memoize from 'memoizee';
24
24
 
package/package.json CHANGED
@@ -1,21 +1,21 @@
1
1
  {
2
2
  "name": "@atomicfinance/bitcoin-wallet-provider",
3
3
  "umdName": "BitcoinWalletProvider",
4
- "version": "4.1.8",
4
+ "version": "4.1.9",
5
5
  "description": "Bitcoin Abstraction Layer Wallet Provider",
6
6
  "author": "Atomic Finance <info@atomic.finance>",
7
7
  "homepage": "",
8
8
  "license": "ISC",
9
9
  "main": "dist/index.js",
10
10
  "dependencies": {
11
- "@atomicfinance/bitcoin-utils": "^4.1.8",
12
- "@atomicfinance/errors": "^4.1.8",
13
- "@atomicfinance/provider": "^4.1.8",
14
- "@atomicfinance/types": "^4.1.8",
15
- "@atomicfinance/utils": "^4.1.8",
11
+ "@atomicfinance/bitcoin-utils": "^4.1.9",
12
+ "@atomicfinance/errors": "^4.1.9",
13
+ "@atomicfinance/provider": "^4.1.9",
14
+ "@atomicfinance/types": "^4.1.9",
15
+ "@atomicfinance/utils": "^4.1.9",
16
16
  "@node-dlc/core": "1.1.0",
17
17
  "bip32": "^2.0.6",
18
- "bitcoin-networks": "^1.0.0",
18
+ "bitcoin-network": "0.1.0",
19
19
  "bitcoinjs-lib": "6.1.7",
20
20
  "lodash": "^4.17.20",
21
21
  "memoizee": "^0.4.15"