@aztec/txe 0.0.1-commit.e6bd8901 → 0.0.1-commit.ec7ac5448
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/index.d.ts +1 -1
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +88 -54
- package/dest/oracle/interfaces.d.ts +29 -28
- package/dest/oracle/interfaces.d.ts.map +1 -1
- package/dest/oracle/txe_oracle_public_context.d.ts +13 -13
- package/dest/oracle/txe_oracle_public_context.d.ts.map +1 -1
- package/dest/oracle/txe_oracle_public_context.js +14 -15
- package/dest/oracle/txe_oracle_top_level_context.d.ts +28 -23
- package/dest/oracle/txe_oracle_top_level_context.d.ts.map +1 -1
- package/dest/oracle/txe_oracle_top_level_context.js +149 -63
- package/dest/rpc_translator.d.ts +121 -83
- package/dest/rpc_translator.d.ts.map +1 -1
- package/dest/rpc_translator.js +406 -172
- package/dest/state_machine/archiver.d.ts +3 -3
- package/dest/state_machine/archiver.d.ts.map +1 -1
- package/dest/state_machine/archiver.js +9 -8
- package/dest/state_machine/dummy_p2p_client.d.ts +18 -13
- package/dest/state_machine/dummy_p2p_client.d.ts.map +1 -1
- package/dest/state_machine/dummy_p2p_client.js +33 -18
- package/dest/state_machine/global_variable_builder.d.ts +3 -2
- package/dest/state_machine/global_variable_builder.d.ts.map +1 -1
- package/dest/state_machine/global_variable_builder.js +1 -1
- package/dest/state_machine/index.d.ts +7 -5
- package/dest/state_machine/index.d.ts.map +1 -1
- package/dest/state_machine/index.js +19 -10
- package/dest/state_machine/mock_epoch_cache.d.ts +20 -3
- package/dest/state_machine/mock_epoch_cache.d.ts.map +1 -1
- package/dest/state_machine/mock_epoch_cache.js +39 -2
- package/dest/state_machine/synchronizer.d.ts +5 -5
- package/dest/state_machine/synchronizer.d.ts.map +1 -1
- package/dest/state_machine/synchronizer.js +3 -3
- package/dest/txe_session.d.ts +10 -6
- package/dest/txe_session.d.ts.map +1 -1
- package/dest/txe_session.js +94 -26
- package/dest/util/encoding.d.ts +69 -1
- package/dest/util/encoding.d.ts.map +1 -1
- package/dest/util/txe_public_contract_data_source.d.ts +2 -3
- package/dest/util/txe_public_contract_data_source.d.ts.map +1 -1
- package/dest/util/txe_public_contract_data_source.js +6 -25
- package/dest/utils/block_creation.d.ts +1 -1
- package/dest/utils/block_creation.d.ts.map +1 -1
- package/dest/utils/block_creation.js +3 -1
- package/package.json +15 -15
- package/src/index.ts +89 -52
- package/src/oracle/interfaces.ts +32 -31
- package/src/oracle/txe_oracle_public_context.ts +14 -16
- package/src/oracle/txe_oracle_top_level_context.ts +188 -115
- package/src/rpc_translator.ts +470 -189
- package/src/state_machine/archiver.ts +8 -5
- package/src/state_machine/dummy_p2p_client.ts +46 -24
- package/src/state_machine/global_variable_builder.ts +2 -0
- package/src/state_machine/index.ts +30 -9
- package/src/state_machine/mock_epoch_cache.ts +51 -3
- package/src/state_machine/synchronizer.ts +4 -4
- package/src/txe_session.ts +106 -85
- package/src/util/txe_public_contract_data_source.ts +10 -38
- package/src/utils/block_creation.ts +3 -1
- package/dest/util/txe_contract_store.d.ts +0 -12
- package/dest/util/txe_contract_store.d.ts.map +0 -1
- package/dest/util/txe_contract_store.js +0 -22
- package/src/util/txe_contract_store.ts +0 -36
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { CONTRACT_INSTANCE_REGISTRY_CONTRACT_ADDRESS,
|
|
1
|
+
import { CONTRACT_INSTANCE_REGISTRY_CONTRACT_ADDRESS, MAX_PROCESSABLE_DA_GAS_PER_CHECKPOINT, MAX_PROCESSABLE_L2_GAS, NUMBER_OF_L1_L2_MESSAGES_PER_ROLLUP } from '@aztec/constants';
|
|
2
2
|
import { BlockNumber } from '@aztec/foundation/branded-types';
|
|
3
3
|
import { Schnorr } from '@aztec/foundation/crypto/schnorr';
|
|
4
4
|
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
5
5
|
import { LogLevels, applyStringFormatting, createLogger } from '@aztec/foundation/log';
|
|
6
6
|
import { TestDateProvider } from '@aztec/foundation/timer';
|
|
7
|
-
import {
|
|
7
|
+
import { CapsuleService, ORACLE_VERSION_MAJOR, enrichPublicSimulationError } from '@aztec/pxe/server';
|
|
8
8
|
import { ExecutionNoteCache, ExecutionTaggingIndexCache, HashedValuesCache, Oracle, PrivateExecutionOracle, UtilityExecutionOracle, executePrivateFunction, generateSimulatedProvingResult } from '@aztec/pxe/simulator';
|
|
9
9
|
import { ExecutionError, WASMSimulator, createSimulationError, extractCallStack, resolveAssertionMessageFromError, toACVMWitness, witnessMapToFields } from '@aztec/simulator/client';
|
|
10
10
|
import { CppPublicTxSimulator, GuardedMerkleTreeOperations, PublicContractsDB, PublicProcessor } from '@aztec/simulator/server';
|
|
@@ -13,7 +13,7 @@ import { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
|
13
13
|
import { PublicSimulatorConfig } from '@aztec/stdlib/avm';
|
|
14
14
|
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
15
15
|
import { computePartialAddress } from '@aztec/stdlib/contract';
|
|
16
|
-
import { Gas, GasFees, GasSettings } from '@aztec/stdlib/gas';
|
|
16
|
+
import { FALLBACK_TEARDOWN_DA_GAS_LIMIT, FALLBACK_TEARDOWN_L2_GAS_LIMIT, Gas, GasFees, GasSettings } from '@aztec/stdlib/gas';
|
|
17
17
|
import { computeCalldataHash, computeProtocolNullifier, siloNullifier } from '@aztec/stdlib/hash';
|
|
18
18
|
import { PartialPrivateTailPublicInputsForPublic, PrivateKernelTailCircuitPublicInputs, PrivateToPublicAccumulatedData, PublicCallRequest } from '@aztec/stdlib/kernel';
|
|
19
19
|
import { ChonkProof } from '@aztec/stdlib/proofs';
|
|
@@ -36,15 +36,15 @@ export class TXEOracleTopLevelContext {
|
|
|
36
36
|
senderAddressBookStore;
|
|
37
37
|
capsuleStore;
|
|
38
38
|
privateEventStore;
|
|
39
|
-
jobId;
|
|
40
39
|
nextBlockTimestamp;
|
|
41
40
|
version;
|
|
42
41
|
chainId;
|
|
43
42
|
authwits;
|
|
43
|
+
contractSyncService;
|
|
44
44
|
isMisc;
|
|
45
45
|
isTxe;
|
|
46
46
|
logger;
|
|
47
|
-
constructor(stateMachine, contractStore, noteStore, keyStore, addressStore, accountStore, senderTaggingStore, recipientTaggingStore, senderAddressBookStore, capsuleStore, privateEventStore,
|
|
47
|
+
constructor(stateMachine, contractStore, noteStore, keyStore, addressStore, accountStore, senderTaggingStore, recipientTaggingStore, senderAddressBookStore, capsuleStore, privateEventStore, nextBlockTimestamp, version, chainId, authwits, contractSyncService){
|
|
48
48
|
this.stateMachine = stateMachine;
|
|
49
49
|
this.contractStore = contractStore;
|
|
50
50
|
this.noteStore = noteStore;
|
|
@@ -56,49 +56,60 @@ export class TXEOracleTopLevelContext {
|
|
|
56
56
|
this.senderAddressBookStore = senderAddressBookStore;
|
|
57
57
|
this.capsuleStore = capsuleStore;
|
|
58
58
|
this.privateEventStore = privateEventStore;
|
|
59
|
-
this.jobId = jobId;
|
|
60
59
|
this.nextBlockTimestamp = nextBlockTimestamp;
|
|
61
60
|
this.version = version;
|
|
62
61
|
this.chainId = chainId;
|
|
63
62
|
this.authwits = authwits;
|
|
63
|
+
this.contractSyncService = contractSyncService;
|
|
64
64
|
this.isMisc = true;
|
|
65
65
|
this.isTxe = true;
|
|
66
66
|
this.logger = createLogger('txe:top_level_context');
|
|
67
67
|
this.logger.debug('Entering Top Level Context');
|
|
68
68
|
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
69
|
+
contractOracleVersion;
|
|
70
|
+
assertCompatibleOracleVersion(major, minor) {
|
|
71
|
+
if (major !== ORACLE_VERSION_MAJOR) {
|
|
72
|
+
const hint = major > ORACLE_VERSION_MAJOR ? 'The contract was compiled with a newer version of Aztec.nr than this aztec cli version supports. Upgrade your aztec cli version to a compatible version.' : 'The contract was compiled with an older version of Aztec.nr than this aztec cli version supports. Recompile the contract with a compatible version of Aztec.nr.';
|
|
73
|
+
throw new Error(`Incompatible aztec cli version: ${hint} See https://docs.aztec.network/errors/8 (expected oracle major version ${ORACLE_VERSION_MAJOR}, got ${major})`);
|
|
72
74
|
}
|
|
75
|
+
this.contractOracleVersion = {
|
|
76
|
+
major,
|
|
77
|
+
minor
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
// Prefixed with "nonOracleFunction" as it is not used as an oracle handler.
|
|
81
|
+
nonOracleFunctionGetContractOracleVersion() {
|
|
82
|
+
return this.contractOracleVersion;
|
|
73
83
|
}
|
|
74
84
|
// This is typically only invoked in private contexts, but it is convenient to also have it in top-level for testing
|
|
75
85
|
// setup.
|
|
76
|
-
|
|
86
|
+
getRandomField() {
|
|
77
87
|
return Fr.random();
|
|
78
88
|
}
|
|
79
89
|
// We instruct users to debug contracts via this oracle, so it makes sense that they'd expect it to also work in tests
|
|
80
|
-
|
|
90
|
+
log(level, message, fields) {
|
|
81
91
|
if (!LogLevels[level]) {
|
|
82
|
-
throw new Error(`Invalid
|
|
92
|
+
throw new Error(`Invalid log level: ${level}`);
|
|
83
93
|
}
|
|
84
94
|
const levelName = LogLevels[level];
|
|
85
95
|
this.logger[levelName](`${applyStringFormatting(message, fields)}`, {
|
|
86
96
|
module: `${this.logger.module}:debug_log`
|
|
87
97
|
});
|
|
98
|
+
return Promise.resolve();
|
|
88
99
|
}
|
|
89
|
-
|
|
100
|
+
getDefaultAddress() {
|
|
90
101
|
return DEFAULT_ADDRESS;
|
|
91
102
|
}
|
|
92
|
-
async
|
|
103
|
+
async getNextBlockNumber() {
|
|
93
104
|
return BlockNumber(await this.getLastBlockNumber() + 1);
|
|
94
105
|
}
|
|
95
|
-
|
|
106
|
+
getNextBlockTimestamp() {
|
|
96
107
|
return Promise.resolve(this.nextBlockTimestamp);
|
|
97
108
|
}
|
|
98
|
-
async
|
|
109
|
+
async getLastBlockTimestamp() {
|
|
99
110
|
return (await this.stateMachine.node.getBlockHeader('latest')).globalVariables.timestamp;
|
|
100
111
|
}
|
|
101
|
-
async
|
|
112
|
+
async getLastTxEffects() {
|
|
102
113
|
const latestBlockNumber = await this.stateMachine.archiver.getBlockNumber();
|
|
103
114
|
const block = await this.stateMachine.archiver.getBlock(latestBlockNumber);
|
|
104
115
|
if (block.body.txEffects.length != 1) {
|
|
@@ -112,7 +123,19 @@ export class TXEOracleTopLevelContext {
|
|
|
112
123
|
nullifiers: txEffects.nullifiers
|
|
113
124
|
};
|
|
114
125
|
}
|
|
115
|
-
async
|
|
126
|
+
async syncContractNonOracleMethod(contractAddress, scope, jobId) {
|
|
127
|
+
if (contractAddress.equals(DEFAULT_ADDRESS)) {
|
|
128
|
+
this.logger.debug(`Skipping sync in getPrivateEvents because the events correspond to the default address.`);
|
|
129
|
+
return;
|
|
130
|
+
}
|
|
131
|
+
const blockHeader = await this.stateMachine.anchorBlockStore.getBlockHeader();
|
|
132
|
+
await this.stateMachine.contractSyncService.ensureContractSynced(contractAddress, null, async (call, execScopes)=>{
|
|
133
|
+
await this.executeUtilityCall(call, execScopes, jobId);
|
|
134
|
+
}, blockHeader, jobId, [
|
|
135
|
+
scope
|
|
136
|
+
]);
|
|
137
|
+
}
|
|
138
|
+
async getPrivateEvents(selector, contractAddress, scope) {
|
|
116
139
|
return (await this.privateEventStore.getPrivateEvents(selector, {
|
|
117
140
|
contractAddress,
|
|
118
141
|
scopes: [
|
|
@@ -122,17 +145,17 @@ export class TXEOracleTopLevelContext {
|
|
|
122
145
|
toBlock: await this.getLastBlockNumber() + 1
|
|
123
146
|
})).map((e)=>e.packedEvent);
|
|
124
147
|
}
|
|
125
|
-
async
|
|
148
|
+
async advanceBlocksBy(blocks) {
|
|
126
149
|
this.logger.debug(`time traveling ${blocks} blocks`);
|
|
127
150
|
for(let i = 0; i < blocks; i++){
|
|
128
151
|
await this.mineBlock();
|
|
129
152
|
}
|
|
130
153
|
}
|
|
131
|
-
|
|
154
|
+
advanceTimestampBy(duration) {
|
|
132
155
|
this.logger.debug(`time traveling ${duration} seconds`);
|
|
133
156
|
this.nextBlockTimestamp += duration;
|
|
134
157
|
}
|
|
135
|
-
async
|
|
158
|
+
async deploy(artifact, instance, secret) {
|
|
136
159
|
// Emit deployment nullifier
|
|
137
160
|
await this.mineBlock({
|
|
138
161
|
nullifiers: [
|
|
@@ -140,25 +163,25 @@ export class TXEOracleTopLevelContext {
|
|
|
140
163
|
]
|
|
141
164
|
});
|
|
142
165
|
if (!secret.equals(Fr.ZERO)) {
|
|
143
|
-
await this.
|
|
166
|
+
await this.addAccount(artifact, instance, secret);
|
|
144
167
|
} else {
|
|
145
168
|
await this.contractStore.addContractInstance(instance);
|
|
146
|
-
await this.contractStore.addContractArtifact(
|
|
169
|
+
await this.contractStore.addContractArtifact(artifact);
|
|
147
170
|
this.logger.debug(`Deployed ${artifact.name} at ${instance.address}`);
|
|
148
171
|
}
|
|
149
172
|
}
|
|
150
|
-
async
|
|
173
|
+
async addAccount(artifact, instance, secret) {
|
|
151
174
|
const partialAddress = await computePartialAddress(instance);
|
|
152
175
|
this.logger.debug(`Deployed ${artifact.name} at ${instance.address}`);
|
|
153
176
|
await this.contractStore.addContractInstance(instance);
|
|
154
|
-
await this.contractStore.addContractArtifact(
|
|
177
|
+
await this.contractStore.addContractArtifact(artifact);
|
|
155
178
|
const completeAddress = await this.keyStore.addAccount(secret, partialAddress);
|
|
156
179
|
await this.accountStore.setAccount(completeAddress.address, completeAddress);
|
|
157
180
|
await this.addressStore.addCompleteAddress(completeAddress);
|
|
158
181
|
this.logger.debug(`Created account ${completeAddress.address}`);
|
|
159
182
|
return completeAddress;
|
|
160
183
|
}
|
|
161
|
-
async
|
|
184
|
+
async createAccount(secret) {
|
|
162
185
|
// This is a foot gun !
|
|
163
186
|
const completeAddress = await this.keyStore.addAccount(secret, secret);
|
|
164
187
|
await this.accountStore.setAccount(completeAddress.address, completeAddress);
|
|
@@ -166,7 +189,7 @@ export class TXEOracleTopLevelContext {
|
|
|
166
189
|
this.logger.debug(`Created account ${completeAddress.address}`);
|
|
167
190
|
return completeAddress;
|
|
168
191
|
}
|
|
169
|
-
async
|
|
192
|
+
async addAuthWitness(address, messageHash) {
|
|
170
193
|
const account = await this.accountStore.getAccount(address);
|
|
171
194
|
const privateKey = await this.keyStore.getMasterSecretKey(account.publicKeys.masterIncomingViewingPublicKey);
|
|
172
195
|
const schnorr = new Schnorr();
|
|
@@ -177,7 +200,7 @@ export class TXEOracleTopLevelContext {
|
|
|
177
200
|
this.authwits.set(authWitness.requestHash.toString(), authWitness);
|
|
178
201
|
}
|
|
179
202
|
async mineBlock(options = {}) {
|
|
180
|
-
const blockNumber = await this.
|
|
203
|
+
const blockNumber = await this.getNextBlockNumber();
|
|
181
204
|
const txEffect = TxEffect.empty();
|
|
182
205
|
txEffect.nullifiers = [
|
|
183
206
|
getSingleTxBlockRequestHash(blockNumber),
|
|
@@ -199,25 +222,30 @@ export class TXEOracleTopLevelContext {
|
|
|
199
222
|
this.logger.info(`Created block ${blockNumber} with timestamp ${block.header.globalVariables.timestamp}`);
|
|
200
223
|
await this.stateMachine.handleL2Block(block);
|
|
201
224
|
}
|
|
202
|
-
async
|
|
225
|
+
async privateCallNewFlow(from, targetContractAddress = AztecAddress.zero(), functionSelector = FunctionSelector.empty(), args, argsHash = Fr.zero(), isStaticCall = false, jobId) {
|
|
203
226
|
this.logger.verbose(`Executing external function ${await this.contractStore.getDebugFunctionName(targetContractAddress, functionSelector)}@${targetContractAddress} isStaticCall=${isStaticCall}`);
|
|
204
227
|
const artifact = await this.contractStore.getFunctionArtifact(targetContractAddress, functionSelector);
|
|
205
228
|
if (!artifact) {
|
|
206
229
|
const message = functionSelector.equals(await FunctionSelector.fromSignature('verify_private_authwit(Field)')) ? 'Found no account contract artifact for a private authwit check - use `create_contract_account` instead of `create_light_account` for authwit support.' : 'Function Artifact does not exist';
|
|
207
230
|
throw new Error(message);
|
|
208
231
|
}
|
|
232
|
+
// When `from` is the zero address (e.g. when deploying a new account contract), we return an
|
|
233
|
+
// empty scope list which acts as deny-all: no notes are visible and no keys are accessible.
|
|
234
|
+
const effectiveScopes = from.isZero() ? [] : [
|
|
235
|
+
from
|
|
236
|
+
];
|
|
209
237
|
// Sync notes before executing private function to discover notes from previous transactions
|
|
210
|
-
const utilityExecutor = async (call)=>{
|
|
211
|
-
await this.executeUtilityCall(call);
|
|
238
|
+
const utilityExecutor = async (call, execScopes)=>{
|
|
239
|
+
await this.executeUtilityCall(call, execScopes, jobId);
|
|
212
240
|
};
|
|
213
|
-
await
|
|
214
|
-
|
|
241
|
+
const blockHeader = await this.stateMachine.anchorBlockStore.getBlockHeader();
|
|
242
|
+
await this.stateMachine.contractSyncService.ensureContractSynced(targetContractAddress, functionSelector, utilityExecutor, blockHeader, jobId, effectiveScopes);
|
|
243
|
+
const blockNumber = await this.getNextBlockNumber();
|
|
215
244
|
const callContext = new CallContext(from, targetContractAddress, functionSelector, isStaticCall);
|
|
216
|
-
const gasLimits = new Gas(
|
|
217
|
-
const teardownGasLimits = new Gas(
|
|
245
|
+
const gasLimits = new Gas(MAX_PROCESSABLE_DA_GAS_PER_CHECKPOINT, MAX_PROCESSABLE_L2_GAS);
|
|
246
|
+
const teardownGasLimits = new Gas(FALLBACK_TEARDOWN_DA_GAS_LIMIT, FALLBACK_TEARDOWN_L2_GAS_LIMIT);
|
|
218
247
|
const gasSettings = new GasSettings(gasLimits, teardownGasLimits, GasFees.empty(), GasFees.empty());
|
|
219
248
|
const txContext = new TxContext(this.chainId, this.version, gasSettings);
|
|
220
|
-
const blockHeader = await this.stateMachine.anchorBlockStore.getBlockHeader();
|
|
221
249
|
const protocolNullifier = await computeProtocolNullifier(getSingleTxBlockRequestHash(blockNumber));
|
|
222
250
|
const noteCache = new ExecutionNoteCache(protocolNullifier);
|
|
223
251
|
// In production, the account contract sets the min revertible counter before calling the app function.
|
|
@@ -227,12 +255,40 @@ export class TXEOracleTopLevelContext {
|
|
|
227
255
|
await noteCache.setMinRevertibleSideEffectCounter(minRevertibleSideEffectCounter);
|
|
228
256
|
const taggingIndexCache = new ExecutionTaggingIndexCache();
|
|
229
257
|
const simulator = new WASMSimulator();
|
|
230
|
-
const privateExecutionOracle = new PrivateExecutionOracle(
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
258
|
+
const privateExecutionOracle = new PrivateExecutionOracle({
|
|
259
|
+
argsHash,
|
|
260
|
+
txContext,
|
|
261
|
+
callContext,
|
|
262
|
+
anchorBlockHeader: blockHeader,
|
|
263
|
+
utilityExecutor,
|
|
264
|
+
authWitnesses: Array.from(this.authwits.values()),
|
|
265
|
+
capsules: [],
|
|
266
|
+
executionCache: HashedValuesCache.create([
|
|
267
|
+
new HashedValues(args, argsHash)
|
|
268
|
+
]),
|
|
269
|
+
noteCache,
|
|
270
|
+
taggingIndexCache,
|
|
271
|
+
contractStore: this.contractStore,
|
|
272
|
+
noteStore: this.noteStore,
|
|
273
|
+
keyStore: this.keyStore,
|
|
274
|
+
addressStore: this.addressStore,
|
|
275
|
+
aztecNode: this.stateMachine.node,
|
|
276
|
+
senderTaggingStore: this.senderTaggingStore,
|
|
277
|
+
recipientTaggingStore: this.recipientTaggingStore,
|
|
278
|
+
senderAddressBookStore: this.senderAddressBookStore,
|
|
279
|
+
capsuleService: new CapsuleService(this.capsuleStore, effectiveScopes),
|
|
280
|
+
privateEventStore: this.privateEventStore,
|
|
281
|
+
contractSyncService: this.stateMachine.contractSyncService,
|
|
282
|
+
jobId,
|
|
283
|
+
totalPublicCalldataCount: 0,
|
|
284
|
+
sideEffectCounter: minRevertibleSideEffectCounter,
|
|
285
|
+
scopes: effectiveScopes,
|
|
286
|
+
// In TXE, the typical transaction entrypoint is skipped, so we need to simulate the actions that such a
|
|
287
|
+
// contract would perform, including setting senderForTags.
|
|
288
|
+
senderForTags: from,
|
|
289
|
+
simulator,
|
|
290
|
+
messageContextService: this.stateMachine.messageContextService
|
|
291
|
+
});
|
|
236
292
|
// Note: This is a slight modification of simulator.run without any of the checks. Maybe we should modify simulator.run with a boolean value to skip checks.
|
|
237
293
|
let result;
|
|
238
294
|
let executionResult;
|
|
@@ -244,7 +300,7 @@ export class TXEOracleTopLevelContext {
|
|
|
244
300
|
r.publicInputs.publicTeardownCallRequest
|
|
245
301
|
]));
|
|
246
302
|
const publicFunctionsCalldata = await Promise.all(publicCallRequests.map(async (r)=>{
|
|
247
|
-
const calldata = await privateExecutionOracle.
|
|
303
|
+
const calldata = await privateExecutionOracle.getHashPreimage(r.calldataHash);
|
|
248
304
|
return new HashedValues(calldata, r.calldataHash);
|
|
249
305
|
}));
|
|
250
306
|
noteCache.finish();
|
|
@@ -256,7 +312,7 @@ export class TXEOracleTopLevelContext {
|
|
|
256
312
|
// According to the protocol rules, there must be at least one nullifier in the tx. The first nullifier is used as
|
|
257
313
|
// the nonce generator for the note hashes.
|
|
258
314
|
// We pass the non-zero minRevertibleSideEffectCounter to make sure the side effects are split correctly.
|
|
259
|
-
const { publicInputs } = await generateSimulatedProvingResult(result, this.contractStore, minRevertibleSideEffectCounter);
|
|
315
|
+
const { publicInputs } = await generateSimulatedProvingResult(result, (addr, sel)=>this.contractStore.getDebugFunctionName(addr, sel), this.stateMachine.node, minRevertibleSideEffectCounter);
|
|
260
316
|
const globals = makeGlobalVariables();
|
|
261
317
|
globals.blockNumber = blockNumber;
|
|
262
318
|
globals.timestamp = this.nextBlockTimestamp;
|
|
@@ -264,7 +320,8 @@ export class TXEOracleTopLevelContext {
|
|
|
264
320
|
globals.version = this.version;
|
|
265
321
|
globals.gasFees = GasFees.empty();
|
|
266
322
|
const forkedWorldTrees = await this.stateMachine.synchronizer.nativeWorldStateService.fork();
|
|
267
|
-
const
|
|
323
|
+
const bindings = this.logger.getBindings();
|
|
324
|
+
const contractsDB = new PublicContractsDB(new TXEPublicContractDataSource(blockNumber, this.contractStore), bindings);
|
|
268
325
|
const guardedMerkleTrees = new GuardedMerkleTreeOperations(forkedWorldTrees);
|
|
269
326
|
const config = PublicSimulatorConfig.from({
|
|
270
327
|
skipFeeEnforcement: true,
|
|
@@ -273,7 +330,7 @@ export class TXEOracleTopLevelContext {
|
|
|
273
330
|
collectStatistics: false,
|
|
274
331
|
collectCallMetadata: true
|
|
275
332
|
});
|
|
276
|
-
const processor = new PublicProcessor(globals, guardedMerkleTrees, contractsDB, new CppPublicTxSimulator(guardedMerkleTrees, contractsDB, globals, config), new TestDateProvider());
|
|
333
|
+
const processor = new PublicProcessor(globals, guardedMerkleTrees, contractsDB, new CppPublicTxSimulator(guardedMerkleTrees, contractsDB, globals, config, bindings), new TestDateProvider(), undefined, createLogger('simulator:public-processor', bindings));
|
|
277
334
|
const tx = await Tx.create({
|
|
278
335
|
data: publicInputs,
|
|
279
336
|
chonkProof: ChonkProof.empty(),
|
|
@@ -323,11 +380,11 @@ export class TXEOracleTopLevelContext {
|
|
|
323
380
|
await forkedWorldTrees.close();
|
|
324
381
|
return executionResult.returnValues ?? [];
|
|
325
382
|
}
|
|
326
|
-
async
|
|
383
|
+
async publicCallNewFlow(from, targetContractAddress, calldata, isStaticCall) {
|
|
327
384
|
this.logger.verbose(`Executing public function ${await this.contractStore.getDebugFunctionName(targetContractAddress, FunctionSelector.fromField(calldata[0]))}@${targetContractAddress} isStaticCall=${isStaticCall}`);
|
|
328
|
-
const blockNumber = await this.
|
|
329
|
-
const gasLimits = new Gas(
|
|
330
|
-
const teardownGasLimits = new Gas(
|
|
385
|
+
const blockNumber = await this.getNextBlockNumber();
|
|
386
|
+
const gasLimits = new Gas(MAX_PROCESSABLE_DA_GAS_PER_CHECKPOINT, MAX_PROCESSABLE_L2_GAS);
|
|
387
|
+
const teardownGasLimits = new Gas(FALLBACK_TEARDOWN_DA_GAS_LIMIT, FALLBACK_TEARDOWN_L2_GAS_LIMIT);
|
|
331
388
|
const gasSettings = new GasSettings(gasLimits, teardownGasLimits, GasFees.empty(), GasFees.empty());
|
|
332
389
|
const txContext = new TxContext(this.chainId, this.version, gasSettings);
|
|
333
390
|
const anchorBlockHeader = await this.stateMachine.anchorBlockStore.getBlockHeader();
|
|
@@ -340,7 +397,8 @@ export class TXEOracleTopLevelContext {
|
|
|
340
397
|
globals.version = this.version;
|
|
341
398
|
globals.gasFees = GasFees.empty();
|
|
342
399
|
const forkedWorldTrees = await this.stateMachine.synchronizer.nativeWorldStateService.fork();
|
|
343
|
-
const
|
|
400
|
+
const bindings2 = this.logger.getBindings();
|
|
401
|
+
const contractsDB = new PublicContractsDB(new TXEPublicContractDataSource(blockNumber, this.contractStore), bindings2);
|
|
344
402
|
const guardedMerkleTrees = new GuardedMerkleTreeOperations(forkedWorldTrees);
|
|
345
403
|
const config = PublicSimulatorConfig.from({
|
|
346
404
|
skipFeeEnforcement: true,
|
|
@@ -349,8 +407,8 @@ export class TXEOracleTopLevelContext {
|
|
|
349
407
|
collectStatistics: false,
|
|
350
408
|
collectCallMetadata: true
|
|
351
409
|
});
|
|
352
|
-
const simulator = new CppPublicTxSimulator(guardedMerkleTrees, contractsDB, globals, config);
|
|
353
|
-
const processor = new PublicProcessor(globals, guardedMerkleTrees, contractsDB, simulator, new TestDateProvider());
|
|
410
|
+
const simulator = new CppPublicTxSimulator(guardedMerkleTrees, contractsDB, globals, config, bindings2);
|
|
411
|
+
const processor = new PublicProcessor(globals, guardedMerkleTrees, contractsDB, simulator, new TestDateProvider(), undefined, createLogger('simulator:public-processor', bindings2));
|
|
354
412
|
// We're simulating a scenario in which private execution immediately enqueues a public call and halts. The private
|
|
355
413
|
// kernel init would in this case inject a nullifier with the transaction request hash as a non-revertible
|
|
356
414
|
// side-effect, which the AVM then expects to exist in order to use it as the nonce generator when siloing notes as
|
|
@@ -363,7 +421,7 @@ export class TXEOracleTopLevelContext {
|
|
|
363
421
|
revertibleAccumulatedData.publicCallRequests[0] = new PublicCallRequest(from, targetContractAddress, isStaticCall, calldataHash);
|
|
364
422
|
const inputsForPublic = new PartialPrivateTailPublicInputsForPublic(nonRevertibleAccumulatedData, revertibleAccumulatedData, PublicCallRequest.empty());
|
|
365
423
|
const constantData = new TxConstantData(anchorBlockHeader, txContext, Fr.zero(), Fr.zero());
|
|
366
|
-
const txData = new PrivateKernelTailCircuitPublicInputs(constantData, /*gasUsed=*/ new Gas(0, 0), /*feePayer=*/ AztecAddress.zero(), /*
|
|
424
|
+
const txData = new PrivateKernelTailCircuitPublicInputs(constantData, /*gasUsed=*/ new Gas(0, 0), /*feePayer=*/ AztecAddress.zero(), /*expirationTimestamp=*/ 0n, inputsForPublic, undefined);
|
|
367
425
|
const tx = await Tx.create({
|
|
368
426
|
data: txData,
|
|
369
427
|
chonkProof: ChonkProof.empty(),
|
|
@@ -416,19 +474,29 @@ export class TXEOracleTopLevelContext {
|
|
|
416
474
|
await forkedWorldTrees.close();
|
|
417
475
|
return returnValues ?? [];
|
|
418
476
|
}
|
|
419
|
-
async
|
|
477
|
+
async executeUtilityFunction(targetContractAddress, functionSelector, args, jobId) {
|
|
420
478
|
const artifact = await this.contractStore.getFunctionArtifact(targetContractAddress, functionSelector);
|
|
421
479
|
if (!artifact) {
|
|
422
480
|
throw new Error(`Cannot call ${functionSelector} as there is no artifact found at ${targetContractAddress}.`);
|
|
423
481
|
}
|
|
424
482
|
// Sync notes before executing utility function to discover notes from previous transactions
|
|
425
|
-
await
|
|
426
|
-
|
|
483
|
+
const blockHeader = await this.stateMachine.anchorBlockStore.getBlockHeader();
|
|
484
|
+
await this.stateMachine.contractSyncService.ensureContractSynced(targetContractAddress, functionSelector, async (call, execScopes)=>{
|
|
485
|
+
await this.executeUtilityCall(call, execScopes, jobId);
|
|
486
|
+
}, blockHeader, jobId, await this.keyStore.getAccounts());
|
|
487
|
+
const call = FunctionCall.from({
|
|
488
|
+
name: artifact.name,
|
|
489
|
+
to: targetContractAddress,
|
|
490
|
+
selector: functionSelector,
|
|
491
|
+
type: FunctionType.UTILITY,
|
|
492
|
+
hideMsgSender: false,
|
|
493
|
+
isStatic: false,
|
|
494
|
+
args,
|
|
495
|
+
returnTypes: []
|
|
427
496
|
});
|
|
428
|
-
|
|
429
|
-
return this.executeUtilityCall(call);
|
|
497
|
+
return this.executeUtilityCall(call, await this.keyStore.getAccounts(), jobId);
|
|
430
498
|
}
|
|
431
|
-
async executeUtilityCall(call) {
|
|
499
|
+
async executeUtilityCall(call, scopes, jobId) {
|
|
432
500
|
const entryPointArtifact = await this.contractStore.getFunctionArtifactWithDebugMetadata(call.to, call.selector);
|
|
433
501
|
if (entryPointArtifact.functionType !== FunctionType.UTILITY) {
|
|
434
502
|
throw new Error(`Cannot run ${entryPointArtifact.functionType} function as utility`);
|
|
@@ -439,7 +507,25 @@ export class TXEOracleTopLevelContext {
|
|
|
439
507
|
});
|
|
440
508
|
try {
|
|
441
509
|
const anchorBlockHeader = await this.stateMachine.anchorBlockStore.getBlockHeader();
|
|
442
|
-
const oracle = new UtilityExecutionOracle(
|
|
510
|
+
const oracle = new UtilityExecutionOracle({
|
|
511
|
+
contractAddress: call.to,
|
|
512
|
+
authWitnesses: [],
|
|
513
|
+
capsules: [],
|
|
514
|
+
anchorBlockHeader,
|
|
515
|
+
contractStore: this.contractStore,
|
|
516
|
+
noteStore: this.noteStore,
|
|
517
|
+
keyStore: this.keyStore,
|
|
518
|
+
addressStore: this.addressStore,
|
|
519
|
+
aztecNode: this.stateMachine.node,
|
|
520
|
+
recipientTaggingStore: this.recipientTaggingStore,
|
|
521
|
+
senderAddressBookStore: this.senderAddressBookStore,
|
|
522
|
+
capsuleService: new CapsuleService(this.capsuleStore, scopes),
|
|
523
|
+
privateEventStore: this.privateEventStore,
|
|
524
|
+
messageContextService: this.stateMachine.messageContextService,
|
|
525
|
+
contractSyncService: this.contractSyncService,
|
|
526
|
+
jobId,
|
|
527
|
+
scopes
|
|
528
|
+
});
|
|
443
529
|
const acirExecutionResult = await new WASMSimulator().executeUserCircuit(toACVMWitness(0, call.args), entryPointArtifact, new Oracle(oracle).toACIRCallback()).catch((err)=>{
|
|
444
530
|
err.message = resolveAssertionMessageFromError(err, entryPointArtifact);
|
|
445
531
|
throw new ExecutionError(err.message, {
|
|
@@ -449,10 +535,10 @@ export class TXEOracleTopLevelContext {
|
|
|
449
535
|
cause: err
|
|
450
536
|
});
|
|
451
537
|
});
|
|
452
|
-
this.logger.verbose(`Utility
|
|
538
|
+
this.logger.verbose(`Utility execution for ${call.to}.${call.selector} completed`);
|
|
453
539
|
return witnessMapToFields(acirExecutionResult.returnWitness);
|
|
454
540
|
} catch (err) {
|
|
455
|
-
throw createSimulationError(err instanceof Error ? err : new Error('Unknown error during utility
|
|
541
|
+
throw createSimulationError(err instanceof Error ? err : new Error('Unknown error during utility execution'));
|
|
456
542
|
}
|
|
457
543
|
}
|
|
458
544
|
close() {
|