@aztec/aztec 0.0.1-commit.04852196a → 0.0.1-commit.04d373f
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/dest/bin/index.js +1 -1
- package/dest/cli/aztec_start_action.d.ts +1 -1
- package/dest/cli/aztec_start_action.d.ts.map +1 -1
- package/dest/cli/aztec_start_action.js +27 -12
- package/dest/cli/aztec_start_options.d.ts +2 -2
- package/dest/cli/aztec_start_options.d.ts.map +1 -1
- package/dest/cli/aztec_start_options.js +14 -14
- package/dest/cli/cmds/compile.d.ts +1 -1
- package/dest/cli/cmds/compile.d.ts.map +1 -1
- package/dest/cli/cmds/compile.js +10 -9
- package/dest/cli/cmds/profile.d.ts +1 -1
- package/dest/cli/cmds/profile.d.ts.map +1 -1
- package/dest/cli/cmds/profile.js +1 -1
- package/dest/cli/cmds/profile_flamegraph.d.ts +1 -1
- package/dest/cli/cmds/profile_flamegraph.d.ts.map +1 -1
- package/dest/cli/cmds/profile_flamegraph.js +2 -1
- package/dest/cli/cmds/profile_gates.d.ts +2 -2
- package/dest/cli/cmds/profile_gates.d.ts.map +1 -1
- package/dest/cli/cmds/profile_gates.js +23 -4
- package/dest/cli/cmds/standby.d.ts +12 -9
- package/dest/cli/cmds/standby.d.ts.map +1 -1
- package/dest/cli/cmds/standby.js +36 -17
- package/dest/cli/cmds/start_bot.d.ts +1 -1
- package/dest/cli/cmds/start_bot.d.ts.map +1 -1
- package/dest/cli/cmds/start_bot.js +3 -3
- package/dest/cli/cmds/start_node.d.ts +1 -1
- package/dest/cli/cmds/start_node.d.ts.map +1 -1
- package/dest/cli/cmds/start_node.js +15 -25
- package/dest/cli/cmds/start_prover_agent.d.ts +1 -1
- package/dest/cli/cmds/start_prover_agent.d.ts.map +1 -1
- package/dest/cli/cmds/start_prover_agent.js +5 -17
- package/dest/cli/cmds/start_prover_broker.d.ts +1 -1
- package/dest/cli/cmds/start_prover_broker.d.ts.map +1 -1
- package/dest/cli/cmds/start_prover_broker.js +17 -8
- package/dest/cli/cmds/start_txe.d.ts +2 -2
- package/dest/cli/cmds/start_txe.d.ts.map +1 -1
- package/dest/cli/cmds/start_txe.js +6 -5
- package/dest/cli/cmds/utils/collect_crate_dirs.d.ts +21 -0
- package/dest/cli/cmds/utils/collect_crate_dirs.d.ts.map +1 -0
- package/dest/cli/cmds/utils/collect_crate_dirs.js +114 -0
- package/dest/cli/cmds/utils/needs_recompile.d.ts +1 -1
- package/dest/cli/cmds/utils/needs_recompile.d.ts.map +1 -1
- package/dest/cli/cmds/utils/needs_recompile.js +9 -43
- package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.d.ts +4 -0
- package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.d.ts.map +1 -0
- package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.js +61 -0
- package/dest/cli/util.js +7 -5
- package/dest/local-network/auth_registry.d.ts +4 -0
- package/dest/local-network/auth_registry.d.ts.map +1 -0
- package/dest/local-network/auth_registry.js +15 -0
- package/dest/local-network/banana_fpc.d.ts +1 -1
- package/dest/local-network/banana_fpc.d.ts.map +1 -1
- package/dest/local-network/banana_fpc.js +8 -6
- package/dest/local-network/local-network.d.ts +5 -28
- package/dest/local-network/local-network.d.ts.map +1 -1
- package/dest/local-network/local-network.js +26 -12
- package/dest/testing/anvil_test_watcher.d.ts +15 -3
- package/dest/testing/anvil_test_watcher.d.ts.map +1 -1
- package/dest/testing/anvil_test_watcher.js +68 -14
- package/dest/testing/cheat_codes.d.ts +18 -17
- package/dest/testing/cheat_codes.d.ts.map +1 -1
- package/dest/testing/cheat_codes.js +72 -36
- package/dest/testing/epoch_test_settler.d.ts +1 -1
- package/dest/testing/epoch_test_settler.d.ts.map +1 -1
- package/dest/testing/epoch_test_settler.js +9 -8
- package/dest/testing/index.d.ts +2 -2
- package/dest/testing/index.d.ts.map +1 -1
- package/package.json +34 -34
- package/scripts/add_crate.sh +11 -60
- package/scripts/aztec.sh +6 -2
- package/scripts/init.sh +5 -5
- package/scripts/new.sh +2 -2
- package/scripts/setup_workspace.sh +3 -2
- package/scripts/templates/blank/contract/Nargo.toml +6 -0
- package/scripts/templates/blank/contract/src/main.nr +10 -0
- package/scripts/templates/blank/test/Nargo.toml +7 -0
- package/scripts/templates/blank/test/src/lib.nr +11 -0
- package/scripts/templates/counter/contract/Nargo.toml +7 -0
- package/scripts/templates/counter/contract/src/main.nr +48 -0
- package/scripts/templates/counter/test/Nargo.toml +7 -0
- package/scripts/templates/counter/test/src/lib.nr +32 -0
- package/src/bin/index.ts +1 -1
- package/src/cli/aztec_start_action.ts +16 -12
- package/src/cli/aztec_start_options.ts +21 -22
- package/src/cli/cmds/compile.ts +12 -10
- package/src/cli/cmds/profile.ts +2 -1
- package/src/cli/cmds/profile_flamegraph.ts +2 -1
- package/src/cli/cmds/profile_gates.ts +22 -5
- package/src/cli/cmds/standby.ts +41 -20
- package/src/cli/cmds/start_bot.ts +3 -5
- package/src/cli/cmds/start_node.ts +20 -17
- package/src/cli/cmds/start_prover_agent.ts +5 -8
- package/src/cli/cmds/start_prover_broker.ts +17 -11
- package/src/cli/cmds/start_txe.ts +7 -5
- package/src/cli/cmds/utils/collect_crate_dirs.ts +118 -0
- package/src/cli/cmds/utils/needs_recompile.ts +8 -49
- package/src/cli/cmds/utils/warn_if_aztec_version_mismatch.ts +76 -0
- package/src/cli/util.ts +7 -7
- package/src/local-network/auth_registry.ts +14 -0
- package/src/local-network/banana_fpc.ts +4 -7
- package/src/local-network/local-network.ts +30 -11
- package/src/testing/anvil_test_watcher.ts +76 -13
- package/src/testing/cheat_codes.ts +92 -39
- package/src/testing/epoch_test_settler.ts +6 -8
- package/src/testing/index.ts +1 -1
- package/dest/cli/cmds/start_archiver.d.ts +0 -9
- package/dest/cli/cmds/start_archiver.d.ts.map +0 -1
- package/dest/cli/cmds/start_archiver.js +0 -48
- package/src/cli/cmds/start_archiver.ts +0 -50
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import TOML from '@iarna/toml';
|
|
2
|
+
import { existsSync } from 'fs';
|
|
3
|
+
import { mkdir, readFile, stat } from 'fs/promises';
|
|
4
|
+
import { homedir } from 'os';
|
|
5
|
+
import { dirname, join, resolve } from 'path';
|
|
6
|
+
|
|
7
|
+
import { run } from './spawn.js';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Recursively collects crate directories starting from startCrateDir by following dependencies declared in Nargo.toml
|
|
11
|
+
* files.
|
|
12
|
+
*
|
|
13
|
+
* When `skipGitDeps` is false (default), git-based deps are followed and fetched into the nargo cache
|
|
14
|
+
* (`$HOME/nargo/<domain>/<repo-path>/<tag>`) if not already present.
|
|
15
|
+
*
|
|
16
|
+
* When `skipGitDeps` is true, git-based deps are ignored entirely.
|
|
17
|
+
*/
|
|
18
|
+
export async function collectCrateDirs(startCrateDir: string, opts?: { skipGitDeps?: boolean }): Promise<string[]> {
|
|
19
|
+
const { skipGitDeps = false } = opts ?? {};
|
|
20
|
+
const visited = new Set<string>();
|
|
21
|
+
|
|
22
|
+
async function visit(crateDir: string): Promise<void> {
|
|
23
|
+
const absDir = resolve(crateDir);
|
|
24
|
+
if (visited.has(absDir)) {
|
|
25
|
+
return;
|
|
26
|
+
}
|
|
27
|
+
visited.add(absDir);
|
|
28
|
+
|
|
29
|
+
const tomlPath = join(absDir, 'Nargo.toml');
|
|
30
|
+
const content = await readFile(tomlPath, 'utf-8').catch(() => {
|
|
31
|
+
throw new Error(`Incorrectly defined dependency. Nargo.toml not found in ${absDir}`);
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
const parsed = TOML.parse(content) as Record<string, any>;
|
|
35
|
+
const members = (parsed.workspace as Record<string, any>)?.members as string[] | undefined;
|
|
36
|
+
|
|
37
|
+
// A Nargo.toml is either a workspace root (has workspace.members) or a single crate (has dependencies).
|
|
38
|
+
if (Array.isArray(members)) {
|
|
39
|
+
// The crate is a workspace root and has members defined so we visit the members
|
|
40
|
+
for (const member of members) {
|
|
41
|
+
await visit(resolve(absDir, member));
|
|
42
|
+
}
|
|
43
|
+
} else {
|
|
44
|
+
// Single crate — follow its deps
|
|
45
|
+
const deps = (parsed.dependencies as Record<string, any>) ?? {};
|
|
46
|
+
for (const dep of Object.values(deps)) {
|
|
47
|
+
if (!dep || typeof dep !== 'object') {
|
|
48
|
+
continue;
|
|
49
|
+
}
|
|
50
|
+
if (typeof dep.path === 'string') {
|
|
51
|
+
// Dependency contains "path" hence it's a local dependency. We just check it's a real directory and then we
|
|
52
|
+
// recursively search through it
|
|
53
|
+
const depPath = resolve(absDir, dep.path);
|
|
54
|
+
const s = await stat(depPath);
|
|
55
|
+
if (!s.isDirectory()) {
|
|
56
|
+
throw new Error(
|
|
57
|
+
`Dependency path "${dep.path}" in ${tomlPath} resolves to ${depPath} which is not a directory`,
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
await visit(depPath);
|
|
61
|
+
} else if (!skipGitDeps && typeof dep.git === 'string' && typeof dep.tag === 'string') {
|
|
62
|
+
// Dependency contains "git" hence it's a git dependency. We ensure it has been fetched and fetch it if
|
|
63
|
+
// it's not the case and then we recursively search through it.
|
|
64
|
+
await fetchAndVisit(dep.git, dep.tag, dep.directory);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
async function fetchAndVisit(gitUrl: string, tag: string, directory?: string): Promise<void> {
|
|
71
|
+
// `directory` is set when the dep lives in a subdirectory of a repository, e.g.:
|
|
72
|
+
// aztec = { git = "https://github.com/AztecProtocol/aztec-packages", tag = "v0.82.0",
|
|
73
|
+
// directory = "noir-projects/aztec-nr/aztec" }
|
|
74
|
+
// In that case nargo clones the whole repo and the crate root is <cachePath>/<directory>.
|
|
75
|
+
const cachePath = nargoGitDepPath(gitUrl, tag);
|
|
76
|
+
const crateDir = directory ? join(cachePath, directory) : cachePath;
|
|
77
|
+
await ensureGitDepCached(gitUrl, tag, cachePath);
|
|
78
|
+
await visit(crateDir);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
await visit(startCrateDir);
|
|
82
|
+
return [...visited];
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Computes the local nargo cache path for a git dependency, mirroring nargo's own `git_dep_location` function.
|
|
87
|
+
* Path format: `$HOME/nargo/<domain>/<repo-path>/<tag>`
|
|
88
|
+
* e.g. `~/nargo/github.com/AztecProtocol/aztec-packages/v0.82.0`
|
|
89
|
+
*
|
|
90
|
+
* Source: noir/noir-repo/tooling/nargo_toml/src/git.rs
|
|
91
|
+
*/
|
|
92
|
+
export function nargoGitDepPath(gitUrl: string, tag: string): string {
|
|
93
|
+
const url = new URL(gitUrl);
|
|
94
|
+
const domain = url.hostname;
|
|
95
|
+
const repoPath = url.pathname.replace(/^\//, '');
|
|
96
|
+
return join(process.env.HOME ?? homedir(), 'nargo', domain, repoPath, tag);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Ensures a git dep is present in the nargo cache, cloning it if it isn't. Mirrors nargo's `clone_git_repo`.
|
|
101
|
+
* If cloning fails (e.g. no network), throws with a message suggesting `nargo check` to prime the cache.
|
|
102
|
+
*
|
|
103
|
+
* Source: noir/noir-repo/tooling/nargo_toml/src/git.rs
|
|
104
|
+
*/
|
|
105
|
+
async function ensureGitDepCached(gitUrl: string, tag: string, cachePath: string): Promise<void> {
|
|
106
|
+
if (existsSync(cachePath)) {
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
await mkdir(dirname(cachePath), { recursive: true });
|
|
110
|
+
try {
|
|
111
|
+
await run('git', ['-c', 'advice.detachedHead=false', 'clone', '--depth', '1', '--branch', tag, gitUrl, cachePath]);
|
|
112
|
+
} catch (err: any) {
|
|
113
|
+
throw new Error(
|
|
114
|
+
`Failed to fetch git dependency ${gitUrl}@${tag}: ${err?.message ?? err}.\n` +
|
|
115
|
+
`Try running \`nargo check\` first to prime the dependency cache.`,
|
|
116
|
+
);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
|
|
1
|
+
import { readdir, stat } from 'fs/promises';
|
|
2
|
+
import { join } from 'path';
|
|
3
|
+
|
|
4
|
+
import { collectCrateDirs } from './collect_crate_dirs.js';
|
|
4
5
|
|
|
5
6
|
/**
|
|
6
7
|
* Returns true if recompilation is needed: either no artifacts exist in target/ or any .nr or Nargo.toml source file
|
|
@@ -16,7 +17,10 @@ export async function needsRecompile(): Promise<boolean> {
|
|
|
16
17
|
return true;
|
|
17
18
|
}
|
|
18
19
|
|
|
19
|
-
|
|
20
|
+
// Git deps are pinned to a specific tag in Nargo.toml and nargo always fetches an exact tag, so their contents never
|
|
21
|
+
// change without Nargo.toml itself changing — and Nargo.toml is already tracked as a source file. Hence we can
|
|
22
|
+
// safely ignore checking source files of git deps.
|
|
23
|
+
const crateDirs = await collectCrateDirs('.', { skipGitDeps: true });
|
|
20
24
|
return hasNewerSourceFile(crateDirs, oldestArtifactMs);
|
|
21
25
|
}
|
|
22
26
|
|
|
@@ -49,51 +53,6 @@ async function getOldestArtifactModificationTime(targetDir: string): Promise<num
|
|
|
49
53
|
return oldest;
|
|
50
54
|
}
|
|
51
55
|
|
|
52
|
-
/**
|
|
53
|
-
* Recursively collects crate directories starting from startCrateDir by following path-based dependencies declared in
|
|
54
|
-
* Nargo.toml files. Git-based deps are ignored (they only change when Nargo.toml itself is modified since the deps are
|
|
55
|
-
* tagged).
|
|
56
|
-
*/
|
|
57
|
-
async function collectCrateDirs(startCrateDir: string): Promise<string[]> {
|
|
58
|
-
// We have a set of visited dirs we check against when entering a new dir because we could stumble upon a directory
|
|
59
|
-
// multiple times in case multiple deps shared a dep (e.g. dep A and dep B both sharing dep C).
|
|
60
|
-
const visited = new Set<string>();
|
|
61
|
-
|
|
62
|
-
async function visit(crateDir: string): Promise<void> {
|
|
63
|
-
const absDir = resolve(crateDir);
|
|
64
|
-
if (visited.has(absDir)) {
|
|
65
|
-
return;
|
|
66
|
-
}
|
|
67
|
-
visited.add(absDir);
|
|
68
|
-
|
|
69
|
-
// Every dep is its own crate and every crate needs to have Nargo.toml defined in the root so we try to load it and
|
|
70
|
-
// error out if it's not the case.
|
|
71
|
-
const tomlPath = join(absDir, 'Nargo.toml');
|
|
72
|
-
const content = await readFile(tomlPath, 'utf-8').catch(() => {
|
|
73
|
-
throw new Error(`Incorrectly defined dependency. Nargo.toml not found in ${absDir}`);
|
|
74
|
-
});
|
|
75
|
-
|
|
76
|
-
// We parse and iterate over the dependencies
|
|
77
|
-
const parsed = TOML.parse(content) as Record<string, any>;
|
|
78
|
-
const deps = (parsed.dependencies as Record<string, any>) ?? {};
|
|
79
|
-
for (const dep of Object.values(deps)) {
|
|
80
|
-
if (dep && typeof dep === 'object' && typeof dep.path === 'string') {
|
|
81
|
-
const depPath = resolve(absDir, dep.path);
|
|
82
|
-
const s = await stat(depPath);
|
|
83
|
-
if (!s.isDirectory()) {
|
|
84
|
-
throw new Error(
|
|
85
|
-
`Dependency path "${dep.path}" in ${tomlPath} resolves to ${depPath} which is not a directory`,
|
|
86
|
-
);
|
|
87
|
-
}
|
|
88
|
-
await visit(depPath);
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
await visit(startCrateDir);
|
|
94
|
-
return [...visited];
|
|
95
|
-
}
|
|
96
|
-
|
|
97
56
|
/**
|
|
98
57
|
* Walks crate dirs looking for .nr and Nargo.toml files newer than thresholdMs. Short-circuits on the first match.
|
|
99
58
|
*/
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import type { LogFn } from '@aztec/foundation/log';
|
|
2
|
+
import { DEV_VERSION, getPackageVersion } from '@aztec/stdlib/update-checker';
|
|
3
|
+
|
|
4
|
+
import TOML from '@iarna/toml';
|
|
5
|
+
import { readFile } from 'fs/promises';
|
|
6
|
+
import { join } from 'path';
|
|
7
|
+
|
|
8
|
+
import { collectCrateDirs } from './collect_crate_dirs.js';
|
|
9
|
+
|
|
10
|
+
/** Returns true if the given git URL points to the AztecProtocol/aztec-nr repository. */
|
|
11
|
+
function isAztecNrGitUrl(gitUrl: string): boolean {
|
|
12
|
+
let url: URL;
|
|
13
|
+
try {
|
|
14
|
+
url = new URL(gitUrl);
|
|
15
|
+
} catch {
|
|
16
|
+
return false;
|
|
17
|
+
}
|
|
18
|
+
if (url.hostname !== 'github.com') {
|
|
19
|
+
return false;
|
|
20
|
+
}
|
|
21
|
+
const repoPath = url.pathname
|
|
22
|
+
.replace(/^\//, '')
|
|
23
|
+
.replace(/\.git$/, '')
|
|
24
|
+
.replace(/\/$/, '');
|
|
25
|
+
return repoPath === 'AztecProtocol/aztec-nr';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/** Warns if any aztec-nr git dependency in a crate's Nargo.toml has a tag that doesn't match the CLI version. */
|
|
29
|
+
export async function warnIfAztecVersionMismatch(log: LogFn, cliVersion?: string): Promise<void> {
|
|
30
|
+
const version = cliVersion ?? getPackageVersion();
|
|
31
|
+
if (version === DEV_VERSION) {
|
|
32
|
+
return;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
const expectedTag = `v${version}`;
|
|
36
|
+
const mismatches: { file: string; depName: string; tag: string }[] = [];
|
|
37
|
+
|
|
38
|
+
const crateDirs = await collectCrateDirs('.', { skipGitDeps: true });
|
|
39
|
+
|
|
40
|
+
for (const dir of crateDirs) {
|
|
41
|
+
const tomlPath = join(dir, 'Nargo.toml');
|
|
42
|
+
let content: string;
|
|
43
|
+
try {
|
|
44
|
+
content = await readFile(tomlPath, 'utf-8');
|
|
45
|
+
} catch {
|
|
46
|
+
continue;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const parsed = TOML.parse(content) as Record<string, any>;
|
|
50
|
+
const deps = (parsed.dependencies as Record<string, any>) ?? {};
|
|
51
|
+
|
|
52
|
+
for (const [depName, dep] of Object.entries(deps)) {
|
|
53
|
+
// Skip non-object deps (e.g. malformed entries) and anything that isn't a tagged git dep.
|
|
54
|
+
if (!dep || typeof dep !== 'object' || typeof dep.git !== 'string' || typeof dep.tag !== 'string') {
|
|
55
|
+
continue;
|
|
56
|
+
}
|
|
57
|
+
// Only flag deps that are sourced from the aztec-nr repo.
|
|
58
|
+
if (!isAztecNrGitUrl(dep.git)) {
|
|
59
|
+
continue;
|
|
60
|
+
}
|
|
61
|
+
if (dep.tag !== expectedTag) {
|
|
62
|
+
mismatches.push({ file: tomlPath, depName, tag: dep.tag });
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
if (mismatches.length > 0) {
|
|
68
|
+
const details = mismatches.map(m => ` ${m.file} — ${m.depName} (${m.tag})`).join('\n');
|
|
69
|
+
log(
|
|
70
|
+
`WARNING: Aztec dependency version mismatch detected.\n` +
|
|
71
|
+
`The following aztec-nr dependencies do not match the CLI version (${expectedTag}):\n` +
|
|
72
|
+
`${details}\n\n` +
|
|
73
|
+
`See https://docs.aztec.network/errors/9 for how to update your dependencies.`,
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
}
|
package/src/cli/util.ts
CHANGED
|
@@ -82,17 +82,17 @@ export async function createAccountLogs(accountManagers: AccountManager[], walle
|
|
|
82
82
|
accountLogStrings.push(` Address: ${completeAddress.address.toString()}\n`);
|
|
83
83
|
accountLogStrings.push(` Partial Address: ${completeAddress.partialAddress.toString()}\n`);
|
|
84
84
|
accountLogStrings.push(` Secret Key: ${account.getSecretKey().toString()}\n`);
|
|
85
|
+
accountLogStrings.push(` Master nullifier public key hash: ${completeAddress.publicKeys.npkMHash.toString()}\n`);
|
|
86
|
+
accountLogStrings.push(` Master incoming viewing public key: ${completeAddress.publicKeys.ivpkM.toString()}\n\n`);
|
|
85
87
|
accountLogStrings.push(
|
|
86
|
-
` Master
|
|
88
|
+
` Master outgoing viewing public key hash: ${completeAddress.publicKeys.ovpkMHash.toString()}\n\n`,
|
|
87
89
|
);
|
|
90
|
+
accountLogStrings.push(` Master tagging public key hash: ${completeAddress.publicKeys.tpkMHash.toString()}\n\n`);
|
|
88
91
|
accountLogStrings.push(
|
|
89
|
-
` Master
|
|
92
|
+
` Master message-signing public key hash: ${completeAddress.publicKeys.mspkMHash.toString()}\n\n`,
|
|
90
93
|
);
|
|
91
94
|
accountLogStrings.push(
|
|
92
|
-
` Master
|
|
93
|
-
);
|
|
94
|
-
accountLogStrings.push(
|
|
95
|
-
` Master tagging public key: ${completeAddress.publicKeys.masterTaggingPublicKey.toString()}\n\n`,
|
|
95
|
+
` Master fallback public key hash: ${completeAddress.publicKeys.fbpkMHash.toString()}\n\n`,
|
|
96
96
|
);
|
|
97
97
|
}
|
|
98
98
|
}
|
|
@@ -311,7 +311,7 @@ export async function setupVersionChecker(
|
|
|
311
311
|
const checks: Array<VersionCheck> = [];
|
|
312
312
|
checks.push({
|
|
313
313
|
name: 'node',
|
|
314
|
-
currentVersion: getPackageVersion()
|
|
314
|
+
currentVersion: getPackageVersion(),
|
|
315
315
|
getLatestVersion: async () => {
|
|
316
316
|
const cfg = await getNetworkConfig(network, cacheDir);
|
|
317
317
|
return cfg?.nodeVersion;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { publishContractClass, publishInstance } from '@aztec/aztec.js/deployment';
|
|
2
|
+
import type { Wallet } from '@aztec/aztec.js/wallet';
|
|
3
|
+
import { AuthRegistryArtifact, getStandardAuthRegistry } from '@aztec/standard-contracts/auth-registry';
|
|
4
|
+
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
5
|
+
|
|
6
|
+
export async function publishStandardAuthRegistry(wallet: Wallet, from: AztecAddress): Promise<void> {
|
|
7
|
+
const { instance, contractClass } = await getStandardAuthRegistry();
|
|
8
|
+
if (!(await wallet.getContractClassMetadata(contractClass.id)).isContractClassPubliclyRegistered) {
|
|
9
|
+
await (await publishContractClass(wallet, AuthRegistryArtifact)).send({ from });
|
|
10
|
+
}
|
|
11
|
+
if (!(await wallet.getContractMetadata(instance.address)).isContractPublished) {
|
|
12
|
+
await publishInstance(wallet, instance).send({ from });
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -49,15 +49,12 @@ export async function setupBananaFPC(initialAccounts: InitialAccountData[], wall
|
|
|
49
49
|
const bananaCoinAddress = await getBananaCoinAddress(initialAccounts);
|
|
50
50
|
const admin = getBananaAdmin(initialAccounts);
|
|
51
51
|
const [{ contract: bananaCoin }, { contract: fpc }] = await Promise.all([
|
|
52
|
-
TokenContract.deploy(wallet, admin, bananaCoinArgs.name, bananaCoinArgs.symbol, bananaCoinArgs.decimal
|
|
53
|
-
|
|
54
|
-
contractAddressSalt: BANANA_COIN_SALT,
|
|
52
|
+
TokenContract.deploy(wallet, admin, bananaCoinArgs.name, bananaCoinArgs.symbol, bananaCoinArgs.decimal, {
|
|
53
|
+
salt: BANANA_COIN_SALT,
|
|
55
54
|
universalDeploy: true,
|
|
56
|
-
}),
|
|
57
|
-
FPCContract.deploy(wallet, bananaCoinAddress, admin).send({
|
|
55
|
+
}).send({ from: admin }),
|
|
56
|
+
FPCContract.deploy(wallet, bananaCoinAddress, admin, { salt: BANANA_FPC_SALT, universalDeploy: true }).send({
|
|
58
57
|
from: admin,
|
|
59
|
-
contractAddressSalt: BANANA_FPC_SALT,
|
|
60
|
-
universalDeploy: true,
|
|
61
58
|
}),
|
|
62
59
|
]);
|
|
63
60
|
|
|
@@ -11,6 +11,7 @@ import { waitForPublicClient } from '@aztec/ethereum/client';
|
|
|
11
11
|
import { getL1ContractsConfigEnvVars } from '@aztec/ethereum/config';
|
|
12
12
|
import { NULL_KEY } from '@aztec/ethereum/constants';
|
|
13
13
|
import { deployAztecL1Contracts } from '@aztec/ethereum/deploy-aztec-l1-contracts';
|
|
14
|
+
import type { L1ContractAddresses } from '@aztec/ethereum/l1-contract-addresses';
|
|
14
15
|
import { EthCheatCodes } from '@aztec/ethereum/test';
|
|
15
16
|
import { SecretValue } from '@aztec/foundation/config';
|
|
16
17
|
import { EthAddress } from '@aztec/foundation/eth-address';
|
|
@@ -21,7 +22,7 @@ import { protocolContractsHash } from '@aztec/protocol-contracts';
|
|
|
21
22
|
import { SequencerState } from '@aztec/sequencer-client';
|
|
22
23
|
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
23
24
|
import type { ProvingJobBroker } from '@aztec/stdlib/interfaces/server';
|
|
24
|
-
import type {
|
|
25
|
+
import type { GenesisData } from '@aztec/stdlib/world-state';
|
|
25
26
|
import {
|
|
26
27
|
type TelemetryClient,
|
|
27
28
|
getConfigEnvVars as getTelemetryClientConfig,
|
|
@@ -40,6 +41,7 @@ import { DefaultMnemonic } from '../mnemonic.js';
|
|
|
40
41
|
import { AnvilTestWatcher } from '../testing/anvil_test_watcher.js';
|
|
41
42
|
import { EpochTestSettler } from '../testing/epoch_test_settler.js';
|
|
42
43
|
import { getTokenAllowedSetupFunctions } from '../testing/token_allowed_setup.js';
|
|
44
|
+
import { publishStandardAuthRegistry } from './auth_registry.js';
|
|
43
45
|
import { getBananaFPCAddress, setupBananaFPC } from './banana_fpc.js';
|
|
44
46
|
import { getSponsoredFPCAddress } from './sponsored_fpc.js';
|
|
45
47
|
|
|
@@ -59,7 +61,7 @@ export async function deployContractsToL1(
|
|
|
59
61
|
genesisArchiveRoot?: Fr;
|
|
60
62
|
feeJuicePortalInitialBalance?: bigint;
|
|
61
63
|
} = {},
|
|
62
|
-
) {
|
|
64
|
+
): Promise<L1ContractAddresses> {
|
|
63
65
|
await waitForPublicClient(aztecNodeConfig);
|
|
64
66
|
|
|
65
67
|
const l1Contracts = await deployAztecL1Contracts(aztecNodeConfig.l1RpcUrls[0], privateKey, foundry.id, {
|
|
@@ -70,14 +72,14 @@ export async function deployContractsToL1(
|
|
|
70
72
|
genesisArchiveRoot: opts.genesisArchiveRoot ?? new Fr(GENESIS_ARCHIVE_ROOT),
|
|
71
73
|
feeJuicePortalInitialBalance: opts.feeJuicePortalInitialBalance,
|
|
72
74
|
aztecTargetCommitteeSize: 0, // no committee in local network
|
|
73
|
-
|
|
75
|
+
slasherEnabled: false, // no slashing in local network
|
|
74
76
|
realVerifier: false,
|
|
75
77
|
});
|
|
76
78
|
|
|
77
|
-
aztecNodeConfig
|
|
79
|
+
Object.assign(aztecNodeConfig, l1Contracts.l1ContractAddresses);
|
|
78
80
|
aztecNodeConfig.rollupVersion = l1Contracts.rollupVersion;
|
|
79
81
|
|
|
80
|
-
return
|
|
82
|
+
return l1Contracts.l1ContractAddresses;
|
|
81
83
|
}
|
|
82
84
|
|
|
83
85
|
/** Local network settings. */
|
|
@@ -151,7 +153,7 @@ export async function createLocalNetwork(config: Partial<LocalNetworkConfig> = {
|
|
|
151
153
|
...(initialAccounts.length ? [bananaFPC, sponsoredFPC] : []),
|
|
152
154
|
...prefundAddresses,
|
|
153
155
|
];
|
|
154
|
-
const { genesisArchiveRoot,
|
|
156
|
+
const { genesisArchiveRoot, genesis, fundingNeeded } = await getGenesisValues(fundedAddresses);
|
|
155
157
|
|
|
156
158
|
const dateProvider = new TestDateProvider();
|
|
157
159
|
|
|
@@ -190,7 +192,7 @@ export async function createLocalNetwork(config: Partial<LocalNetworkConfig> = {
|
|
|
190
192
|
const telemetry = await initTelemetryClient(getTelemetryClientConfig());
|
|
191
193
|
// Create a local blob client client inside the local network, no http connectivity
|
|
192
194
|
const blobClient = createBlobClient();
|
|
193
|
-
const node = await createAztecNode(aztecNodeConfig, { telemetry, blobClient, dateProvider }, {
|
|
195
|
+
const node = await createAztecNode(aztecNodeConfig, { telemetry, blobClient, dateProvider }, { genesis });
|
|
194
196
|
|
|
195
197
|
// Now that the node is up, let the watcher check for pending txs so it can skip unfilled slots faster when
|
|
196
198
|
// transactions are waiting in the mempool. Also let it check if the sequencer is actively building, to avoid
|
|
@@ -205,6 +207,21 @@ export async function createLocalNetwork(config: Partial<LocalNetworkConfig> = {
|
|
|
205
207
|
SequencerState.SYNCHRONIZING,
|
|
206
208
|
]);
|
|
207
209
|
watcher?.setIsSequencerBuilding(() => !idleStates.has(sequencer.getState()));
|
|
210
|
+
// Under proposer pipelining the L1 publish for slot N happens during wall-clock slot N,
|
|
211
|
+
// but the proposer for slot N has already built the checkpoint during slot N-1 and is
|
|
212
|
+
// waiting for L1 to advance. We need to fast-forward L1 to wake that wait — and the wait
|
|
213
|
+
// we have to break first is `waitForValidParentCheckpointOnL1`, which blocks the
|
|
214
|
+
// checkpoint_proposal_job's background submission task until the archiver has synced past
|
|
215
|
+
// the build slot. That wait happens *before* `PUBLISHING_CHECKPOINT` is set, so a hook on
|
|
216
|
+
// that state transition would be circular (L1 has to advance before the state we'd use to
|
|
217
|
+
// advance L1 fires). The earliest pre-wait signal is `block-proposed`, which the sequencer
|
|
218
|
+
// emits once each block is built. In sandbox single-block-per-slot mode this is
|
|
219
|
+
// effectively "checkpoint built", and the watcher warp is harmless if a subsequent
|
|
220
|
+
// assembly/validation/parent-wait step aborts: L1 just sits one slot ahead, which the
|
|
221
|
+
// cascade absorbs.
|
|
222
|
+
if (watcher) {
|
|
223
|
+
sequencer.on('block-proposed', ({ slot }) => watcher!.setProposedTargetSlot(Number(slot)));
|
|
224
|
+
}
|
|
208
225
|
}
|
|
209
226
|
|
|
210
227
|
let epochTestSettler: EpochTestSettler | undefined;
|
|
@@ -230,6 +247,9 @@ export async function createLocalNetwork(config: Partial<LocalNetworkConfig> = {
|
|
|
230
247
|
const accLogs = await createAccountLogs(accountManagers, wallet);
|
|
231
248
|
userLog(accLogs.join(''));
|
|
232
249
|
|
|
250
|
+
userLog('Publishing standard AuthRegistry contract...');
|
|
251
|
+
await publishStandardAuthRegistry(wallet, initialAccounts[0].address);
|
|
252
|
+
|
|
233
253
|
await setupBananaFPC(initialAccounts, wallet, userLog);
|
|
234
254
|
|
|
235
255
|
userLog(`SponsoredFPC: ${await getSponsoredFPCAddress()}`);
|
|
@@ -259,14 +279,13 @@ export async function createAztecNode(
|
|
|
259
279
|
dateProvider?: DateProvider;
|
|
260
280
|
proverBroker?: ProvingJobBroker;
|
|
261
281
|
} = {},
|
|
262
|
-
options: {
|
|
282
|
+
options: { genesis?: GenesisData } = {},
|
|
263
283
|
) {
|
|
264
284
|
// TODO(#12272): will clean this up. This is criminal.
|
|
265
|
-
|
|
285
|
+
// Not sure why this was ever done. Will be fixed in A-989, A-991, A-990.
|
|
266
286
|
const aztecNodeConfig: AztecNodeConfig = {
|
|
267
|
-
...
|
|
287
|
+
...getConfigEnvVars(),
|
|
268
288
|
...config,
|
|
269
|
-
l1Contracts: { ...l1Contracts, ...config.l1Contracts },
|
|
270
289
|
};
|
|
271
290
|
const node = await AztecNodeService.createAndSync(
|
|
272
291
|
aztecNodeConfig,
|
|
@@ -9,6 +9,11 @@ import { RollupAbi } from '@aztec/l1-artifacts/RollupAbi';
|
|
|
9
9
|
|
|
10
10
|
import { type GetContractReturnType, getAddress, getContract } from 'viem';
|
|
11
11
|
|
|
12
|
+
export type AnvilTestWatcherOpts = {
|
|
13
|
+
isLocalNetwork?: boolean;
|
|
14
|
+
isMarkingAsProven?: boolean;
|
|
15
|
+
};
|
|
16
|
+
|
|
12
17
|
/**
|
|
13
18
|
* Represents a watcher for a rollup contract.
|
|
14
19
|
*
|
|
@@ -17,7 +22,8 @@ import { type GetContractReturnType, getAddress, getContract } from 'viem';
|
|
|
17
22
|
* block within the slot. And if so, it will time travel into the next slot.
|
|
18
23
|
*/
|
|
19
24
|
export class AnvilTestWatcher {
|
|
20
|
-
private isLocalNetwork
|
|
25
|
+
private isLocalNetwork;
|
|
26
|
+
private isMarkingAsProven;
|
|
21
27
|
|
|
22
28
|
private rollup: GetContractReturnType<typeof RollupAbi, ViemClient>;
|
|
23
29
|
private rollupCheatCodes: RollupCheatCodes;
|
|
@@ -29,8 +35,6 @@ export class AnvilTestWatcher {
|
|
|
29
35
|
|
|
30
36
|
private logger: Logger = createLogger(`aztecjs:utils:watcher`);
|
|
31
37
|
|
|
32
|
-
private isMarkingAsProven = true;
|
|
33
|
-
|
|
34
38
|
// Optional callback to check if there are pending txs in the mempool.
|
|
35
39
|
private getPendingTxCount?: () => Promise<number>;
|
|
36
40
|
|
|
@@ -40,11 +44,18 @@ export class AnvilTestWatcher {
|
|
|
40
44
|
// Tracks when we first observed the current unfilled slot with pending txs (real wall time).
|
|
41
45
|
private unfilledSlotFirstSeen?: { slot: number; realTime: number };
|
|
42
46
|
|
|
47
|
+
// Latest target slot for which the proposer has built a block destined for L1 but which has
|
|
48
|
+
// not yet been committed. Set by the proposer-pipelining hook from `block-proposed` events so
|
|
49
|
+
// the watcher can advance L1 (and the injected date provider) to the target slot ahead of the
|
|
50
|
+
// publisher's `sendRequestsAt` sleep, instead of waiting a full wall-clock slot.
|
|
51
|
+
private proposedTargetSlot?: number;
|
|
52
|
+
|
|
43
53
|
constructor(
|
|
44
54
|
private cheatcodes: EthCheatCodes,
|
|
45
55
|
rollupAddress: EthAddress,
|
|
46
56
|
l1Client: ViemClient,
|
|
47
57
|
private dateProvider?: TestDateProvider,
|
|
58
|
+
opts: AnvilTestWatcherOpts = {},
|
|
48
59
|
) {
|
|
49
60
|
this.rollup = getContract({
|
|
50
61
|
address: getAddress(rollupAddress.toString()),
|
|
@@ -56,6 +67,9 @@ export class AnvilTestWatcher {
|
|
|
56
67
|
rollupAddress,
|
|
57
68
|
});
|
|
58
69
|
|
|
70
|
+
this.isLocalNetwork = opts.isLocalNetwork ?? false;
|
|
71
|
+
this.isMarkingAsProven = opts.isMarkingAsProven ?? true;
|
|
72
|
+
|
|
59
73
|
this.logger.debug(`Watcher created for rollup at ${rollupAddress}`);
|
|
60
74
|
}
|
|
61
75
|
|
|
@@ -78,6 +92,18 @@ export class AnvilTestWatcher {
|
|
|
78
92
|
this.isSequencerBuilding = fn;
|
|
79
93
|
}
|
|
80
94
|
|
|
95
|
+
/**
|
|
96
|
+
* Records the target slot for which the proposer has built a block destined for L1. Used by
|
|
97
|
+
* the local-network watcher to fast-forward L1 (and the injected date provider) ahead of the
|
|
98
|
+
* pipelined publisher's `sendRequestsAt` sleep so it ends promptly instead of waiting a full
|
|
99
|
+
* wall-clock slot. Only ratchets up — late warps for stale slots are no-ops.
|
|
100
|
+
*/
|
|
101
|
+
setProposedTargetSlot(slot: number) {
|
|
102
|
+
if (this.proposedTargetSlot === undefined || slot > this.proposedTargetSlot) {
|
|
103
|
+
this.proposedTargetSlot = slot;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
81
107
|
async start() {
|
|
82
108
|
if (this.filledRunningPromise) {
|
|
83
109
|
throw new Error('Watcher already watching for filled slot');
|
|
@@ -130,14 +156,21 @@ export class AnvilTestWatcher {
|
|
|
130
156
|
return;
|
|
131
157
|
}
|
|
132
158
|
|
|
133
|
-
const l1Time = (await this.cheatcodes.
|
|
159
|
+
const l1Time = (await this.cheatcodes.lastBlockTimestamp()) * 1000;
|
|
134
160
|
const wallTime = this.dateProvider.now();
|
|
135
161
|
if (l1Time > wallTime) {
|
|
136
162
|
this.logger.warn(`L1 is ahead of wall time. Syncing wall time to L1 time`);
|
|
137
163
|
this.dateProvider.setTime(l1Time);
|
|
138
164
|
} else if (l1Time + Number(this.l2SlotDuration) * 1000 < wallTime) {
|
|
139
|
-
|
|
140
|
-
|
|
165
|
+
// Warp L1 to the slot boundary at-or-before wall time. Rounding to a slot boundary (rather than
|
|
166
|
+
// `ceil(wallTime / 1000)`) keeps this loop's target aligned with `warpTimeIfNeeded`'s
|
|
167
|
+
// `nextSlotTimestamp` target, avoiding a race where the two loops pick timestamps a fraction of
|
|
168
|
+
// a second apart and one of them is then rejected by anvil as non-monotonic.
|
|
169
|
+
const wallSec = Math.floor(wallTime / 1000);
|
|
170
|
+
const targetSlot = await this.rollup.read.getSlotAt([BigInt(wallSec)]);
|
|
171
|
+
const targetTimestamp = Number(await this.rollup.read.getTimestampForSlot([targetSlot]));
|
|
172
|
+
this.logger.warn(`L1 is more than 1 L2 slot behind wall time. Warping to slot ${targetSlot} boundary`);
|
|
173
|
+
await this.warpToTimestamp(targetTimestamp);
|
|
141
174
|
}
|
|
142
175
|
}
|
|
143
176
|
|
|
@@ -151,8 +184,9 @@ export class AnvilTestWatcher {
|
|
|
151
184
|
|
|
152
185
|
if (BigInt(currentSlot) === checkpointLog.slotNumber) {
|
|
153
186
|
// The current slot has been filled, we should jump to the next slot.
|
|
154
|
-
await this.warpToTimestamp(nextSlotTimestamp)
|
|
155
|
-
|
|
187
|
+
if (await this.warpToTimestamp(nextSlotTimestamp)) {
|
|
188
|
+
this.logger.info(`Slot ${currentSlot} was filled, jumped to next slot`);
|
|
189
|
+
}
|
|
156
190
|
return;
|
|
157
191
|
}
|
|
158
192
|
|
|
@@ -161,6 +195,20 @@ export class AnvilTestWatcher {
|
|
|
161
195
|
return;
|
|
162
196
|
}
|
|
163
197
|
|
|
198
|
+
// Pipelined-publish shortcut: if the proposer has built a block destined for a slot
|
|
199
|
+
// beyond the current L1 slot, fast-forward L1 to that slot's timestamp so the publisher's
|
|
200
|
+
// `sendRequestsAt(targetSlot)` sleep ends and the multicall mines inside the target slot.
|
|
201
|
+
// Without this, the publisher waits up to a full real-time slot for wall clock to catch up.
|
|
202
|
+
if (this.proposedTargetSlot !== undefined && this.proposedTargetSlot > currentSlot) {
|
|
203
|
+
const targetSlotTimestamp = Number(
|
|
204
|
+
await this.rollup.read.getTimestampForSlot([BigInt(this.proposedTargetSlot)]),
|
|
205
|
+
);
|
|
206
|
+
if (await this.warpToTimestamp(targetSlotTimestamp)) {
|
|
207
|
+
this.logger.info(`Warped L1 to target slot ${this.proposedTargetSlot} for pipelined publish`);
|
|
208
|
+
}
|
|
209
|
+
return;
|
|
210
|
+
}
|
|
211
|
+
|
|
164
212
|
// If there are pending txs and the sequencer missed them, warp quickly (after a 2s real-time debounce) so the
|
|
165
213
|
// sequencer can retry in the next slot. Without this, we'd have to wait a full real-time slot duration (~36s) for
|
|
166
214
|
// the dateProvider to catch up to the next slot timestamp. We skip the warp if the sequencer is actively building
|
|
@@ -180,9 +228,10 @@ export class AnvilTestWatcher {
|
|
|
180
228
|
}
|
|
181
229
|
|
|
182
230
|
if (realNow - this.unfilledSlotFirstSeen.realTime > 2000) {
|
|
183
|
-
await this.warpToTimestamp(nextSlotTimestamp)
|
|
231
|
+
if (await this.warpToTimestamp(nextSlotTimestamp)) {
|
|
232
|
+
this.logger.info(`Slot ${currentSlot} was missed with pending txs, jumped to next slot`);
|
|
233
|
+
}
|
|
184
234
|
this.unfilledSlotFirstSeen = undefined;
|
|
185
|
-
this.logger.info(`Slot ${currentSlot} was missed with pending txs, jumped to next slot`);
|
|
186
235
|
}
|
|
187
236
|
|
|
188
237
|
return;
|
|
@@ -192,19 +241,33 @@ export class AnvilTestWatcher {
|
|
|
192
241
|
// Fallback: warp when the dateProvider time has passed the next slot timestamp.
|
|
193
242
|
const currentTimestamp = this.dateProvider?.now() ?? Date.now();
|
|
194
243
|
if (currentTimestamp > nextSlotTimestamp * 1000) {
|
|
195
|
-
await this.warpToTimestamp(nextSlotTimestamp)
|
|
196
|
-
|
|
244
|
+
if (await this.warpToTimestamp(nextSlotTimestamp)) {
|
|
245
|
+
this.logger.info(`Slot ${currentSlot} was missed, jumped to next slot`);
|
|
246
|
+
}
|
|
197
247
|
}
|
|
198
248
|
} catch {
|
|
199
249
|
this.logger.error('mineIfSlotFilled failed');
|
|
200
250
|
}
|
|
201
251
|
}
|
|
202
252
|
|
|
203
|
-
|
|
253
|
+
/**
|
|
254
|
+
* Warps L1 to `timestamp`, unless L1 is already at or past it. Returns true when a warp actually
|
|
255
|
+
* happened, false when skipped or on error. Callers use the return value to gate success logs.
|
|
256
|
+
*/
|
|
257
|
+
private async warpToTimestamp(timestamp: number): Promise<boolean> {
|
|
204
258
|
try {
|
|
259
|
+
// Anvil rejects evm_setNextBlockTimestamp values <= the current block's timestamp. The two
|
|
260
|
+
// watcher loops can race and pick targets a fraction of a second apart; skip here rather than
|
|
261
|
+
// letting the second one error out noisily.
|
|
262
|
+
const lastTimestamp = await this.cheatcodes.lastBlockTimestamp();
|
|
263
|
+
if (timestamp <= lastTimestamp) {
|
|
264
|
+
return false;
|
|
265
|
+
}
|
|
205
266
|
await this.cheatcodes.warp(timestamp, { resetBlockInterval: true });
|
|
267
|
+
return true;
|
|
206
268
|
} catch (e) {
|
|
207
269
|
this.logger.error(`Failed to warp to timestamp ${timestamp}: ${e}`);
|
|
270
|
+
return false;
|
|
208
271
|
}
|
|
209
272
|
}
|
|
210
273
|
}
|