@aztec/simulator 3.0.0-canary.a9708bd → 3.0.0-nightly.20250905
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.
|
@@ -39,7 +39,7 @@ export class PublicTxSimulator {
|
|
|
39
39
|
txHash
|
|
40
40
|
});
|
|
41
41
|
// Create hinting DBs.
|
|
42
|
-
const hints = new AvmExecutionHints(this.globalVariables, AvmTxHint.fromTx(tx));
|
|
42
|
+
const hints = new AvmExecutionHints(this.globalVariables, AvmTxHint.fromTx(tx, this.globalVariables.gasFees));
|
|
43
43
|
const hintingMerkleTree = await HintingMerkleWriteOperations.create(this.merkleTree, hints);
|
|
44
44
|
const hintingTreesDB = new PublicTreesDB(hintingMerkleTree);
|
|
45
45
|
const hintingContractsDB = new HintingPublicContractsDB(this.contractsDB, hints);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/simulator",
|
|
3
|
-
"version": "3.0.0-
|
|
3
|
+
"version": "3.0.0-nightly.20250905",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./server": "./dest/server.js",
|
|
@@ -63,25 +63,25 @@
|
|
|
63
63
|
]
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@aztec/constants": "3.0.0-
|
|
67
|
-
"@aztec/foundation": "3.0.0-
|
|
68
|
-
"@aztec/noir-acvm_js": "3.0.0-
|
|
69
|
-
"@aztec/noir-noirc_abi": "3.0.0-
|
|
70
|
-
"@aztec/noir-protocol-circuits-types": "3.0.0-
|
|
71
|
-
"@aztec/noir-types": "3.0.0-
|
|
72
|
-
"@aztec/protocol-contracts": "3.0.0-
|
|
73
|
-
"@aztec/stdlib": "3.0.0-
|
|
74
|
-
"@aztec/telemetry-client": "3.0.0-
|
|
75
|
-
"@aztec/world-state": "3.0.0-
|
|
66
|
+
"@aztec/constants": "3.0.0-nightly.20250905",
|
|
67
|
+
"@aztec/foundation": "3.0.0-nightly.20250905",
|
|
68
|
+
"@aztec/noir-acvm_js": "3.0.0-nightly.20250905",
|
|
69
|
+
"@aztec/noir-noirc_abi": "3.0.0-nightly.20250905",
|
|
70
|
+
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20250905",
|
|
71
|
+
"@aztec/noir-types": "3.0.0-nightly.20250905",
|
|
72
|
+
"@aztec/protocol-contracts": "3.0.0-nightly.20250905",
|
|
73
|
+
"@aztec/stdlib": "3.0.0-nightly.20250905",
|
|
74
|
+
"@aztec/telemetry-client": "3.0.0-nightly.20250905",
|
|
75
|
+
"@aztec/world-state": "3.0.0-nightly.20250905",
|
|
76
76
|
"lodash.clonedeep": "^4.5.0",
|
|
77
77
|
"lodash.merge": "^4.6.2",
|
|
78
78
|
"tslib": "^2.4.0"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@aztec/kv-store": "3.0.0-
|
|
82
|
-
"@aztec/merkle-tree": "3.0.0-
|
|
83
|
-
"@aztec/noir-contracts.js": "3.0.0-
|
|
84
|
-
"@aztec/noir-test-contracts.js": "3.0.0-
|
|
81
|
+
"@aztec/kv-store": "3.0.0-nightly.20250905",
|
|
82
|
+
"@aztec/merkle-tree": "3.0.0-nightly.20250905",
|
|
83
|
+
"@aztec/noir-contracts.js": "3.0.0-nightly.20250905",
|
|
84
|
+
"@aztec/noir-test-contracts.js": "3.0.0-nightly.20250905",
|
|
85
85
|
"@jest/globals": "^30.0.0",
|
|
86
86
|
"@types/jest": "^30.0.0",
|
|
87
87
|
"@types/lodash.clonedeep": "^4.5.7",
|
|
@@ -74,7 +74,7 @@ export class PublicTxSimulator {
|
|
|
74
74
|
this.log.debug(`Simulating ${tx.publicFunctionCalldata.length} public calls for tx ${txHash}`, { txHash });
|
|
75
75
|
|
|
76
76
|
// Create hinting DBs.
|
|
77
|
-
const hints = new AvmExecutionHints(this.globalVariables, AvmTxHint.fromTx(tx));
|
|
77
|
+
const hints = new AvmExecutionHints(this.globalVariables, AvmTxHint.fromTx(tx, this.globalVariables.gasFees));
|
|
78
78
|
const hintingMerkleTree = await HintingMerkleWriteOperations.create(this.merkleTree, hints);
|
|
79
79
|
const hintingTreesDB = new PublicTreesDB(hintingMerkleTree);
|
|
80
80
|
const hintingContractsDB = new HintingPublicContractsDB(this.contractsDB, hints);
|