@miden-sdk/miden-wallet-adapter-base 0.14.3 → 0.15.1

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/dist/types.d.ts CHANGED
@@ -47,7 +47,7 @@ export interface WalletTransactionSuccessOutput {
47
47
  }
48
48
  export type WalletTransactionOutput = WalletTransactionSuccessOutput | IFailedTransactionOutput;
49
49
  export type CreateAccountType = 'RegularAccountImmutableCode' | 'RegularAccountUpdatableCode';
50
- export type CreateAccountStorageMode = 'private' | 'public' | 'network';
50
+ export type CreateAccountStorageMode = 'private' | 'public';
51
51
  export interface CreateAccountParams {
52
52
  accountType?: CreateAccountType;
53
53
  storageMode?: CreateAccountStorageMode;
@@ -6,4 +6,4 @@
6
6
 
7
7
  # Type Alias: CreateAccountStorageMode
8
8
 
9
- > **CreateAccountStorageMode** = `"private"` \| `"public"` \| `"network"`
9
+ > **CreateAccountStorageMode** = `"private"` \| `"public"`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miden-sdk/miden-wallet-adapter-base",
3
- "version": "0.14.3",
3
+ "version": "0.15.1",
4
4
  "description": "Core infrastructure for connecting Miden-compatible wallets to your dApp.",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/types.ts CHANGED
@@ -72,7 +72,7 @@ export type CreateAccountType =
72
72
  | 'RegularAccountImmutableCode'
73
73
  | 'RegularAccountUpdatableCode';
74
74
 
75
- export type CreateAccountStorageMode = 'private' | 'public' | 'network';
75
+ export type CreateAccountStorageMode = 'private' | 'public';
76
76
 
77
77
  export interface CreateAccountParams {
78
78
  accountType?: CreateAccountType;