@lightsparkdev/lightspark-sdk 1.5.4 → 1.5.6

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @lightsparkdev/lightspark-sdk
2
2
 
3
+ ## 1.5.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [20fb70b]
8
+ - @lightsparkdev/core@1.0.17
9
+
10
+ ## 1.5.5
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [cb28f0e]
15
+ - @lightsparkdev/core@1.0.16
16
+
3
17
  ## 1.5.4
4
18
 
5
19
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -1949,7 +1949,7 @@ var import_core9 = require("@lightsparkdev/core");
1949
1949
  // package.json
1950
1950
  var package_default = {
1951
1951
  name: "@lightsparkdev/lightspark-sdk",
1952
- version: "1.5.4",
1952
+ version: "1.5.6",
1953
1953
  description: "Lightspark JS SDK",
1954
1954
  author: "Lightspark Inc.",
1955
1955
  keywords: [
@@ -2037,7 +2037,7 @@ var package_default = {
2037
2037
  },
2038
2038
  license: "Apache-2.0",
2039
2039
  dependencies: {
2040
- "@lightsparkdev/core": "1.0.15",
2040
+ "@lightsparkdev/core": "1.0.17",
2041
2041
  "@lightsparkdev/crypto-wasm": "0.1.2",
2042
2042
  "auto-bind": "^5.0.1",
2043
2043
  "crypto-browserify": "^3.12.0",
package/dist/index.js CHANGED
@@ -146,7 +146,7 @@ import {
146
146
  // package.json
147
147
  var package_default = {
148
148
  name: "@lightsparkdev/lightspark-sdk",
149
- version: "1.5.4",
149
+ version: "1.5.6",
150
150
  description: "Lightspark JS SDK",
151
151
  author: "Lightspark Inc.",
152
152
  keywords: [
@@ -234,7 +234,7 @@ var package_default = {
234
234
  },
235
235
  license: "Apache-2.0",
236
236
  dependencies: {
237
- "@lightsparkdev/core": "1.0.15",
237
+ "@lightsparkdev/core": "1.0.17",
238
238
  "@lightsparkdev/crypto-wasm": "0.1.2",
239
239
  "auto-bind": "^5.0.1",
240
240
  "crypto-browserify": "^3.12.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightsparkdev/lightspark-sdk",
3
- "version": "1.5.4",
3
+ "version": "1.5.6",
4
4
  "description": "Lightspark JS SDK",
5
5
  "author": "Lightspark Inc.",
6
6
  "keywords": [
@@ -88,7 +88,7 @@
88
88
  },
89
89
  "license": "Apache-2.0",
90
90
  "dependencies": {
91
- "@lightsparkdev/core": "1.0.15",
91
+ "@lightsparkdev/core": "1.0.17",
92
92
  "@lightsparkdev/crypto-wasm": "0.1.2",
93
93
  "auto-bind": "^5.0.1",
94
94
  "crypto-browserify": "^3.12.0",
@@ -595,7 +595,9 @@ describe(p2SuiteName, () => {
595
595
  test(
596
596
  "Should get a bitcoin fee estimate",
597
597
  async () => {
598
- const fee = await lightsparkClient.getBitcoinFeeEstimate();
598
+ const fee = await lightsparkClient.getBitcoinFeeEstimate(
599
+ BitcoinNetwork.REGTEST,
600
+ );
599
601
  expect(fee).not.toBeNull();
600
602
  },
601
603
  TESTS_TIMEOUT,