@leather.io/utils 0.46.3 → 0.47.0

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
- > @leather.io/utils@0.46.3 build /home/runner/work/mono/mono/packages/utils
2
+ > @leather.io/utils@0.47.0 build /home/runner/work/mono/mono/packages/utils
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,7 +10,7 @@
10
10
  ESM Build start
11
11
  ESM dist/index.js 73.03 KB
12
12
  ESM dist/index.js.map 138.46 KB
13
- ESM ⚡️ Build success in 36ms
13
+ ESM ⚡️ Build success in 42ms
14
14
  DTS Build start
15
- DTS ⚡️ Build success in 2493ms
15
+ DTS ⚡️ Build success in 2110ms
16
16
  DTS dist/index.d.ts 14.79 KB
package/CHANGELOG.md CHANGED
@@ -359,6 +359,30 @@
359
359
  * @leather.io/constants bumped to 0.27.0
360
360
  * @leather.io/models bumped to 0.44.0
361
361
 
362
+ ### Dependencies
363
+
364
+ * The following workspace dependencies were updated
365
+ * dependencies
366
+ * @leather.io/constants bumped to 0.27.1
367
+ * @leather.io/models bumped to 0.44.1
368
+ * devDependencies
369
+ * @leather.io/prettier-config bumped to 0.9.0
370
+
371
+ ## [0.47.0](https://github.com/leather-io/mono/compare/@leather.io/utils-v0.46.4...@leather.io/utils-v0.47.0) (2025-10-16)
372
+
373
+
374
+ ### Features
375
+
376
+ * add stamps service and integrate to collectibles on mobile ([2037431](https://github.com/leather-io/mono/commit/2037431540b0e7ddb4e144a192ac816941997653))
377
+
378
+
379
+ ### Dependencies
380
+
381
+ * The following workspace dependencies were updated
382
+ * dependencies
383
+ * @leather.io/constants bumped to 0.27.2
384
+ * @leather.io/models bumped to 0.45.0
385
+
362
386
  ## [0.46.0](https://github.com/leather-io/mono/compare/@leather.io/utils-v0.45.0...@leather.io/utils-v0.46.0) (2025-09-26)
363
387
 
364
388
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@leather.io/utils",
3
3
  "author": "Leather.io contact@leather.io",
4
4
  "description": "Shared bitcoin utilities",
5
- "version": "0.46.3",
5
+ "version": "0.47.0",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/leather-io/mono/tree/dev/packages/utils",
8
8
  "repository": {
@@ -19,8 +19,8 @@
19
19
  "dependencies": {
20
20
  "bignumber.js": "9.1.2",
21
21
  "dompurify": "3.2.4",
22
- "@leather.io/constants": "0.27.0",
23
- "@leather.io/models": "0.44.0"
22
+ "@leather.io/constants": "0.27.2",
23
+ "@leather.io/models": "0.45.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/dompurify": "3.0.5",
@@ -28,8 +28,8 @@
28
28
  "tsup": "8.4.0",
29
29
  "typescript": "5.8.3",
30
30
  "vitest": "2.1.9",
31
- "@leather.io/prettier-config": "0.8.1",
32
- "@leather.io/tsconfig-config": "0.11.0"
31
+ "@leather.io/tsconfig-config": "0.11.0",
32
+ "@leather.io/prettier-config": "0.9.0"
33
33
  },
34
34
  "keywords": [
35
35
  "leather",
@@ -1,12 +1,7 @@
1
- import { AccountId } from '@leather.io/models';
2
-
3
1
  import { createAccountAddresses, hasBitcoinAddress, hasStacksAddress } from './account-addresses';
4
2
 
5
3
  describe(createAccountAddresses.name, () => {
6
- const mockAccountId: AccountId = {
7
- fingerprint: 'test-fingerprint',
8
- accountIndex: 0,
9
- };
4
+ const mockAccountId = { fingerprint: 'test-fingerprint', accountIndex: 0 };
10
5
  const mockBtcDescriptors = ['tr(xpub123)', 'wpkh(xpub456)'];
11
6
  const mockStxAddress = 'ST123TEST';
12
7