@aztec/wallets 5.0.0-nightly.20260512 → 5.0.0-nightly.20260514

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.
@@ -42,7 +42,7 @@ export class BrowserEmbeddedWallet extends EmbeddedWallet {
42
42
  const walletDBStore = options.walletDb?.store ?? (options.ephemeral ? await openTmpStore(true) : await createStore('wallet_data', {
43
43
  dataDirectory: `wallet_data_${l1Contracts.rollupAddress}`,
44
44
  dataStoreMapSizeKb: pxeConfig.dataStoreMapSizeKb,
45
- l1Contracts
45
+ rollupAddress: l1Contracts.rollupAddress
46
46
  }, 1, rootLogger.createChild('wallet:data')));
47
47
  const walletDB = new WalletDB(walletDBStore, rootLogger.createChild('wallet:db').info);
48
48
  const wallet = new this(pxe, aztecNode, walletDB, new LazyAccountContractsProvider(), rootLogger);
@@ -42,7 +42,7 @@ export class NodeEmbeddedWallet extends EmbeddedWallet {
42
42
  const walletDBStore = options.walletDb?.store ?? (options.ephemeral ? await openTmpStore(`wallet_data_${l1Contracts.rollupAddress}`, true, undefined, undefined, rootLogger.createChild('wallet:data').getBindings()) : await createStore('wallet_data', 1, {
43
43
  dataDirectory: `wallet_data_${l1Contracts.rollupAddress}`,
44
44
  dataStoreMapSizeKb: pxeConfig.dataStoreMapSizeKb,
45
- l1Contracts
45
+ rollupAddress: l1Contracts.rollupAddress
46
46
  }, rootLogger.createChild('wallet:data').getBindings()));
47
47
  const walletDB = new WalletDB(walletDBStore, rootLogger.createChild('wallet:db').info);
48
48
  const wallet = new this(pxe, aztecNode, walletDB, new BundleAccountContractsProvider(), rootLogger);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aztec/wallets",
3
3
  "homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/wallets",
4
- "version": "5.0.0-nightly.20260512",
4
+ "version": "5.0.0-nightly.20260514",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  "./embedded": {
@@ -27,15 +27,15 @@
27
27
  "../package.common.json"
28
28
  ],
29
29
  "dependencies": {
30
- "@aztec/accounts": "5.0.0-nightly.20260512",
31
- "@aztec/aztec.js": "5.0.0-nightly.20260512",
32
- "@aztec/entrypoints": "5.0.0-nightly.20260512",
33
- "@aztec/foundation": "5.0.0-nightly.20260512",
34
- "@aztec/kv-store": "5.0.0-nightly.20260512",
35
- "@aztec/protocol-contracts": "5.0.0-nightly.20260512",
36
- "@aztec/pxe": "5.0.0-nightly.20260512",
37
- "@aztec/stdlib": "5.0.0-nightly.20260512",
38
- "@aztec/wallet-sdk": "5.0.0-nightly.20260512"
30
+ "@aztec/accounts": "5.0.0-nightly.20260514",
31
+ "@aztec/aztec.js": "5.0.0-nightly.20260514",
32
+ "@aztec/entrypoints": "5.0.0-nightly.20260514",
33
+ "@aztec/foundation": "5.0.0-nightly.20260514",
34
+ "@aztec/kv-store": "5.0.0-nightly.20260514",
35
+ "@aztec/protocol-contracts": "5.0.0-nightly.20260514",
36
+ "@aztec/pxe": "5.0.0-nightly.20260514",
37
+ "@aztec/stdlib": "5.0.0-nightly.20260514",
38
+ "@aztec/wallet-sdk": "5.0.0-nightly.20260514"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@jest/globals": "^30.0.0",
@@ -62,7 +62,7 @@ export class BrowserEmbeddedWallet extends EmbeddedWallet {
62
62
  {
63
63
  dataDirectory: `wallet_data_${l1Contracts.rollupAddress}`,
64
64
  dataStoreMapSizeKb: pxeConfig.dataStoreMapSizeKb,
65
- l1Contracts,
65
+ rollupAddress: l1Contracts.rollupAddress,
66
66
  },
67
67
  1,
68
68
  rootLogger.createChild('wallet:data'),
@@ -70,7 +70,7 @@ export class NodeEmbeddedWallet extends EmbeddedWallet {
70
70
  {
71
71
  dataDirectory: `wallet_data_${l1Contracts.rollupAddress}`,
72
72
  dataStoreMapSizeKb: pxeConfig.dataStoreMapSizeKb,
73
- l1Contracts,
73
+ rollupAddress: l1Contracts.rollupAddress,
74
74
  },
75
75
  rootLogger.createChild('wallet:data').getBindings(),
76
76
  ));