@leather.io/utils 0.46.4 → 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.
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @leather.io/utils@0.
|
|
2
|
+
> @leather.io/utils@0.47.0 build /home/runner/work/mono/mono/packages/utils
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[32mESM[39m [1mdist/index.js [22m[32m73.03 KB[39m
|
|
12
12
|
[32mESM[39m [1mdist/index.js.map [22m[32m138.46 KB[39m
|
|
13
|
-
[32mESM[39m ⚡️ Build success in
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 42ms
|
|
14
14
|
[34mDTS[39m Build start
|
|
15
|
-
[32mDTS[39m ⚡️ Build success in
|
|
15
|
+
[32mDTS[39m ⚡️ Build success in 2110ms
|
|
16
16
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m14.79 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -368,6 +368,21 @@
|
|
|
368
368
|
* devDependencies
|
|
369
369
|
* @leather.io/prettier-config bumped to 0.9.0
|
|
370
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
|
+
|
|
371
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)
|
|
372
387
|
|
|
373
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.
|
|
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.
|
|
23
|
-
"@leather.io/models": "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/
|
|
32
|
-
"@leather.io/
|
|
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:
|
|
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
|
|