@aztec/ethereum 3.0.0-nightly.20251211 → 3.0.0-nightly.20251212

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.
@@ -94,7 +94,10 @@ import { EthCheatCodes } from './eth_cheat_codes.js';
94
94
  silent: true,
95
95
  resetBlockInterval: true
96
96
  });
97
- this.logger.warn(`Warped to epoch ${epoch}`);
97
+ this.logger.warn(`Warped to epoch ${epoch}`, {
98
+ offset: opts.offset,
99
+ timestamp
100
+ });
98
101
  } catch (err) {
99
102
  this.logger.warn(`Warp to epoch ${epoch} failed: ${err}`);
100
103
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/ethereum",
3
- "version": "3.0.0-nightly.20251211",
3
+ "version": "3.0.0-nightly.20251212",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./account": "./dest/account.js",
@@ -44,10 +44,10 @@
44
44
  "../package.common.json"
45
45
  ],
46
46
  "dependencies": {
47
- "@aztec/blob-lib": "3.0.0-nightly.20251211",
48
- "@aztec/constants": "3.0.0-nightly.20251211",
49
- "@aztec/foundation": "3.0.0-nightly.20251211",
50
- "@aztec/l1-artifacts": "3.0.0-nightly.20251211",
47
+ "@aztec/blob-lib": "3.0.0-nightly.20251212",
48
+ "@aztec/constants": "3.0.0-nightly.20251212",
49
+ "@aztec/foundation": "3.0.0-nightly.20251212",
50
+ "@aztec/l1-artifacts": "3.0.0-nightly.20251212",
51
51
  "@viem/anvil": "^0.0.10",
52
52
  "dotenv": "^16.0.3",
53
53
  "lodash.chunk": "^4.2.0",
@@ -128,7 +128,7 @@ export class RollupCheatCodes {
128
128
  const timestamp = (await this.rollup.read.getTimestampForSlot([BigInt(slotNumber)])) + BigInt(opts.offset ?? 0);
129
129
  try {
130
130
  await this.ethCheatCodes.warp(Number(timestamp), { ...opts, silent: true, resetBlockInterval: true });
131
- this.logger.warn(`Warped to epoch ${epoch}`);
131
+ this.logger.warn(`Warped to epoch ${epoch}`, { offset: opts.offset, timestamp });
132
132
  } catch (err) {
133
133
  this.logger.warn(`Warp to epoch ${epoch} failed: ${err}`);
134
134
  }