fix: update to 14.0.12 with author and dependency fixes

- Author: Dijital Kurdistan Tech Institute <dev@pezkuwichain.io>
- Fixed Uint8Array type errors in test files
- Added @types/react-native devDependency for x-randomvalues
- Added @pezkuwi/hw-ledger devDependency for networks tests
- Added @pezkuwi/x-randomvalues devDependency for util tests
- Updated all internal dependencies to 14.0.12
This commit is contained in:
2026-01-30 22:48:06 +03:00
parent 4a8fe9b100
commit 8f0415ed0f
32 changed files with 12413 additions and 180 deletions
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/util', path: 'auto', type: 'auto', version: '14.0.10' };
export const packageInfo = { name: '@pezkuwi/util', path: 'auto', type: 'auto', version: '14.0.12' };
+1 -1
View File
@@ -60,7 +60,7 @@ describe('u8aToHex', (): void => {
it('returns the hex value where allowed < max', (): void => {
expect(
u8aToHex(
new Uint8Array(Uint8Array.from([128, 0, 10, 11]), 64)
Uint8Array.from([128, 0, 10, 11])
)
).toEqual('0x80000a0b');
});
+1 -1
View File
@@ -47,7 +47,7 @@ describe('u8aToHex', (): void => {
it('returns the hex value where allowed < max', (): void => {
expect(
u8aToHex(
new Uint8Array(Uint8Array.from([128, 0, 10, 11]), 64)
Uint8Array.from([128, 0, 10, 11])
)
).toEqual('0x80000a0b');
});