@dynamic-labs-wallet/browser 0.0.164 → 0.0.165

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/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@dynamic-labs-wallet/browser",
3
- "version": "0.0.164",
3
+ "version": "0.0.165",
4
4
  "license": "Licensed under the Dynamic Labs, Inc. Terms Of Service (https://www.dynamic.xyz/terms-conditions)",
5
5
  "type": "commonjs",
6
6
  "dependencies": {
7
- "@dynamic-labs-wallet/core": "0.0.164",
7
+ "@dynamic-labs-wallet/core": "0.0.165",
8
8
  "@dynamic-labs/logger": "^4.25.3",
9
9
  "@dynamic-labs/sdk-api-core": "^0.0.764",
10
10
  "argon2id": "1.0.1",
package/src/client.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { AuthMode, BackupLocation, type BackupLocationWithExternalKeyShareId, DynamicApiClient, type DynamicWalletClientProps, FeatureFlags, type InitializeResult, type KeyShareBackupInfo, ThresholdSignatureScheme, WalletOperation } from '@dynamic-labs-wallet/core';
2
- import { BIP340KeygenResult, EcdsaKeygenResult, type EcdsaPublicKey, type EcdsaSignature, ExportableEd25519KeygenResult } from '../../internal/web';
2
+ import { BIP340KeygenResult, EcdsaKeygenResult, type EcdsaPublicKey, type EcdsaSignature, ExportableEd25519KeygenResult } from '../internal/web';
3
3
  import type { SignMessageContext } from '@dynamic-labs/sdk-api-core';
4
4
  import type { ClientInitKeygenResult, ClientKeyShare } from './mpc/types';
5
5
  import { type SupportedStorage } from './services/localStorage';
@@ -1,4 +1,4 @@
1
- import { Ecdsa, Ed25519, BIP340, BIP340KeygenResult, EcdsaPublicKey, Ed25519KeygenResult, EcdsaKeygenResult, MessageHash, EcdsaInitKeygenResult, Ed25519InitKeygenResult, BIP340InitKeygenResult, EcdsaSignature } from '../../../internal/web';
1
+ import { Ecdsa, Ed25519, BIP340, BIP340KeygenResult, EcdsaPublicKey, Ed25519KeygenResult, EcdsaKeygenResult, MessageHash, EcdsaInitKeygenResult, Ed25519InitKeygenResult, BIP340InitKeygenResult, EcdsaSignature } from '../../internal/web';
2
2
  export { Ecdsa, Ed25519, BIP340, EcdsaPublicKey, EcdsaKeygenResult, Ed25519KeygenResult, BIP340KeygenResult, MessageHash, EcdsaInitKeygenResult, Ed25519InitKeygenResult, BIP340InitKeygenResult, EcdsaSignature, };
3
3
  export * from './mpc';
4
4
  export * from './types';
package/src/mpc/mpc.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { SigningAlgorithm } from '@dynamic-labs-wallet/core';
2
- import { Ecdsa, ExportableEd25519, BIP340 } from '../../../internal/web';
2
+ import { Ecdsa, ExportableEd25519, BIP340 } from '../../internal/web';
3
3
  export declare const getMPCSignatureScheme: ({ signingAlgorithm, baseRelayUrl, }: {
4
4
  signingAlgorithm: SigningAlgorithm;
5
5
  baseRelayUrl?: string;
@@ -1,5 +1,5 @@
1
- import type { BIP340InitKeygenResult, BIP340KeygenResult, ExportableEd25519InitKeygenResult, EcdsaInitKeygenResult, EcdsaKeygenResult, ExportableEd25519KeygenResult } from '../../../internal/web';
1
+ import type { BIP340InitKeygenResult, BIP340KeygenResult, ExportableEd25519InitKeygenResult, EcdsaInitKeygenResult, EcdsaKeygenResult, ExportableEd25519KeygenResult } from '../../internal/web';
2
2
  export type ClientInitKeygenResult = EcdsaInitKeygenResult | ExportableEd25519InitKeygenResult | BIP340InitKeygenResult;
3
3
  export type ClientKeyShare = EcdsaKeygenResult | ExportableEd25519KeygenResult | BIP340KeygenResult;
4
- export type { Ecdsa, BIP340, EcdsaPublicKey, EcdsaKeygenResult, ExportableEd25519InitKeygenResult, ExportableEd25519KeygenResult, BIP340KeygenResult, MessageHash, EcdsaSignature, } from '../../../internal/web';
4
+ export type { Ecdsa, BIP340, EcdsaPublicKey, EcdsaKeygenResult, ExportableEd25519InitKeygenResult, ExportableEd25519KeygenResult, BIP340KeygenResult, MessageHash, EcdsaSignature, } from '../../internal/web';
5
5
  //# sourceMappingURL=types.d.ts.map
package/src/utils.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { type KeyShareBackupInfo, type ThresholdSignatureScheme, type WaasWalletProperties } from '@dynamic-labs-wallet/core';
2
2
  import type { JwtVerifiedCredential } from '@dynamic-labs/sdk-api-core';
3
- import { MessageHash } from '../../internal/web';
3
+ import { MessageHash } from '../internal/web';
4
4
  import type { ClientKeyShare } from './mpc/types';
5
5
  export declare const isBrowser: () => boolean;
6
6
  export declare const getClientKeyShareExportFileName: ({ thresholdSignatureScheme, accountAddress, }: {