From 3f7865ecd1c801eda4020b89710e167ade432720 Mon Sep 17 00:00:00 2001 From: Jack Gilcrest Date: Sat, 9 Dec 2023 20:45:16 -0700 Subject: [PATCH 1/9] expose certain private pxe functions --- yarn-project/aztec.js/src/pxe_client.ts | 3 ++ .../pxe/src/pxe_service/pxe_service.ts | 18 ++++---- yarn-project/types/package.json | 1 + yarn-project/types/src/interfaces/pxe.ts | 46 +++++++++++++++++++ yarn-project/yarn.lock | 1 + 5 files changed, 60 insertions(+), 9 deletions(-) diff --git a/yarn-project/aztec.js/src/pxe_client.ts b/yarn-project/aztec.js/src/pxe_client.ts index 5e7cd3a3822..23842767915 100644 --- a/yarn-project/aztec.js/src/pxe_client.ts +++ b/yarn-project/aztec.js/src/pxe_client.ts @@ -24,7 +24,10 @@ import { TxExecutionRequest, TxHash, TxReceipt, + // FunctionCall, + // ContractDao, } from '@aztec/types'; +// import { ExecutionResult } from '@aztec/acir-simulator'; export { makeFetch } from '@aztec/foundation/json-rpc/client'; diff --git a/yarn-project/pxe/src/pxe_service/pxe_service.ts b/yarn-project/pxe/src/pxe_service/pxe_service.ts index 37f4eb7dcb3..51fb9d9ef77 100644 --- a/yarn-project/pxe/src/pxe_service/pxe_service.ts +++ b/yarn-project/pxe/src/pxe_service/pxe_service.ts @@ -327,7 +327,7 @@ export class PXEService implements PXE { const deployedContractAddress = txRequest.txContext.isContractDeploymentTx ? txRequest.origin : undefined; const newContract = deployedContractAddress ? await this.db.getContract(deployedContractAddress) : undefined; - const tx = await this.#simulateAndProve(txRequest, newContract); + const tx = await this.simulateAndProve(txRequest, newContract); if (simulatePublic) { await this.#simulatePublicCalls(tx); } @@ -349,7 +349,7 @@ export class PXEService implements PXE { public async viewTx(functionName: string, args: any[], to: AztecAddress, _from?: AztecAddress) { // TODO - Should check if `from` has the permission to call the view function. const functionCall = await this.#getFunctionCall(functionName, args, to); - const executionResult = await this.#simulateUnconstrained(functionCall); + const executionResult = await this.simulateUnconstrained(functionCall); // TODO - Return typed result based on the function artifact. return executionResult; @@ -454,7 +454,7 @@ export class PXEService implements PXE { * @param execRequest - The transaction request object containing details of the contract call. * @returns An object containing the contract address, function artifact, portal contract address, and historical tree roots. */ - async #getSimulationParameters(execRequest: FunctionCall | TxExecutionRequest) { + public async getSimulationParameters(execRequest: FunctionCall | TxExecutionRequest) { const contractAddress = (execRequest as FunctionCall).to ?? (execRequest as TxExecutionRequest).origin; const functionArtifact = await this.contractDataOracle.getFunctionArtifact( contractAddress, @@ -476,10 +476,10 @@ export class PXEService implements PXE { }; } - async #simulate(txRequest: TxExecutionRequest): Promise { + public async simulate(txRequest: TxExecutionRequest): Promise { // TODO - Pause syncing while simulating. - const { contractAddress, functionArtifact, portalContract } = await this.#getSimulationParameters(txRequest); + const { contractAddress, functionArtifact, portalContract } = await this.getSimulationParameters(txRequest); this.log('Executing simulator...'); try { @@ -502,8 +502,8 @@ export class PXEService implements PXE { * @param execRequest - The transaction request object containing the target contract and function data. * @returns The simulation result containing the outputs of the unconstrained function. */ - async #simulateUnconstrained(execRequest: FunctionCall) { - const { contractAddress, functionArtifact } = await this.#getSimulationParameters(execRequest); + public async simulateUnconstrained(execRequest: FunctionCall) { + const { contractAddress, functionArtifact } = await this.getSimulationParameters(execRequest); this.log('Executing unconstrained simulator...'); try { @@ -561,11 +561,11 @@ export class PXEService implements PXE { * @param newContract - Optional. The address of a new contract to be included in the transaction object. * @returns A private transaction object containing the proof, public inputs, and encrypted logs. */ - async #simulateAndProve(txExecutionRequest: TxExecutionRequest, newContract: ContractDao | undefined) { + async simulateAndProve(txExecutionRequest: TxExecutionRequest, newContract: ContractDao | undefined) { // TODO - Pause syncing while simulating. // Get values that allow us to reconstruct the block hash - const executionResult = await this.#simulate(txExecutionRequest); + const executionResult = await this.simulate(txExecutionRequest); const kernelOracle = new KernelOracle(this.contractDataOracle, this.node); const kernelProver = new KernelProver(kernelOracle); diff --git a/yarn-project/types/package.json b/yarn-project/types/package.json index 5c472ea84dc..8f8bff8e7cf 100644 --- a/yarn-project/types/package.json +++ b/yarn-project/types/package.json @@ -37,6 +37,7 @@ "rootDir": "./src" }, "dependencies": { + "@aztec/acir-simulator": "workspace:^", "@aztec/circuits.js": "workspace:^", "@aztec/ethereum": "workspace:^", "@aztec/foundation": "workspace:^", diff --git a/yarn-project/types/src/interfaces/pxe.ts b/yarn-project/types/src/interfaces/pxe.ts index a78cf957bbd..ef3ca2b84be 100644 --- a/yarn-project/types/src/interfaces/pxe.ts +++ b/yarn-project/types/src/interfaces/pxe.ts @@ -12,7 +12,10 @@ import { TxExecutionRequest, TxHash, TxReceipt, + FunctionCall, + ContractDao, } from '@aztec/types'; +// import { ExecutionResult } from '@aztec/acir-simulator'; import { NoteFilter } from '../notes/note_filter.js'; import { DeployedContract } from './deployed-contract.js'; @@ -267,5 +270,48 @@ export interface PXE { * @returns The latest block synchronized for blocks, and the latest block synched for notes for each public key being tracked. */ getSyncStatus(): Promise; + + // STATE CHANNEL ADDITIONS // + + /** + * Retrieves the simulation parameters required to run an ACIR simulation. + * This includes the contract address, function artifact, portal contract address, and historical tree roots. + * + * @param execRequest - The transaction request object containing details of the contract call. + * @returns An object containing the contract address, function artifact, portal contract address, and historical tree roots. + */ + getSimulationParameters(execRequest: FunctionCall | TxExecutionRequest): Promise; + + /** + * Simulate execution of a transaction + * + * @param txRequest - transaction to simulate execution for + * @return The result of the simulation of the kernel proof + */ + simulate(txRequest: TxExecutionRequest): Promise; + + /** + * Simulate an unconstrained transaction on the given contract, without considering constraints set by ACIR. + * The simulation parameters are fetched using ContractDataOracle and executed using AcirSimulator. + * Returns the simulation result containing the outputs of the unconstrained function. + * + * @param execRequest - The transaction request object containing the target contract and function data. + * @returns The simulation result containing the outputs of the unconstrained function. + */ + simulateUnconstrained(execRequest: FunctionCall): Promise; + + /** + * Simulate a transaction, generate a kernel proof, and create a private transaction object. + * The function takes in a transaction request and an ECDSA signature. It simulates the transaction, + * then generates a kernel proof using the simulation result. Finally, it creates a private + * transaction object with the generated proof and public inputs. If a new contract address is provided, + * the function will also include the new contract's public functions in the transaction object. + * + * @param txExecutionRequest - The transaction request to be simulated and proved. + * @param signature - The ECDSA signature for the transaction request. + * @param newContract - Optional. The address of a new contract to be included in the transaction object. + * @returns A private transaction object containing the proof, public inputs, and encrypted logs. + */ + simulateAndProve(txExecutionRequest: TxExecutionRequest, newContract: ContractDao | undefined): Promise; } // docs:end:pxe-interface diff --git a/yarn-project/yarn.lock b/yarn-project/yarn.lock index 935cf87829a..ff1ffe64a86 100644 --- a/yarn-project/yarn.lock +++ b/yarn-project/yarn.lock @@ -838,6 +838,7 @@ __metadata: version: 0.0.0-use.local resolution: "@aztec/types@workspace:types" dependencies: + "@aztec/acir-simulator": "workspace:^" "@aztec/circuits.js": "workspace:^" "@aztec/ethereum": "workspace:^" "@aztec/foundation": "workspace:^" From 978cdd356cb9a5778e8c4cb799355ed6cb0e955b Mon Sep 17 00:00:00 2001 From: Jack Gilcrest Date: Sat, 9 Dec 2023 22:01:09 -0700 Subject: [PATCH 2/9] add implementation to wallet for pxe --- .../aztec.js/src/wallet/base_wallet.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/yarn-project/aztec.js/src/wallet/base_wallet.ts b/yarn-project/aztec.js/src/wallet/base_wallet.ts index 17b6ea22e03..834da3bc7bf 100644 --- a/yarn-project/aztec.js/src/wallet/base_wallet.ts +++ b/yarn-project/aztec.js/src/wallet/base_wallet.ts @@ -18,6 +18,7 @@ import { TxExecutionRequest, TxHash, TxReceipt, + ContractDao } from '@aztec/types'; import { CompleteAddress } from '../index.js'; @@ -117,4 +118,21 @@ export abstract class BaseWallet implements Wallet { addAuthWitness(authWitness: AuthWitness) { return this.pxe.addAuthWitness(authWitness); } + /// state channel /// + getSimulationParameters(execRequest: FunctionCall | TxExecutionRequest) { + return this.pxe.getSimulationParameters(execRequest); + } + + simulate(txRequest: TxExecutionRequest) { + return this.pxe.simulate(txRequest); + } + + simulateUnconstrained(execRequest: FunctionCall) { + return this.pxe.simulateUnconstrained(execRequest); + } + + simulateAndProve(txExecutionRequest: TxExecutionRequest, newContract: ContractDao | undefined) { + return this.pxe.simulateAndProve(txExecutionRequest, newContract); + } + } From fd4f0ff9620215e0e144e0251662cda27c9162c4 Mon Sep 17 00:00:00 2001 From: Jack Gilcrest Date: Sun, 10 Dec 2023 14:07:00 -0700 Subject: [PATCH 3/9] push for remote --- .../src/json-rpc/server/json_rpc_server.ts | 1 + ...6e927411b6b375064925b8088b0cd141771-audit.json | 15 +++++++++++++++ yarn-project/pxe/src/pxe_http/pxe_http_server.ts | 1 + yarn-project/pxe/src/pxe_service/pxe_service.ts | 2 ++ 4 files changed, 19 insertions(+) create mode 100644 yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json diff --git a/yarn-project/foundation/src/json-rpc/server/json_rpc_server.ts b/yarn-project/foundation/src/json-rpc/server/json_rpc_server.ts index 64651ea30bf..98adf25b835 100644 --- a/yarn-project/foundation/src/json-rpc/server/json_rpc_server.ts +++ b/yarn-project/foundation/src/json-rpc/server/json_rpc_server.ts @@ -134,6 +134,7 @@ export class JsonRpcServer { router.post('/', async (ctx: Koa.Context) => { const { params = [], jsonrpc, id, method } = ctx.request.body as any; // Ignore if not a function + console.log("REQUEST: ", ctx.request.body); if ( method === 'constructor' || typeof proto[method] !== 'function' || diff --git a/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json b/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json new file mode 100644 index 00000000000..1d6a3294d7e --- /dev/null +++ b/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json @@ -0,0 +1,15 @@ +{ + "keep": { + "days": false, + "amount": 5 + }, + "auditLog": "log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json", + "files": [ + { + "date": 1702241505455, + "name": "log/aztec-sandbox-2023-12-10.debug.log", + "hash": "69090b4bd3d286b65ce870848b37e7c1f66844a737bf34ee0eed2581361ae901" + } + ], + "hashType": "sha256" +} \ No newline at end of file diff --git a/yarn-project/pxe/src/pxe_http/pxe_http_server.ts b/yarn-project/pxe/src/pxe_http/pxe_http_server.ts index 0cde8a8b396..8fd0bce103b 100644 --- a/yarn-project/pxe/src/pxe_http/pxe_http_server.ts +++ b/yarn-project/pxe/src/pxe_http/pxe_http_server.ts @@ -20,6 +20,7 @@ import { TxExecutionRequest, TxHash, TxReceipt, + ContractDao } from '@aztec/types'; import http from 'http'; diff --git a/yarn-project/pxe/src/pxe_service/pxe_service.ts b/yarn-project/pxe/src/pxe_service/pxe_service.ts index 51fb9d9ef77..2030b7f8426 100644 --- a/yarn-project/pxe/src/pxe_service/pxe_service.ts +++ b/yarn-project/pxe/src/pxe_service/pxe_service.ts @@ -455,6 +455,8 @@ export class PXEService implements PXE { * @returns An object containing the contract address, function artifact, portal contract address, and historical tree roots. */ public async getSimulationParameters(execRequest: FunctionCall | TxExecutionRequest) { + this.log("Retrieving simulation parameters for contract's function..."); + this.log(`Contract address: ${JSON.stringify(execRequest)}`); const contractAddress = (execRequest as FunctionCall).to ?? (execRequest as TxExecutionRequest).origin; const functionArtifact = await this.contractDataOracle.getFunctionArtifact( contractAddress, From 8285caa440e519db10fe9f448c8ad39f051aa25a Mon Sep 17 00:00:00 2001 From: Jack Gilcrest Date: Sun, 10 Dec 2023 15:49:13 -0700 Subject: [PATCH 4/9] Runs correctly with state channel rpc --- .../src/json-rpc/server/json_rpc_server.ts | 1 - yarn-project/pxe/src/pxe_service/pxe_service.ts | 14 ++------------ 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/yarn-project/foundation/src/json-rpc/server/json_rpc_server.ts b/yarn-project/foundation/src/json-rpc/server/json_rpc_server.ts index 98adf25b835..64651ea30bf 100644 --- a/yarn-project/foundation/src/json-rpc/server/json_rpc_server.ts +++ b/yarn-project/foundation/src/json-rpc/server/json_rpc_server.ts @@ -134,7 +134,6 @@ export class JsonRpcServer { router.post('/', async (ctx: Koa.Context) => { const { params = [], jsonrpc, id, method } = ctx.request.body as any; // Ignore if not a function - console.log("REQUEST: ", ctx.request.body); if ( method === 'constructor' || typeof proto[method] !== 'function' || diff --git a/yarn-project/pxe/src/pxe_service/pxe_service.ts b/yarn-project/pxe/src/pxe_service/pxe_service.ts index 2030b7f8426..30668c055f9 100644 --- a/yarn-project/pxe/src/pxe_service/pxe_service.ts +++ b/yarn-project/pxe/src/pxe_service/pxe_service.ts @@ -321,18 +321,15 @@ export class PXEService implements PXE { if (txRequest.functionData.isInternal === undefined) { throw new Error(`Unspecified internal are not allowed`); } - // We get the contract address from origin, since contract deployments are signalled as origin from their own address // TODO: Is this ok? Should it be changed to be from ZERO? const deployedContractAddress = txRequest.txContext.isContractDeploymentTx ? txRequest.origin : undefined; const newContract = deployedContractAddress ? await this.db.getContract(deployedContractAddress) : undefined; - const tx = await this.simulateAndProve(txRequest, newContract); if (simulatePublic) { await this.#simulatePublicCalls(tx); } this.log.info(`Executed local simulation for ${await tx.getTxHash()}`); - return tx; } @@ -456,7 +453,8 @@ export class PXEService implements PXE { */ public async getSimulationParameters(execRequest: FunctionCall | TxExecutionRequest) { this.log("Retrieving simulation parameters for contract's function..."); - this.log(`Contract address: ${JSON.stringify(execRequest)}`); + // this.log(`Contract address: ${JSON.stringify(execRequest)}`); + // commented out cuz it says "Do not know how to serialize a bigint" (???) const contractAddress = (execRequest as FunctionCall).to ?? (execRequest as TxExecutionRequest).origin; const functionArtifact = await this.contractDataOracle.getFunctionArtifact( contractAddress, @@ -467,7 +465,6 @@ export class PXEService implements PXE { execRequest.functionData.selector, ); const portalContract = await this.contractDataOracle.getPortalContractAddress(contractAddress); - return { contractAddress, functionArtifact: { @@ -480,9 +477,7 @@ export class PXEService implements PXE { public async simulate(txRequest: TxExecutionRequest): Promise { // TODO - Pause syncing while simulating. - const { contractAddress, functionArtifact, portalContract } = await this.getSimulationParameters(txRequest); - this.log('Executing simulator...'); try { const result = await this.simulator.run(txRequest, functionArtifact, contractAddress, portalContract); @@ -568,16 +563,13 @@ export class PXEService implements PXE { // Get values that allow us to reconstruct the block hash const executionResult = await this.simulate(txExecutionRequest); - const kernelOracle = new KernelOracle(this.contractDataOracle, this.node); const kernelProver = new KernelProver(kernelOracle); this.log(`Executing kernel prover...`); const { proof, publicInputs } = await kernelProver.prove(txExecutionRequest.toTxRequest(), executionResult); - const encryptedLogs = new TxL2Logs(collectEncryptedLogs(executionResult)); const unencryptedLogs = new TxL2Logs(collectUnencryptedLogs(executionResult)); const enqueuedPublicFunctions = collectEnqueuedPublicFunctionCalls(executionResult); - const extendedContractData = newContract ? new ExtendedContractData( new ContractData(newContract.completeAddress.address, newContract.portalContract), @@ -586,11 +578,9 @@ export class PXEService implements PXE { newContract.completeAddress.publicKey, ) : ExtendedContractData.empty(); - // HACK(#1639): Manually patches the ordering of the public call stack // TODO(#757): Enforce proper ordering of enqueued public calls await this.patchPublicCallStackOrdering(publicInputs, enqueuedPublicFunctions); - return new Tx(publicInputs, proof, encryptedLogs, unencryptedLogs, enqueuedPublicFunctions, [extendedContractData]); } From fb6d60111cb7d93ee392245dba611ecf8aae0df8 Mon Sep 17 00:00:00 2001 From: Jack Gilcrest Date: Sun, 10 Dec 2023 19:07:38 -0700 Subject: [PATCH 5/9] expose proveInit and proveInner through pxe rpc --- .vscode/settings.json | 2 +- .../src/client/execution_result.ts | 58 +------ yarn-project/aztec.js/src/pxe_client.ts | 4 +- .../aztec.js/src/wallet/base_wallet.ts | 19 ++- yarn-project/boxes/blank-react/tsconfig.json | 2 +- yarn-project/boxes/blank/tsconfig.json | 2 +- yarn-project/boxes/token/tsconfig.json | 2 +- ...7411b6b375064925b8088b0cd141771-audit.json | 28 ++-- .../pxe/src/kernel_prover/kernel_prover.ts | 148 +++++++++++++++--- .../pxe/src/kernel_prover/proof_creator.ts | 33 +--- .../pxe/src/pxe_http/pxe_http_server.ts | 1 - .../pxe/src/pxe_service/pxe_service.ts | 29 ++++ yarn-project/types/package.json | 1 - .../types/src/interfaces/execution_result.ts | 56 +++++++ yarn-project/types/src/interfaces/index.ts | 3 + .../types/src/interfaces/output_note_data.ts | 21 +++ .../types/src/interfaces/proof_output.ts | 35 +++++ yarn-project/types/src/interfaces/pxe.ts | 30 +++- yarn-project/types/tsconfig.json | 2 +- yarn-project/yarn.lock | 1 - 20 files changed, 339 insertions(+), 138 deletions(-) create mode 100644 yarn-project/types/src/interfaces/execution_result.ts create mode 100644 yarn-project/types/src/interfaces/output_note_data.ts create mode 100644 yarn-project/types/src/interfaces/proof_output.ts diff --git a/.vscode/settings.json b/.vscode/settings.json index 663bec37526..9fdf3df4b32 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -121,7 +121,7 @@ "editor.defaultFormatter": "hashicorp.terraform" }, "[typescript]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" + "editor.defaultFormatter": "vscode.typescript-language-features" }, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" diff --git a/yarn-project/acir-simulator/src/client/execution_result.ts b/yarn-project/acir-simulator/src/client/execution_result.ts index 8dc812ee963..a9065cb9db7 100644 --- a/yarn-project/acir-simulator/src/client/execution_result.ts +++ b/yarn-project/acir-simulator/src/client/execution_result.ts @@ -1,56 +1,5 @@ -import { PrivateCallStackItem, PublicCallRequest, ReadRequestMembershipWitness } from '@aztec/circuits.js'; -import { DecodedReturn } from '@aztec/foundation/abi'; -import { Fr } from '@aztec/foundation/fields'; -import { FunctionL2Logs, Note } from '@aztec/types'; - -import { ACVMField } from '../acvm/index.js'; - -/** - * The contents of a new note. - */ -export interface NoteAndSlot { - /** The note. */ - note: Note; - /** The storage slot of the note. */ - storageSlot: Fr; -} - -/** - * The result of executing a private function. - */ -export interface ExecutionResult { - // Needed for prover - /** The ACIR bytecode. */ - acir: Buffer; - /** The verification key. */ - vk: Buffer; - /** The partial witness. */ - partialWitness: Map; - // Needed for the verifier (kernel) - /** The call stack item. */ - callStackItem: PrivateCallStackItem; - /** The partially filled-in read request membership witnesses for commitments being read. */ - readRequestPartialWitnesses: ReadRequestMembershipWitness[]; - // Needed when we enable chained txs. The new notes can be cached and used in a later transaction. - /** The notes created in the executed function. */ - newNotes: NoteAndSlot[]; - /** The decoded return values of the executed function. */ - returnValues: DecodedReturn; - /** The nested executions. */ - nestedExecutions: this[]; - /** Enqueued public function execution requests to be picked up by the sequencer. */ - enqueuedPublicFunctionCalls: PublicCallRequest[]; - /** - * Encrypted logs emitted during execution of this function call. - * Note: These are preimages to `encryptedLogsHash`. - */ - encryptedLogs: FunctionL2Logs; - /** - * Unencrypted logs emitted during execution of this function call. - * Note: These are preimages to `unencryptedLogsHash`. - */ - unencryptedLogs: FunctionL2Logs; -} +import { PublicCallRequest } from '@aztec/circuits.js'; +import { FunctionL2Logs, ExecutionResult, NoteAndSlot } from '@aztec/types'; /** * Collect all encrypted logs across all nested executions. @@ -85,3 +34,6 @@ export function collectEnqueuedPublicFunctionCalls(execResult: ExecutionResult): ...[...execResult.nestedExecutions].flatMap(collectEnqueuedPublicFunctionCalls), ].sort((a, b) => b.sideEffectCounter! - a.sideEffectCounter!); // REVERSE SORT! } + +// @TODO if reasonable - replace imports across codebase with @aztec/types instead of re-exporting here +export { ExecutionResult, NoteAndSlot } \ No newline at end of file diff --git a/yarn-project/aztec.js/src/pxe_client.ts b/yarn-project/aztec.js/src/pxe_client.ts index 23842767915..fbcf8d6d1aa 100644 --- a/yarn-project/aztec.js/src/pxe_client.ts +++ b/yarn-project/aztec.js/src/pxe_client.ts @@ -23,10 +23,10 @@ import { Tx, TxExecutionRequest, TxHash, - TxReceipt, - // FunctionCall, + TxReceipt, // FunctionCall, // ContractDao, } from '@aztec/types'; + // import { ExecutionResult } from '@aztec/acir-simulator'; export { makeFetch } from '@aztec/foundation/json-rpc/client'; diff --git a/yarn-project/aztec.js/src/wallet/base_wallet.ts b/yarn-project/aztec.js/src/wallet/base_wallet.ts index 834da3bc7bf..0d66260daf1 100644 --- a/yarn-project/aztec.js/src/wallet/base_wallet.ts +++ b/yarn-project/aztec.js/src/wallet/base_wallet.ts @@ -1,6 +1,7 @@ -import { AztecAddress, Fr, GrumpkinPrivateKey, PartialAddress } from '@aztec/circuits.js'; +import { AztecAddress, Fr, GrumpkinPrivateKey, PartialAddress, VerificationKey } from '@aztec/circuits.js'; import { AuthWitness, + ContractDao, ContractData, DeployedContract, ExtendedContractData, @@ -18,7 +19,9 @@ import { TxExecutionRequest, TxHash, TxReceipt, - ContractDao + ProofOutput, + OutputNoteData, + ExecutionResult } from '@aztec/types'; import { CompleteAddress } from '../index.js'; @@ -135,4 +138,16 @@ export abstract class BaseWallet implements Wallet { return this.pxe.simulateAndProve(txExecutionRequest, newContract); } + proveInit(request: TxExecutionRequest) { + return this.pxe.proveInit(request); + } + + proveInner( + previousProof: ProofOutput, + previousVK: VerificationKey, + executionStack: ExecutionResult[], + newNotes: { [commitmentStr: string]: OutputNoteData }, + ) { + return this.pxe.proveInner(previousProof, previousVK, executionStack, newNotes); + } } diff --git a/yarn-project/boxes/blank-react/tsconfig.json b/yarn-project/boxes/blank-react/tsconfig.json index 831cd23a900..58b5db08c46 100644 --- a/yarn-project/boxes/blank-react/tsconfig.json +++ b/yarn-project/boxes/blank-react/tsconfig.json @@ -25,6 +25,6 @@ "references": [ { "path": "../../aztec.js" - }, + } ] } diff --git a/yarn-project/boxes/blank/tsconfig.json b/yarn-project/boxes/blank/tsconfig.json index 831cd23a900..58b5db08c46 100644 --- a/yarn-project/boxes/blank/tsconfig.json +++ b/yarn-project/boxes/blank/tsconfig.json @@ -25,6 +25,6 @@ "references": [ { "path": "../../aztec.js" - }, + } ] } diff --git a/yarn-project/boxes/token/tsconfig.json b/yarn-project/boxes/token/tsconfig.json index 831cd23a900..58b5db08c46 100644 --- a/yarn-project/boxes/token/tsconfig.json +++ b/yarn-project/boxes/token/tsconfig.json @@ -25,6 +25,6 @@ "references": [ { "path": "../../aztec.js" - }, + } ] } diff --git a/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json b/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json index 1d6a3294d7e..d9f2bf7fba2 100644 --- a/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json +++ b/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json @@ -1,15 +1,15 @@ { - "keep": { - "days": false, - "amount": 5 - }, - "auditLog": "log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json", - "files": [ - { - "date": 1702241505455, - "name": "log/aztec-sandbox-2023-12-10.debug.log", - "hash": "69090b4bd3d286b65ce870848b37e7c1f66844a737bf34ee0eed2581361ae901" - } - ], - "hashType": "sha256" -} \ No newline at end of file + "keep": { + "days": false, + "amount": 5 + }, + "auditLog": "log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json", + "files": [ + { + "date": 1702241505455, + "name": "log/aztec-sandbox-2023-12-10.debug.log", + "hash": "69090b4bd3d286b65ce870848b37e7c1f66844a737bf34ee0eed2581361ae901" + } + ], + "hashType": "sha256" +} diff --git a/yarn-project/pxe/src/kernel_prover/kernel_prover.ts b/yarn-project/pxe/src/kernel_prover/kernel_prover.ts index d69b2babe5c..65b528d24b7 100644 --- a/yarn-project/pxe/src/kernel_prover/kernel_prover.ts +++ b/yarn-project/pxe/src/kernel_prover/kernel_prover.ts @@ -1,4 +1,4 @@ -import { ExecutionResult, NoteAndSlot } from '@aztec/acir-simulator'; +import { ExecutionResult } from '@aztec/acir-simulator'; import { AztecAddress, CONTRACT_TREE_HEIGHT, @@ -29,28 +29,9 @@ import { padArrayEnd } from '@aztec/foundation/collection'; import { Tuple, assertLength } from '@aztec/foundation/serialize'; import { pushTestData } from '@aztec/foundation/testing'; -import { KernelProofCreator, ProofCreator, ProofOutput, ProofOutputFinal } from './proof_creator.js'; +import { KernelProofCreator, ProofCreator } from './proof_creator.js'; import { ProvingDataOracle } from './proving_data_oracle.js'; - -/** - * Represents an output note data object. - * Contains the contract address, new note data and commitment for the note, - * resulting from the execution of a transaction in the Aztec network. - */ -export interface OutputNoteData { - /** - * The address of the contract the note was created in. - */ - contractAddress: AztecAddress; - /** - * The encrypted note data for an output note. - */ - data: NoteAndSlot; - /** - * The unique value representing the note. - */ - commitment: Fr; -} +import { ProofOutput, ProofOutputFinal, OutputNoteData } from '@aztec/types'; /** * Represents the output data of the Kernel Prover. @@ -72,6 +53,126 @@ export interface KernelProverOutput extends ProofOutputFinal { export class KernelProver { constructor(private oracle: ProvingDataOracle, private proofCreator: ProofCreator = new KernelProofCreator()) {} + /** + * Generates a proof of the first i + * @param txRequest + * @param executionResult + * @returns + */ + async proveInit( + txRequest: TxRequest, + executionResult: ExecutionResult, + ): Promise<{ + proof: ProofOutput; + previousVK: VerificationKey; + executionStack: ExecutionResult[]; + newNotes: { [commitmentStr: string]: OutputNoteData }; + }> { + const executionStack = [executionResult]; + const newNotes: { [commitmentStr: string]: OutputNoteData } = {}; + let previousVerificationKey = VerificationKey.makeFake(); + + let output: ProofOutput = { + publicInputs: PrivateKernelPublicInputs.empty(), + proof: makeEmptyProof(), + }; + + /// BUILD PRIVATE CALL DATA FOR CURRENT ITERATION /// + const currentExecution = executionStack.pop()!; + executionStack.push(...currentExecution.nestedExecutions); + + const privateCallRequests = currentExecution.nestedExecutions.map(result => result.callStackItem.toCallRequest()); + const publicCallRequests = currentExecution.enqueuedPublicFunctionCalls.map(result => result.toCallRequest()); + + const readRequestMembershipWitnesses = currentExecution.readRequestPartialWitnesses; + for (let rr = 0; rr < readRequestMembershipWitnesses.length; rr++) { + const rrWitness = readRequestMembershipWitnesses[rr]; + if (!rrWitness.isTransient) { + const membershipWitness = await this.oracle.getNoteMembershipWitness(rrWitness.leafIndex.toBigInt()); + rrWitness.siblingPath = membershipWitness.siblingPath; + } + } + readRequestMembershipWitnesses.push( + ...Array(MAX_READ_REQUESTS_PER_CALL - readRequestMembershipWitnesses.length) + .fill(0) + .map(() => ReadRequestMembershipWitness.empty(BigInt(0))), + ); + const privateCallData = await this.createPrivateCallData( + currentExecution, + privateCallRequests, + publicCallRequests, + readRequestMembershipWitnesses, + ); + + /// PROVE /// + const proofInput = new PrivateKernelInputsInit(txRequest, privateCallData); + output = await this.proofCreator.createProofInit(proofInput); + + (await this.getNewNotes(currentExecution)).forEach(n => { + newNotes[n.commitment.toString()] = n; + }); + previousVerificationKey = privateCallData.vk; + + return { proof: output, previousVK: previousVerificationKey, executionStack, newNotes }; + } + + async proveInner( + previousProof: ProofOutput, + previousVK: VerificationKey, + executionStack: ExecutionResult[], + newNotes: { [commitmentStr: string]: OutputNoteData }, + ): Promise<{ + proof: ProofOutput; + previousVK: VerificationKey; + executionStack: ExecutionResult[]; + newNotes: { [commitmentStr: string]: OutputNoteData }; + }> { + /// BUILD PRIVATE CALL DATA FOR CURRENT ITERATION /// + const currentExecution = executionStack.pop()!; + executionStack.push(...currentExecution.nestedExecutions); + + const privateCallRequests = currentExecution.nestedExecutions.map(result => result.callStackItem.toCallRequest()); + const publicCallRequests = currentExecution.enqueuedPublicFunctionCalls.map(result => result.toCallRequest()); + + const readRequestMembershipWitnesses = currentExecution.readRequestPartialWitnesses; + for (let rr = 0; rr < readRequestMembershipWitnesses.length; rr++) { + const rrWitness = readRequestMembershipWitnesses[rr]; + if (!rrWitness.isTransient) { + const membershipWitness = await this.oracle.getNoteMembershipWitness(rrWitness.leafIndex.toBigInt()); + rrWitness.siblingPath = membershipWitness.siblingPath; + } + } + readRequestMembershipWitnesses.push( + ...Array(MAX_READ_REQUESTS_PER_CALL - readRequestMembershipWitnesses.length) + .fill(0) + .map(() => ReadRequestMembershipWitness.empty(BigInt(0))), + ); + const privateCallData = await this.createPrivateCallData( + currentExecution, + privateCallRequests, + publicCallRequests, + readRequestMembershipWitnesses, + ); + /// BUILD PREVIOUS KERNEL DATA /// + const previousVkMembershipWitness = await this.oracle.getVkMembershipWitness(previousVK); + const previousKernelData = new PreviousKernelData( + previousProof.publicInputs, + previousProof.proof, + previousVK, + Number(previousVkMembershipWitness.leafIndex), + assertLength(previousVkMembershipWitness.siblingPath, VK_TREE_HEIGHT), + ); + + const proofInput = new PrivateKernelInputsInner(previousKernelData, privateCallData); + const output = await this.proofCreator.createProofInner(proofInput); + + (await this.getNewNotes(currentExecution)).forEach(n => { + newNotes[n.commitment.toString()] = n; + }); + + return { proof: output, previousVK: privateCallData.vk, executionStack, newNotes }; + } + /** * Generate a proof for a given transaction request and execution result. * The function iterates through the nested executions in the execution result, creates private call data, @@ -323,3 +424,6 @@ export class KernelProver { return hints; } } + +// @todo update references instead of rexporting +export { OutputNoteData }; \ No newline at end of file diff --git a/yarn-project/pxe/src/kernel_prover/proof_creator.ts b/yarn-project/pxe/src/kernel_prover/proof_creator.ts index 3d17fe44dd1..2763db16959 100644 --- a/yarn-project/pxe/src/kernel_prover/proof_creator.ts +++ b/yarn-project/pxe/src/kernel_prover/proof_creator.ts @@ -1,11 +1,8 @@ import { - KernelCircuitPublicInputs, - KernelCircuitPublicInputsFinal, PrivateCircuitPublicInputs, PrivateKernelInputsInit, PrivateKernelInputsInner, PrivateKernelInputsOrdering, - Proof, makeEmptyProof, } from '@aztec/circuits.js'; import { siloCommitment } from '@aztec/circuits.js/abis'; @@ -14,36 +11,8 @@ import { createDebugLogger } from '@aztec/foundation/log'; import { elapsed } from '@aztec/foundation/timer'; import { executeInit, executeInner, executeOrdering } from '@aztec/noir-protocol-circuits'; import { CircuitSimulationStats } from '@aztec/types/stats'; +import { ProofOutput, ProofOutputFinal } from '@aztec/types'; -/** - * Represents the output of the proof creation process for init and inner private kernel circuit. - * Contains the public inputs required for the init and inner private kernel circuit and the generated proof. - */ -export interface ProofOutput { - /** - * The public inputs required for the proof generation process. - */ - publicInputs: KernelCircuitPublicInputs; - /** - * The zk-SNARK proof for the kernel execution. - */ - proof: Proof; -} - -/** - * Represents the output of the proof creation process for final ordering private kernel circuit. - * Contains the public inputs required for the final ordering private kernel circuit and the generated proof. - */ -export interface ProofOutputFinal { - /** - * The public inputs required for the proof generation process. - */ - publicInputs: KernelCircuitPublicInputsFinal; - /** - * The zk-SNARK proof for the kernel execution. - */ - proof: Proof; -} /** * ProofCreator provides functionality to create and validate proofs, and retrieve diff --git a/yarn-project/pxe/src/pxe_http/pxe_http_server.ts b/yarn-project/pxe/src/pxe_http/pxe_http_server.ts index 8fd0bce103b..0cde8a8b396 100644 --- a/yarn-project/pxe/src/pxe_http/pxe_http_server.ts +++ b/yarn-project/pxe/src/pxe_http/pxe_http_server.ts @@ -20,7 +20,6 @@ import { TxExecutionRequest, TxHash, TxReceipt, - ContractDao } from '@aztec/types'; import http from 'http'; diff --git a/yarn-project/pxe/src/pxe_service/pxe_service.ts b/yarn-project/pxe/src/pxe_service/pxe_service.ts index 30668c055f9..a80202a3d71 100644 --- a/yarn-project/pxe/src/pxe_service/pxe_service.ts +++ b/yarn-project/pxe/src/pxe_service/pxe_service.ts @@ -16,6 +16,7 @@ import { MAX_PUBLIC_CALL_STACK_LENGTH_PER_TX, PartialAddress, PublicCallRequest, + VerificationKey, } from '@aztec/circuits.js'; import { computeCommitmentNonce, siloNullifier } from '@aztec/circuits.js/abis'; import { encodeArguments } from '@aztec/foundation/abi'; @@ -51,6 +52,9 @@ import { getNewContractPublicFunctions, isNoirCallStackUnresolved, toContractDao, + ProofOutput, + ProofOutputFinal, + OutputNoteData } from '@aztec/types'; import { PXEServiceConfig, getPackageInfo } from '../config/index.js'; @@ -668,4 +672,29 @@ export class PXEService implements PXE { public getKeyStore() { return this.keyStore; } + + /// STATE CHANNEL API /// + public async proveInit(request: TxExecutionRequest) { + const executionResult = await this.simulate(request); + const kernelOracle = new KernelOracle(this.contractDataOracle, this.node); + const kernelProver = new KernelProver(kernelOracle); + this.log(`Executing kernel prover for single init proof...`); + const result = await kernelProver.proveInit(request.toTxRequest(), executionResult); + this.log(`Successfully executed and proved Kernel init proof iteration`); + return result; + } + + public async proveInner( + previousProof: ProofOutput, + previousVK: VerificationKey, + executionStack: ExecutionResult[], + newNotes: { [commitmentStr: string]: OutputNoteData }, + ) { + const kernelOracle = new KernelOracle(this.contractDataOracle, this.node); + const kernelProver = new KernelProver(kernelOracle); + this.log(`Executing kernel prover for single inner proof...`); + const result = await kernelProver.proveInner(previousProof, previousVK, executionStack, newNotes); + this.log(`Successfully executed and proved Kernel inner proof iteration`); + return result; + } } diff --git a/yarn-project/types/package.json b/yarn-project/types/package.json index 8f8bff8e7cf..5c472ea84dc 100644 --- a/yarn-project/types/package.json +++ b/yarn-project/types/package.json @@ -37,7 +37,6 @@ "rootDir": "./src" }, "dependencies": { - "@aztec/acir-simulator": "workspace:^", "@aztec/circuits.js": "workspace:^", "@aztec/ethereum": "workspace:^", "@aztec/foundation": "workspace:^", diff --git a/yarn-project/types/src/interfaces/execution_result.ts b/yarn-project/types/src/interfaces/execution_result.ts new file mode 100644 index 00000000000..0649bdbe171 --- /dev/null +++ b/yarn-project/types/src/interfaces/execution_result.ts @@ -0,0 +1,56 @@ +import { PrivateCallStackItem, PublicCallRequest, ReadRequestMembershipWitness } from '@aztec/circuits.js'; +import { DecodedReturn } from '@aztec/foundation/abi'; +import { Fr } from '@aztec/foundation/fields'; +import { FunctionL2Logs, Note } from '@aztec/types'; + +/** + * ACVMField + */ +type ACVMField = string; + +/** + * The contents of a new note. + */ +export interface NoteAndSlot { + /** The note. */ + note: Note; + /** The storage slot of the note. */ + storageSlot: Fr; +} + +/** + * The result of executing a private function. + */ +export interface ExecutionResult { + // Needed for prover + /** The ACIR bytecode. */ + acir: Buffer; + /** The verification key. */ + vk: Buffer; + /** The partial witness. */ + partialWitness: Map; + // Needed for the verifier (kernel) + /** The call stack item. */ + callStackItem: PrivateCallStackItem; + /** The partially filled-in read request membership witnesses for commitments being read. */ + readRequestPartialWitnesses: ReadRequestMembershipWitness[]; + // Needed when we enable chained txs. The new notes can be cached and used in a later transaction. + /** The notes created in the executed function. */ + newNotes: NoteAndSlot[]; + /** The decoded return values of the executed function. */ + returnValues: DecodedReturn; + /** The nested executions. */ + nestedExecutions: this[]; + /** Enqueued public function execution requests to be picked up by the sequencer. */ + enqueuedPublicFunctionCalls: PublicCallRequest[]; + /** + * Encrypted logs emitted during execution of this function call. + * Note: These are preimages to `encryptedLogsHash`. + */ + encryptedLogs: FunctionL2Logs; + /** + * Unencrypted logs emitted during execution of this function call. + * Note: These are preimages to `unencryptedLogsHash`. + */ + unencryptedLogs: FunctionL2Logs; +} \ No newline at end of file diff --git a/yarn-project/types/src/interfaces/index.ts b/yarn-project/types/src/interfaces/index.ts index 44ed98bbed4..6d26061724d 100644 --- a/yarn-project/types/src/interfaces/index.ts +++ b/yarn-project/types/src/interfaces/index.ts @@ -7,3 +7,6 @@ export * from './node-info.js'; export * from './sync-status.js'; export * from './configs.js'; export * from './nullifier_tree.js'; +export * from './execution_result.js'; +export * from './proof_output.js'; +export * from './output_note_data.js'; \ No newline at end of file diff --git a/yarn-project/types/src/interfaces/output_note_data.ts b/yarn-project/types/src/interfaces/output_note_data.ts new file mode 100644 index 00000000000..e8bcfa803ca --- /dev/null +++ b/yarn-project/types/src/interfaces/output_note_data.ts @@ -0,0 +1,21 @@ +import { NoteAndSlot } from './execution_result.js'; +import { AztecAddress, Fr } from '@aztec/circuits.js'; +/** + * Represents an output note data object. + * Contains the contract address, new note data and commitment for the note, + * resulting from the execution of a transaction in the Aztec network. + */ +export interface OutputNoteData { + /** + * The address of the contract the note was created in. + */ + contractAddress: AztecAddress; + /** + * The encrypted note data for an output note. + */ + data: NoteAndSlot; + /** + * The unique value representing the note. + */ + commitment: Fr; +} diff --git a/yarn-project/types/src/interfaces/proof_output.ts b/yarn-project/types/src/interfaces/proof_output.ts new file mode 100644 index 00000000000..bcc2a8680cb --- /dev/null +++ b/yarn-project/types/src/interfaces/proof_output.ts @@ -0,0 +1,35 @@ +import { + KernelCircuitPublicInputs, + KernelCircuitPublicInputsFinal, + Proof, +} from '@aztec/circuits.js'; + +/** + * Represents the output of the proof creation process for init and inner private kernel circuit. + * Contains the public inputs required for the init and inner private kernel circuit and the generated proof. + */ +export interface ProofOutput { + /** + * The public inputs required for the proof generation process. + */ + publicInputs: KernelCircuitPublicInputs; + /** + * The zk-SNARK proof for the kernel execution. + */ + proof: Proof; +} + +/** + * Represents the output of the proof creation process for final ordering private kernel circuit. + * Contains the public inputs required for the final ordering private kernel circuit and the generated proof. + */ +export interface ProofOutputFinal { + /** + * The public inputs required for the proof generation process. + */ + publicInputs: KernelCircuitPublicInputsFinal; + /** + * The zk-SNARK proof for the kernel execution. + */ + proof: Proof; +} \ No newline at end of file diff --git a/yarn-project/types/src/interfaces/pxe.ts b/yarn-project/types/src/interfaces/pxe.ts index ef3ca2b84be..bcdaa01ef10 100644 --- a/yarn-project/types/src/interfaces/pxe.ts +++ b/yarn-project/types/src/interfaces/pxe.ts @@ -1,9 +1,18 @@ -import { AztecAddress, CompleteAddress, Fr, GrumpkinPrivateKey, PartialAddress } from '@aztec/circuits.js'; +import { + AztecAddress, + CompleteAddress, + Fr, + GrumpkinPrivateKey, + PartialAddress, + VerificationKey, +} from '@aztec/circuits.js'; import { AuthWitness, + ContractDao, ContractData, ExtendedContractData, ExtendedNote, + FunctionCall, GetUnencryptedLogsResponse, L2Block, L2Tx, @@ -12,10 +21,10 @@ import { TxExecutionRequest, TxHash, TxReceipt, - FunctionCall, - ContractDao, + ExecutionResult, + ProofOutput, + OutputNoteData, } from '@aztec/types'; -// import { ExecutionResult } from '@aztec/acir-simulator'; import { NoteFilter } from '../notes/note_filter.js'; import { DeployedContract } from './deployed-contract.js'; @@ -284,7 +293,7 @@ export interface PXE { /** * Simulate execution of a transaction - * + * * @param txRequest - transaction to simulate execution for * @return The result of the simulation of the kernel proof */ @@ -313,5 +322,16 @@ export interface PXE { * @returns A private transaction object containing the proof, public inputs, and encrypted logs. */ simulateAndProve(txExecutionRequest: TxExecutionRequest, newContract: ContractDao | undefined): Promise; + + /** Proves a single init kernel proof iteration */ + proveInit(request: TxExecutionRequest): Promise; + + /** Proves a single inner step kernel proof iteration */ + proveInner( + previousProof: ProofOutput, + previousVK: VerificationKey, + executionStack: ExecutionResult[], + newNotes: { [commitmentStr: string]: OutputNoteData }, + ): Promise; } // docs:end:pxe-interface diff --git a/yarn-project/types/tsconfig.json b/yarn-project/types/tsconfig.json index e7053342b34..ddd45e1bca0 100644 --- a/yarn-project/types/tsconfig.json +++ b/yarn-project/types/tsconfig.json @@ -14,7 +14,7 @@ }, { "path": "../foundation" - } + }, ], "include": ["src"] } diff --git a/yarn-project/yarn.lock b/yarn-project/yarn.lock index ff1ffe64a86..935cf87829a 100644 --- a/yarn-project/yarn.lock +++ b/yarn-project/yarn.lock @@ -838,7 +838,6 @@ __metadata: version: 0.0.0-use.local resolution: "@aztec/types@workspace:types" dependencies: - "@aztec/acir-simulator": "workspace:^" "@aztec/circuits.js": "workspace:^" "@aztec/ethereum": "workspace:^" "@aztec/foundation": "workspace:^" From be3090e8cb8b9919c5af100353707d501f20bc4f Mon Sep 17 00:00:00 2001 From: Jack Gilcrest Date: Thu, 14 Dec 2023 19:35:43 -0700 Subject: [PATCH 6/9] pre-merge 0.16.9 --- ...7411b6b375064925b8088b0cd141771-audit.json | 15 + log/aztec-sandbox-2023-12-10.debug.log | 1574 +++++++++++++++++ log/aztec-sandbox.debug.log | 1 + .../pxe/src/kernel_prover/kernel_prover.ts | 4 - 4 files changed, 1590 insertions(+), 4 deletions(-) create mode 100644 log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json create mode 100644 log/aztec-sandbox-2023-12-10.debug.log create mode 120000 log/aztec-sandbox.debug.log diff --git a/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json b/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json new file mode 100644 index 00000000000..453475026dc --- /dev/null +++ b/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json @@ -0,0 +1,15 @@ +{ + "keep": { + "days": false, + "amount": 5 + }, + "auditLog": "log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json", + "files": [ + { + "date": 1702260521572, + "name": "log/aztec-sandbox-2023-12-10.debug.log", + "hash": "ca935fbedccbc0531dcabea0d10061858a4824dea5b0d0b3267aa26a9bc9393d" + } + ], + "hashType": "sha256" +} \ No newline at end of file diff --git a/log/aztec-sandbox-2023-12-10.debug.log b/log/aztec-sandbox-2023-12-10.debug.log new file mode 100644 index 00000000000..11ab1bf6a9f --- /dev/null +++ b/log/aztec-sandbox-2023-12-10.debug.log @@ -0,0 +1,1574 @@ +{"level":"info","message":"Debug logs will be written to /home/jpag/Workground/aztec/aztec-packages/log/aztec-sandbox.debug.log","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:08:41.575Z"} +{"level":"info","message":"Setting up Aztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c), please stand by...","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:08:41.577Z"} +{"level":"warn","message":"Failed to connect to Ethereum node at http://127.0.0.1:8545/. Retrying...","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:08:42.790Z"} +{"level":"info","message":"Shutting down...","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:08:44.318Z"} +{"level":"info","message":"Debug logs will be written to /home/jpag/Workground/aztec/aztec-packages/log/aztec-sandbox.debug.log","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:26.024Z"} +{"level":"info","message":"Setting up Aztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c), please stand by...","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:26.025Z"} +{"level":"debug","message":"Deploying contracts...","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:26.192Z"} +{"level":"debug","message":"Deployed Registry at 0x5fbdb2315678afecb367f032d93f642f64180aa3","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:26.231Z"} +{"level":"debug","message":"Deployed Inbox at 0xe7f1725e7734ce288f8367e1bb143e90bb3f0512","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:26.259Z"} +{"level":"debug","message":"Deployed Outbox at 0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:26.279Z"} +{"level":"debug","message":"Deployed Rollup at 0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:26.300Z"} +{"level":"debug","message":"Deployed contract deployment emitter at 0x5fc8d32690cc91d4c39d9d3abcbd16989f875707","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:26.320Z"} +{"level":"debug","message":"Opening temporary databases","namespace":"aztec:node","timestamp":"2023-12-11T02:09:26.320Z"} +{"level":"debug","message":"Rollup contract address has changed, clearing databases","namespace":"aztec:node","timestamp":"2023-12-11T02:09:26.324Z"} +{"level":"debug","message":"Performing initial chain sync...","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:26.329Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:26.339Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:26.340Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 0, next expected l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:26.341Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:26.555Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:26.580Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 0, next expected l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:26.604Z"} +{"level":"debug","message":"No current L2 block number found in db, starting from 0","namespace":"aztec:world_state","timestamp":"2023-12-11T02:09:26.904Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:p2p","timestamp":"2023-12-11T02:09:26.905Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:world_state","timestamp":"2023-12-11T02:09:26.905Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:world_state","timestamp":"2023-12-11T02:09:26.905Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:world_state","timestamp":"2023-12-11T02:09:26.905Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:p2p","timestamp":"2023-12-11T02:09:26.905Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:p2p","timestamp":"2023-12-11T02:09:26.905Z"} +{"level":"debug","message":"Initialized sequencer with 1-32 txs per block.","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:26.910Z"} +{"level":"debug","message":"Sequencer started","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:26.910Z"} +{"level":"debug","message":"Started Aztec Node against chain 0x7a69 with contracts - \nRollup: 0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9\nRegistry: 0x5fbdb2315678afecb367f032d93f642f64180aa3\nInbox: 0xe7f1725e7734ce288f8367e1bb143e90bb3f0512\nOutbox: 0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0\nContract Emitter: 0x5fc8d32690cc91d4c39d9d3abcbd16989f875707","namespace":"aztec:node","timestamp":"2023-12-11T02:09:26.911Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-11T02:09:26.912Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-11T02:09:26.913Z"} +{"level":"debug","message":"Started","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:09:26.913Z"} +{"level":"info","message":"Started PXE connected to chain 31337 version 1","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:26.914Z"} +{"level":"info","message":"Setting up test accounts...","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:26.914Z"} +{"level":"info","message":"Registered account 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.067Z"} +{"level":"debug","message":"Registered account\n Address: 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n Partial Address: 0x23475465106cc4ee212154ddad52658014ff02442196c340960abfdee1b5424a\n","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.067Z"} +{"level":"info","message":"Registered account 0x1b18a972d54db0283a04abaace5f7b03c3fca5a4b2c0cf113b457de6ea4991e7","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.068Z"} +{"level":"debug","message":"Registered account\n Address: 0x1b18a972d54db0283a04abaace5f7b03c3fca5a4b2c0cf113b457de6ea4991e7\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n Partial Address: 0x0e95521cbc51335c491d50ee6dc31a02a7e83a8124a91f5cc36e97729386afa8\n","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.068Z"} +{"level":"info","message":"Registered account 0x1d30d4de97657983408587c7a91ba6587774b30f0e70224a0658f0357092f495","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.068Z"} +{"level":"debug","message":"Registered account\n Address: 0x1d30d4de97657983408587c7a91ba6587774b30f0e70224a0658f0357092f495\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n Partial Address: 0x28da7022866d4c9687fe7210d9ef4916c75f37b3e526a7609df51d9d46c60085\n","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.069Z"} +{"level":"debug","message":"Adding contract 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:memory_db","timestamp":"2023-12-11T02:09:27.113Z"} +{"level":"debug","message":"Adding contract 0x1b18a972d54db0283a04abaace5f7b03c3fca5a4b2c0cf113b457de6ea4991e7","namespace":"aztec:memory_db","timestamp":"2023-12-11T02:09:27.156Z"} +{"level":"debug","message":"Adding contract 0x1d30d4de97657983408587c7a91ba6587774b30f0e70224a0658f0357092f495","namespace":"aztec:memory_db","timestamp":"2023-12-11T02:09:27.197Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.197Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x1b18a972d54db0283a04abaace5f7b03c3fca5a4b2c0cf113b457de6ea4991e7","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.197Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x1d30d4de97657983408587c7a91ba6587774b30f0e70224a0658f0357092f495","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.198Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.198Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.198Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.198Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.199Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.199Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.199Z"} +{"level":"debug","message":"Executing external function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:09:27.200Z"} +{"level":"debug","message":"Executing external function 0x1b18a972d54db0283a04abaace5f7b03c3fca5a4b2c0cf113b457de6ea4991e7:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:09:27.201Z"} +{"level":"debug","message":"Executing external function 0x1d30d4de97657983408587c7a91ba6587774b30f0e70224a0658f0357092f495:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:09:27.201Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:27.290Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:27.296Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:27.301Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:27.302Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:27.302Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:27.302Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:27.303Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:27.307Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:27.309Z"} +{"level":"debug","message":"Returning from call to 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:09:27.327Z"} +{"level":"debug","message":"Returning from call to 0x1b18a972d54db0283a04abaace5f7b03c3fca5a4b2c0cf113b457de6ea4991e7:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:09:27.331Z"} +{"level":"debug","message":"Returning from call to 0x1d30d4de97657983408587c7a91ba6587774b30f0e70224a0658f0357092f495:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:09:27.334Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.334Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.334Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.334Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.334Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.337Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:27.337Z"} +{"circuitName":"private-kernel-init","duration":456.60704799741507,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:09:27.798Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:09:27.798Z"} +{"circuitName":"private-kernel-init","duration":437.0294310003519,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:09:27.800Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:09:27.800Z"} +{"circuitName":"private-kernel-init","duration":423.59031799435616,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:09:27.802Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:09:27.802Z"} +{"circuitName":"private-kernel-ordering","duration":316.04273699969053,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:09:28.148Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:09:28.148Z"} +{"circuitName":"private-kernel-ordering","duration":308.7523629963398,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:09:28.149Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:09:28.149Z"} +{"circuitName":"private-kernel-ordering","duration":302.1134970039129,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:09:28.150Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:09:28.150Z"} +{"level":"info","message":"Simulating tx 0ff55c60da57c17f33f4a651630717f2f9da9cfe38404193d7f317503004c2c7","namespace":"aztec:node","timestamp":"2023-12-11T02:09:28.152Z"} +{"level":"info","message":"Simulating tx 1657b4991bb560b0ff3109c3beabd9c413af11750b7bee863e1d0e7a878ae6e1","namespace":"aztec:node","timestamp":"2023-12-11T02:09:28.152Z"} +{"level":"info","message":"Simulating tx 094e344cb5e8279a9f794b5f022220afbe652e9d9b96f20fdd4b0b41c4e91ca2","namespace":"aztec:node","timestamp":"2023-12-11T02:09:28.152Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:09:28.171Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:09:28.171Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:09:28.172Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:09:28.172Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:28.199Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:09:28.200Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:09:28.200Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:28.305Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 0, next expected l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:28.942Z"} +{"level":"debug","message":"Processing tx 1657b4991bb560b0ff3109c3beabd9c413af11750b7bee863e1d0e7a878ae6e1","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:09:28.997Z"} +{"level":"info","message":"Simulated tx 1657b4991bb560b0ff3109c3beabd9c413af11750b7bee863e1d0e7a878ae6e1 succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:09:28.997Z"} +{"level":"info","message":"Executed local simulation for 1657b4991bb560b0ff3109c3beabd9c413af11750b7bee863e1d0e7a878ae6e1","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:28.998Z"} +{"level":"debug","message":"Processing tx 094e344cb5e8279a9f794b5f022220afbe652e9d9b96f20fdd4b0b41c4e91ca2","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:09:28.999Z"} +{"level":"info","message":"Simulated tx 094e344cb5e8279a9f794b5f022220afbe652e9d9b96f20fdd4b0b41c4e91ca2 succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:09:28.999Z"} +{"level":"info","message":"Executed local simulation for 094e344cb5e8279a9f794b5f022220afbe652e9d9b96f20fdd4b0b41c4e91ca2","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:28.999Z"} +{"level":"debug","message":"Processing tx 0ff55c60da57c17f33f4a651630717f2f9da9cfe38404193d7f317503004c2c7","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:09:29.001Z"} +{"level":"info","message":"Simulated tx 0ff55c60da57c17f33f4a651630717f2f9da9cfe38404193d7f317503004c2c7 succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:09:29.001Z"} +{"level":"info","message":"Executed local simulation for 0ff55c60da57c17f33f4a651630717f2f9da9cfe38404193d7f317503004c2c7","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:29.002Z"} +{"level":"info","message":"Sending transaction 0ff55c60da57c17f33f4a651630717f2f9da9cfe38404193d7f317503004c2c7","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:29.002Z"} +{"level":"info","message":"Sending transaction 1657b4991bb560b0ff3109c3beabd9c413af11750b7bee863e1d0e7a878ae6e1","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:29.002Z"} +{"level":"info","message":"Sending transaction 094e344cb5e8279a9f794b5f022220afbe652e9d9b96f20fdd4b0b41c4e91ca2","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:09:29.002Z"} +{"level":"info","message":"Received tx 0ff55c60da57c17f33f4a651630717f2f9da9cfe38404193d7f317503004c2c7","namespace":"aztec:node","timestamp":"2023-12-11T02:09:29.003Z"} +{"level":"info","message":"Received tx 1657b4991bb560b0ff3109c3beabd9c413af11750b7bee863e1d0e7a878ae6e1","namespace":"aztec:node","timestamp":"2023-12-11T02:09:29.003Z"} +{"level":"info","message":"Received tx 094e344cb5e8279a9f794b5f022220afbe652e9d9b96f20fdd4b0b41c4e91ca2","namespace":"aztec:node","timestamp":"2023-12-11T02:09:29.003Z"} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 0ff55c60da57c17f33f4a651630717f2f9da9cfe38404193d7f317503004c2c7","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15675,"proofSize":0,"size":25628,"timestamp":"2023-12-11T02:09:29.004Z","txHash":"0x0ff55c60da57c17f33f4a651630717f2f9da9cfe38404193d7f317503004c2c7","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1657b4991bb560b0ff3109c3beabd9c413af11750b7bee863e1d0e7a878ae6e1","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15675,"proofSize":0,"size":25628,"timestamp":"2023-12-11T02:09:29.004Z","txHash":"0x1657b4991bb560b0ff3109c3beabd9c413af11750b7bee863e1d0e7a878ae6e1","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 094e344cb5e8279a9f794b5f022220afbe652e9d9b96f20fdd4b0b41c4e91ca2","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15675,"proofSize":0,"size":25628,"timestamp":"2023-12-11T02:09:29.005Z","txHash":"0x094e344cb5e8279a9f794b5f022220afbe652e9d9b96f20fdd4b0b41c4e91ca2","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"info","message":"Retrieved 3 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:29.159Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:09:29.168Z"} +{"level":"info","message":"Building block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:29.173Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:09:29.173Z"} +{"level":"debug","message":"Processing tx 0ff55c60da57c17f33f4a651630717f2f9da9cfe38404193d7f317503004c2c7","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:09:29.179Z"} +{"level":"debug","message":"Processing tx 1657b4991bb560b0ff3109c3beabd9c413af11750b7bee863e1d0e7a878ae6e1","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:09:29.179Z"} +{"level":"debug","message":"Processing tx 094e344cb5e8279a9f794b5f022220afbe652e9d9b96f20fdd4b0b41c4e91ca2","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:09:29.179Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:29.180Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:29.181Z"} +{"level":"debug","message":"Assembling block with txs 0ff55c60da57c17f33f4a651630717f2f9da9cfe38404193d7f317503004c2c7, 1657b4991bb560b0ff3109c3beabd9c413af11750b7bee863e1d0e7a878ae6e1, 094e344cb5e8279a9f794b5f022220afbe652e9d9b96f20fdd4b0b41c4e91ca2","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:29.181Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000001","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:29.181Z"} +{"level":"debug","message":"Running base rollup for 0ff55c60da57c17f33f4a651630717f2f9da9cfe38404193d7f317503004c2c7 1657b4991bb560b0ff3109c3beabd9c413af11750b7bee863e1d0e7a878ae6e1","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:09:29.182Z"} +{"circuitName":"base-rollup","duration":2028.7015319988132,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:09:31.910Z"} +{"level":"debug","message":"Running base rollup for 094e344cb5e8279a9f794b5f022220afbe652e9d9b96f20fdd4b0b41c4e91ca2 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:09:31.911Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:31.921Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:31.922Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 0, next expected l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:31.922Z"} +{"circuitName":"base-rollup","duration":1876.438924998045,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:09:34.427Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:09:34.427Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:34.437Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:34.438Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 0, next expected l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:34.438Z"} +{"circuitName":"root-rollup","duration":85.34893500059843,"eventName":"circuit-simulation","inputSize":4072,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-11T02:09:34.555Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:09:34.555Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:34.575Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:34.575Z"} +{"blockNumber":1,"duration":5430.09668199718,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-built","level":"debug","message":"Assembled block 1","namespace":"aztec:sequencer","publicProcessDuration":4.695152997970581,"rollupCircuitsDuration":5404.227330997586,"timestamp":"2023-12-11T02:09:34.586Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Publishing extended contract data with block hash 0fbe222926f75b3d2b735e480da5a9b56f540846890dc01f67931c7502a61d0b","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:34.587Z"} +{"level":"debug","message":"Bytecode is 15527 bytes and require 0.12228295110887097 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:09:34.588Z"} +{"level":"debug","message":"Bytecode is 15527 bytes and require 0.12228295110887097 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:09:34.612Z"} +{"level":"debug","message":"Bytecode is 15527 bytes and require 0.12228295110887097 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:09:34.636Z"} +{"level":"debug","message":"Successfully published new contract data for block 1","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:34.660Z"} +{"blockNumber":1,"calldataGas":110964,"calldataSize":22596,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"rollup-published-to-l1","gasPrice":"1816096882","gasUsed":"435023","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-11T02:09:34.728Z","transactionHash":"0xb27610fdf1fd6f45a25f73d4d3a26ce41d47a554204d55f0769ded8464bf96c7","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Successfully published block 1","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:34.728Z"} +{"level":"info","message":"Submitted rollup block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:34.729Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:35.449Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:35.449Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 0, next expected l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:35.449Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:35.460Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:35.460Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:35.467Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:35.467Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:35.468Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:35.468Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:09:35.469Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:09:35.492Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:09:35.495Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:35.496Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:35.564Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:35.564Z"} +{"level":"debug","message":"Block 1 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:09:35.565Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:35.567Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:35.567Z"} +{"level":"debug","message":"Synched to block 1","namespace":"aztec:p2p","timestamp":"2023-12-11T02:09:35.597Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 4 root 0x0a6d74cd71a45ec82c6aba0e4b85de91f9fa99e729dbfc1fa345b4c4d3be8ca2","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:09:35.608Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 384 root 0x04e94f85bedd249894f64d762a931c33a17ce57ca8d643e74850b28dbb77f498","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:09:35.608Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 256 root 0x150f9a784495c5ed8d0c19921df7daa114c5011728bfe5081d995a72deab8edd","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:09:35.609Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 0 root 0x0ccaafdc9c353743970d4e305ae73641ce694f07db67886d2769c9ed88e969d8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:09:35.609Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 16 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:09:35.609Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 2 root 0x1c25b3003dea92001d2517aa780a6f76cd0df4c2c845d45b50aee6253f2f7bcb","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:09:35.609Z"} +{"blockNumber":1,"duration":138.23001500219107,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-11T02:09:35.703Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:09:35.729Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:36.432Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:36.432Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:36.452Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:36.452Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:36.471Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:36.471Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:36.484Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:36.484Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:36.486Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:36.486Z"} +{"level":"debug","message":"Forwarding 3 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:09:36.487Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:09:36.489Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:36.500Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:36.501Z"} +{"level":"debug","message":"Added note for contract 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2917741343feff6f642cd113e6a8f3964e3982594dd875de3662974f6f28e5ab","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:09:36.518Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:09:36.519Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:09:36.521Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:36.531Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:36.532Z"} +{"level":"debug","message":"Added note for contract 0x1b18a972d54db0283a04abaace5f7b03c3fca5a4b2c0cf113b457de6ea4991e7 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x24191d21451e884df3753a8ad95bff9fafc15d598175e580afc25ee7693810a0","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:09:36.539Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:09:36.539Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:09:36.542Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:36.552Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:09:36.553Z"} +{"level":"debug","message":"Added note for contract 0x1d30d4de97657983408587c7a91ba6587774b30f0e70224a0658f0357092f495 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x1b6181d6168ea3512fb10c5a501e396b1562ecba80984b2e86ea6135585c4c75","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:09:36.557Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:09:36.558Z"} +{"level":"debug","message":"No new blocks to process, current block number: 10","namespace":"aztec:archiver","timestamp":"2023-12-11T02:09:36.561Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:37.451Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:37.452Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:37.475Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:37.475Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:37.486Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:09:37.486Z"} +{"level":"info","message":"Aztec Node JSON-RPC Server listening on port 8079","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:37.500Z"} +{"level":"info","message":"PXE JSON-RPC Server listening on port 8080","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:37.500Z"} +{"level":"info","message":"\n _\n /\\ | |\n / \\ ___| |_ ___ ___ \n / /\\ \\ |_ / __/ _ \\/ __|\n / ____ \\ / /| || __/ (__ \n/_/___ \\_\\/___|\\__\\___|\\___|\n\nhttps://github.com/AztecProtocol\n\nInitial Accounts:\n\n Address: 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022\n Partial Address: 0x23475465106cc4ee212154ddad52658014ff02442196c340960abfdee1b5424a\n Private Key: 0x2153536ff6628eee01cf4024889ff977a18d9fa61d0e414422f7681cf085c281\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n\n Address: 0x1b18a972d54db0283a04abaace5f7b03c3fca5a4b2c0cf113b457de6ea4991e7\n Partial Address: 0x0e95521cbc51335c491d50ee6dc31a02a7e83a8124a91f5cc36e97729386afa8\n Private Key: 0x00aebd1b4be76efa44f5ee655c20bf9ea60f7ae44b9a7fd1fd9f189c7a0b0cda\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n\n Address: 0x1d30d4de97657983408587c7a91ba6587774b30f0e70224a0658f0357092f495\n Partial Address: 0x28da7022866d4c9687fe7210d9ef4916c75f37b3e526a7609df51d9d46c60085\n Private Key: 0x0f6addf0da06c33293df974a565b03d1ab096090d907d98055a8b7f4954e120c\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n\nAztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c) is now ready for use!","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:09:37.501Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.021Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.021Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.023Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.026Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.027Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.027Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.029Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.029Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.030Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.192Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.192Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.193Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.236Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.237Z"} +{"level":"debug","message":"Adding contract 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f","namespace":"aztec:memory_db","timestamp":"2023-12-11T02:17:23.239Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:23.239Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.239Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f90fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce0d37888bdae0114f5ddb418d1aac53bf3ce69b7a77340d430e5151ffdc4009112967fa0f953bfac0c210e82d71cb07db4736e47f8fe384ac846fa36a567693dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.244Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.244Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:23.244Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:23.247Z"} +{"level":"debug","message":"Executing external function 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:23.248Z"} +{"level":"debug","message":"Returning from call to 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:23.255Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:23.255Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:23.255Z"} +{"circuitName":"private-kernel-init","duration":135.49017300456762,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:17:23.393Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:17:23.394Z"} +{"circuitName":"private-kernel-ordering","duration":105.21882800012827,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:17:23.509Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:17:23.509Z"} +{"level":"info","message":"Simulating tx 00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f","namespace":"aztec:node","timestamp":"2023-12-11T02:17:23.510Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000002: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000002, 0x0000000000000000000000000000000000000000000000000000000065766f61)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:17:23.517Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:23.518Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:23.518Z"} +{"level":"debug","message":"Processing tx 00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:17:23.808Z"} +{"level":"info","message":"Simulated tx 00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:17:23.808Z"} +{"level":"info","message":"Executed local simulation for 00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:23.809Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f2e5bccfc9354de639de505dd247deb9a4e87951a10365a4c313686e1f82547b60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f0000000000000000000000000000000000000000000000002af7b8dc31826f1a1399777251d65c6ac33695baaa4793c94d01551a05fab6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.810Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f2e5bccfc9354de639de505dd247deb9a4e87951a10365a4c313686e1f82547b60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.824Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.825Z"} +{"level":"info","message":"Sending transaction 00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:23.825Z"} +{"level":"info","message":"Received tx 00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f","namespace":"aztec:node","timestamp":"2023-12-11T02:17:23.825Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-11T02:17:23.826Z","txHash":"0x00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.826Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.829Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.829Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:23.830Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:23.853Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000002: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000002, 0x0000000000000000000000000000000000000000000000000000000065766f61)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:17:23.859Z"} +{"level":"info","message":"Building block 2 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:23.860Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:23.861Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:23.861Z"} +{"level":"debug","message":"Processing tx 00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:17:23.863Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:23.864Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:23.864Z"} +{"level":"debug","message":"Assembling block with txs 00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:23.864Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000002","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:23.865Z"} +{"level":"debug","message":"Running base rollup for 00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:23.865Z"} +{"circuitName":"base-rollup","duration":1880.8484780043364,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:17:26.400Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:26.401Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:26.407Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:26.407Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:26.408Z"} +{"circuitName":"base-rollup","duration":1764.8925409987569,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:17:28.751Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:28.751Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:28.754Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:28.755Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:28.756Z"} +{"circuitName":"root-rollup","duration":84.79380299896002,"eventName":"circuit-simulation","inputSize":4072,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-11T02:17:28.884Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:28.884Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:28.901Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:28.901Z"} +{"blockNumber":2,"duration":5058.584830999374,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 2","namespace":"aztec:sequencer","publicProcessDuration":0.9624539986252785,"rollupCircuitsDuration":5045.494749002159,"timestamp":"2023-12-11T02:17:28.910Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash 5fb3437b9d95fe0bfb10f48942214840e78450ac37fc5fdd754a5ea122f66d44","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:28.912Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:17:28.912Z"} +{"level":"debug","message":"Successfully published new contract data for block 2","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:28.927Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:29.761Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:29.761Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:29.762Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:29.765Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:29.765Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 11, next expected l2 block number: 2","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:29.766Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:29.775Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:29.775Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:29.781Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 2","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:29.783Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 2","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:17:29.783Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:29.784Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:29.911Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:29.912Z"} +{"level":"debug","message":"Block 2 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:29.912Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:29.913Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:29.913Z"} +{"level":"debug","message":"Synched to block 2","namespace":"aztec:p2p","timestamp":"2023-12-11T02:17:29.932Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 8 root 0x0fac25b4e8e5f0f1d561ab1a78d82681b1b3b15fc573cf7c4efeece55d2620b9","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:29.941Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 640 root 0x270dc44cf450ce615be2ba2d94c65aa7f1af105593f8f0cb4840f9f1c90aa27d","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:29.941Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 512 root 0x150f9a784495c5ed8d0c19921df7daa114c5011728bfe5081d995a72deab8edd","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:29.941Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 0 root 0x0ccaafdc9c353743970d4e305ae73641ce694f07db67886d2769c9ed88e969d8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:29.941Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 32 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:29.941Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 3 root 0x2e21b57cd2fe1848f74145c2c0b67f0dcf180ef6b5b318a1c960bf644eabf5dd","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:29.941Z"} +{"blockNumber":2,"duration":35.727546997368336,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-11T02:17:29.948Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"blockNumber":2,"calldataGas":93864,"calldataSize":21828,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1743079435","gasUsed":"370666","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-11T02:17:29.990Z","transactionHash":"0x7a5ddd6a83522fd805290110a1b41501c8aca3e9f83b34533c79f2d2c6cf26d7","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 2","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:29.991Z"} +{"level":"info","message":"Submitted rollup block 2 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:29.991Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:30.752Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:30.752Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:30.753Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:30.753Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:17:30.754Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:30.755Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:30.755Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:30.755Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.766Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.766Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:30.767Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:30.767Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '00f12aa7e42ffc72da0d376903621e98645f039684578847bf6be56d131fef0f',\n status: 'mined',\n error: '',\n blockHash: '6ca2a563fa6be4aaa828e74b73bfebaec7f5c4c7a39827211f01038a30f1bbf8',\n blockNumber: 2,\n contractAddress: '0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.787Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.791Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.791Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 2,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 2,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 2,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 2\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.791Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.794Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.794Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f0000000000000000000000000000000000000000000000002af7b8dc31826f1a1399777251d65c6ac33695baaa4793c94d01551a05fab6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.794Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.799Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.799Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f0000000000000000000000000000000000000000000000002af7b8dc31826f1a1399777251d65c6ac33695baaa4793c94d01551a05fab6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.799Z"} +{"level":"debug","message":"No new blocks to process, current block number: 12","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:30.812Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf02299fd60790001002a722e5c27b5d757af833943639316e8e7f738892bd857b151825dff1413c8430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a19729d98985bab052a85a53ebdf884bba2ce651ab14676f5426b6b105e7aa2ca0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001119729d98985bab052a85a53ebdf884bba2ce651ab14676f5426b6b105e7aa2ca00000000000000000000000000000000000000000000000000000000379cfa1a0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105238aac12ef643cde375b1b32d035eb957b0628ebb67e8c84d8268963005d4a2a722e5c27b5d757af833943639316e8e7f738892bd857b151825dff1413c84300000001302a43f0a71d55b325eb7c1ff60b94ab5694d41c0c803c50e457350945de963d00000040000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000ce00000000000000000000000000000000000000000000000000000000000000e600000000000000000000000000000000000000000000000000000000000000a1000000000000000000000000000000000000000000000000000000000000005e000000000000000000000000000000000000000000000000000000000000008100000000000000000000000000000000000000000000000000000000000000e10000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000760000000000000000000000000000000000000000000000000000000000000059000000000000000000000000000000000000000000000000000000000000001b0000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004f00000000000000000000000000000000000000000000000000000000000000cc000000000000000000000000000000000000000000000000000000000000008e000000000000000000000000000000000000000000000000000000000000003d000000000000000000000000000000000000000000000000000000000000008b0000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000005100000000000000000000000000000000000000000000000000000000000000de00000000000000000000000000000000000000000000000000000000000000f4000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000b5000000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000094000000000000000000000000000000000000000000000000000000000000008c000000000000000000000000000000000000000000000000000000000000007a0000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000004900000000000000000000000000000000000000000000000000000000000000bf000000000000000000000000000000000000000000000000000000000000002300000000000000000000000000000000000000000000000000000000000000c4000000000000000000000000000000000000000000000000000000000000005900000000000000000000000000000000000000000000000000000000000000b50000000000000000000000000000000000000000000000000000000000000055000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000c3000000000000000000000000000000000000000000000000000000000000005b00000000000000000000000000000000000000000000000000000000000000ca00000000000000000000000000000000000000000000000000000000000000ad00000000000000000000000000000000000000000000000000000000000000f5000000000000000000000000000000000000000000000000000000000000007900000000000000000000000000000000000000000000000000000000000000ce00000000000000000000000000000000000000000000000000000000000000a4000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000930000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000008700000000000000000000000000000000000000000000000000000000000000f700000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000db00000000000000000000000000000000000000000000000000000000000000df00000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000003600000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000000006d'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.813Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:30.814Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:30.814Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:30.814Z"} +{"level":"debug","message":"Executing external function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:30.814Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:30.831Z"} +{"level":"debug","message":"Returning 1 notes for 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1965f6b5972afdef0c08035bff5d4a606abad43c9d3c6e2becc40f8629fbe3c7:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:17:30.832Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:30.841Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:30.880Z"} +{"level":"debug","message":"Calling private function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:379cfa1a from 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:17:30.880Z"} +{"level":"debug","message":"Executing external function 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f:379cfa1a","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:30.883Z"} +{"level":"debug","message":"Oracle callback getRandomField","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:30.887Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:30.887Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:30.888Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:30.891Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:30.892Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:30.893Z"} +{"level":"debug","message":"Returning from call to 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f:379cfa1a","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:30.899Z"} +{"level":"debug","message":"Returning from call to 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:31.009Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:31.009Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:31.009Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-11T02:17:31.048Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:31.049Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-11T02:17:31.058Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-11T02:17:31.058Z"} +{"circuitName":"private-kernel-init","duration":169.29387399554253,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:17:31.235Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:17:31.235Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-11T02:17:31.252Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-11T02:17:31.253Z"} +{"circuitName":"private-kernel-inner","duration":248.5590509995818,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:17:31.509Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:17:31.509Z"} +{"circuitName":"private-kernel-ordering","duration":104.48950600624084,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:17:31.624Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:17:31.624Z"} +{"level":"info","message":"Simulating tx 257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134","namespace":"aztec:node","timestamp":"2023-12-11T02:17:31.624Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000003: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000003, 0x0000000000000000000000000000000000000000000000000000000065767139)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:17:31.632Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:31.633Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:31.633Z"} +{"level":"debug","message":"Processing tx 257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:17:31.904Z"} +{"level":"info","message":"Simulated tx 257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134 succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:17:31.904Z"} +{"level":"info","message":"Executed local simulation for 257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:31.904Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2002c11607ce14e7e33ade02d1b256d027bbb978ea32cc1c394ca99637fdb9b9de3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d1342c5e1597c844b4019b1b62b1ce01deb3b4ba3f9c61d858e2da0ac4c2bd431e250000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c0000000000000114000001104fb8793acdfc10f205359e54ac693a990f95f9c8b3d06941bde33d72f6492cf739aabc399c5405773ec23a37b4503e2338b6e7c175ab2b88c10df11ec7c4d6c0028d38e655a4260d0a2a481d295c1b902851b898f566d2b8bab48165558a6fb21d2a75070513210dc05c17fcef3116adad013570eb50f416932f3a6dc13bba899950369b6b6db392280965aca80eb3d602ef295cbdf13aa5de30db82d9b5b3596b2fe2ebcdc37d45e1735142d8f9f3f696db1841cdabbafde8b5821da84104d67d2c5557f8914757c36907f680c302830d0fe055786cb18d5cf63b1c0624665cb51d788c73aae10eed2b9341d6f56904115eb2158b776fb1fc353188a2709b49c2199cd8c3b80c7c99bdebfb62623d71',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:31.905Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2002c11607ce14e7e33ade02d1b256d027bbb978ea32cc1c394ca99637fdb9b9de3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d1342c5e1597c844b4019b1b62b1ce01deb3b4ba3f9c61d858e2da0ac4c2bd431e250000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c0000000000000114000001104fb8793acdfc10f205359e54ac693a990f95f9c8b3d06941bde33d72f6492cf739aabc399c5405773ec23a37b4503e2338b6e7c175ab2b88c10df11ec7c4d6c0028d38e655a4260d0a2a481d295c1b902851b898f566d2b8bab48165558a6fb21d2a75070513210dc05c17fcef3116adad013570eb50f416932f3a6dc13bba899950369b6b6db392280965aca80eb3d602ef295cbdf13aa5de30db82d9b5b3596b2fe2ebcdc37d45e1735142d8f9f3f696db1841cdabbafde8b5821da84104d67d2c5557f8914757c36907f680c302830d0fe055786cb18d5cf63b1c0624665cb51d788c73aae10eed2b9341d6f56904115eb2158b776fb1fc353188a2709b49c2199cd8c3b80c7c99bdebfb62623d71',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:31.911Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:31.912Z"} +{"level":"info","message":"Sending transaction 257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:31.912Z"} +{"level":"info","message":"Received tx 257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134","namespace":"aztec:node","timestamp":"2023-12-11T02:17:31.912Z"} +{"encryptedLogCount":1,"encryptedLogSize":288,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10145,"timestamp":"2023-12-11T02:17:31.913Z","txHash":"0x257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:31.913Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:31.915Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:31.915Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:31.916Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:32.050Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000003: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000003, 0x0000000000000000000000000000000000000000000000000000000065767139)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:17:32.055Z"} +{"level":"info","message":"Building block 3 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:32.055Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:32.056Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:32.056Z"} +{"level":"debug","message":"Processing tx 257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:17:32.058Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:32.059Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:32.059Z"} +{"level":"debug","message":"Assembling block with txs 257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:32.059Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000003","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:32.059Z"} +{"level":"debug","message":"Running base rollup for 257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:32.059Z"} +{"circuitName":"base-rollup","duration":1848.6402240023017,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:17:34.511Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:34.511Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:34.513Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:34.514Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:34.514Z"} +{"circuitName":"base-rollup","duration":1831.6919369995594,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:17:36.928Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:36.928Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:36.934Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:36.934Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:36.936Z"} +{"circuitName":"root-rollup","duration":87.45872800052166,"eventName":"circuit-simulation","inputSize":4072,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-11T02:17:37.060Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:37.060Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:37.078Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:37.078Z"} +{"blockNumber":3,"duration":5030.016907997429,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-built","level":"debug","message":"Assembled block 3","namespace":"aztec:sequencer","publicProcessDuration":0.7218289971351624,"rollupCircuitsDuration":5020.123484998941,"timestamp":"2023-12-11T02:17:37.079Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash 5e1b890b731a643928ae1ac44547a5df6fbcb3c5f52c04c5cb7609dbed4508f4","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:37.081Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:17:37.081Z"} +{"level":"debug","message":"Successfully published new contract data for block 3","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:37.093Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:37.941Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:37.941Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:37.942Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:37.945Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:37.945Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 13, next expected l2 block number: 3","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:37.945Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:37.952Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:37.953Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:37.958Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 3","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:37.959Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 3","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:17:37.960Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:37.960Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:38.085Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:38.086Z"} +{"level":"debug","message":"Block 3 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:38.086Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:38.086Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:38.087Z"} +{"level":"debug","message":"Synched to block 3","namespace":"aztec:p2p","timestamp":"2023-12-11T02:17:38.105Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 12 root 0x0fac25b4e8e5f0f1d561ab1a78d82681b1b3b15fc573cf7c4efeece55d2620b9","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:38.115Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 896 root 0x1e024b4e218578007d8025b5eb827495f2fe1afaa671437213c50a2f49b4857e","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:38.115Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 768 root 0x13f2cdda8f8a90e101e112f15c62dce7d4e9bc3ecf5911eeef0e53e596f81c13","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:38.115Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 0 root 0x0ccaafdc9c353743970d4e305ae73641ce694f07db67886d2769c9ed88e969d8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:38.115Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 48 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:38.115Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 4 root 0x0cf045f719c51f9dbec9c702e9d7ff3950c31c0703f9e2cf9038e722b13f575c","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:38.116Z"} +{"blockNumber":3,"duration":57.926169998943806,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-11T02:17:38.144Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":3,"calldataGas":97980,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"rollup-published-to-l1","gasPrice":"1686813337","gasUsed":"381082","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-11T02:17:38.156Z","transactionHash":"0x37b0ef9d7ce75f32bf42b117cb14150e0347ed5057ba0295ec5d46813c2d2ee6","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 3","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:38.157Z"} +{"level":"info","message":"Submitted rollup block 3 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:38.157Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:38.930Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:38.930Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:38.931Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:38.931Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:17:38.932Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:17:38.953Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:38.964Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:38.965Z"} +{"level":"debug","message":"Added note for contract 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f at slot 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48 with nullifier 0x205c2f4ccb2a89bde9f9ccfc2308ca0268c8dc39a27f9d8f506e9736b7fa7d9a","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:38.981Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:38.982Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:38.983Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:38.983Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:38.984Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:38.984Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:38.985Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:38.985Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '257d4e39874883c2e3e65ed8a974eb9f1700fcaf58e184560a0a18231850d134',\n status: 'mined',\n error: '',\n blockHash: 'bc0f88398441c3cb7ffe623a0875d7b4f66696385575df11c68f17e36297d866',\n blockNumber: 3,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:38.995Z"} +{"level":"debug","message":"No new blocks to process, current block number: 14","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:38.997Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:38.998Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:38.998Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 3,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 3,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 3,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 3\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:38.998Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:39.000Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:39.001Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f0000000000000000000000000000000000000000000000002af7b8dc31826f1a1399777251d65c6ac33695baaa4793c94d01551a05fab6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:39.001Z"} +{"level":"debug","message":"JsonProxy:call viewTx [\n 'get_counter',\n [\n {\n type: 'AztecAddress',\n data: '0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022'\n }\n ],\n {\n type: 'Fr',\n data: '0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f'\n },\n null\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:39.005Z"} +{"level":"debug","message":"JsonProxy:call viewTx <- [\n 'get_counter',\n [\n AztecAddress {\n asBuffer: \n }\n ],\n Fr {\n asBuffer: \n },\n undefined\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:39.006Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:39.006Z"} +{"level":"debug","message":"Executing unconstrained simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:39.013Z"} +{"level":"debug","message":"Executing unconstrained function 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f:46725bdd","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:17:39.013Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.021Z"} +{"level":"debug","message":"Unconstrained simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:39.026Z"} +{"level":"debug","message":"JsonProxy:call viewTx -> { type: 'bigint', data: '0' }","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:39.027Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:39.032Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:39.033Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f0000000000000000000000000000000000000000000000002af7b8dc31826f1a1399777251d65c6ac33695baaa4793c94d01551a05fab6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:39.033Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf02299fd607900010021fc8b110bb72d3945e7c6387b8ffb923897f7ffdc1dab6e7e8555fdc101f62c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007fe06ed20e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010ca18249c756b8476c7aa5534d229a82c8867dc99c1b5e2b52eec2bd4aac177d21fc8b110bb72d3945e7c6387b8ffb923897f7ffdc1dab6e7e8555fdc101f62c000000012f836f1f68aae1c3b59845331816b130cfa6bcf908300f3e73686a089db07b42000000400000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000006600000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000095000000000000000000000000000000000000000000000000000000000000009b000000000000000000000000000000000000000000000000000000000000008e000000000000000000000000000000000000000000000000000000000000006a00000000000000000000000000000000000000000000000000000000000000a6000000000000000000000000000000000000000000000000000000000000006f000000000000000000000000000000000000000000000000000000000000003d0000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000008c00000000000000000000000000000000000000000000000000000000000000d5000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000eb000000000000000000000000000000000000000000000000000000000000009f000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000000092000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000d6000000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000b2000000000000000000000000000000000000000000000000000000000000003f00000000000000000000000000000000000000000000000000000000000000ec000000000000000000000000000000000000000000000000000000000000006e000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000000000000000000000000000000000000000d90000000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004f00000000000000000000000000000000000000000000000000000000000000e500000000000000000000000000000000000000000000000000000000000000de00000000000000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000cd000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000f3000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000a80000000000000000000000000000000000000000000000000000000000000037000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000ec00000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000002f000000000000000000000000000000000000000000000000000000000000009a00000000000000000000000000000000000000000000000000000000000000cf00000000000000000000000000000000000000000000000000000000000000c300000000000000000000000000000000000000000000000000000000000000c300000000000000000000000000000000000000000000000000000000000000960000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000000053000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000d5000000000000000000000000000000000000000000000000000000000000007c0000000000000000000000000000000000000000000000000000000000000032'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:39.044Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:39.044Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:39.044Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:39.045Z"} +{"level":"debug","message":"Executing external function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:39.045Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.060Z"} +{"level":"debug","message":"Returning 1 notes for 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1965f6b5972afdef0c08035bff5d4a606abad43c9d3c6e2becc40f8629fbe3c7:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:17:39.060Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.070Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.093Z"} +{"level":"debug","message":"Calling private function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:7fe06ed2 from 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:17:39.093Z"} +{"level":"debug","message":"Executing external function 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f:7fe06ed2","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:39.097Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.102Z"} +{"level":"debug","message":"Returning 1 notes for 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x1f01ab451a350ad14f52a862a9e7e1d98c6096760be259856a4f0c74613ad161:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x243f6148f7ef7bdff07433332a2387528e054dd9fd9ccce91e9bb22b24e8176d,0x0000000000000000000000000000000000000000000000000000000000000000,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:17:39.102Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.119Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.120Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.123Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.126Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.127Z"} +{"level":"debug","message":"Returning 1 notes for 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x0000000000000000000000000000000000000000000000000000000000000000:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x243f6148f7ef7bdff07433332a2387528e054dd9fd9ccce91e9bb22b24e8176d,0x0000000000000000000000000000000000000000000000000000000000000000,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:17:39.127Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.142Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.143Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.146Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.149Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.149Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:39.150Z"} +{"level":"debug","message":"Returning from call to 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f:7fe06ed2","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:39.158Z"} +{"level":"debug","message":"Returning from call to 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:39.254Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:39.254Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:39.254Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-11T02:17:39.263Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:39.263Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-11T02:17:39.264Z"} +{"circuitName":"private-kernel-init","duration":167.0489759966731,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:17:39.433Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:17:39.433Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-11T02:17:39.442Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-11T02:17:39.443Z"} +{"circuitName":"private-kernel-inner","duration":240.64180999994278,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:17:39.686Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:17:39.687Z"} +{"circuitName":"private-kernel-ordering","duration":106.38578400015831,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:17:39.803Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:17:39.803Z"} +{"level":"info","message":"Simulating tx 07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd","namespace":"aztec:node","timestamp":"2023-12-11T02:17:39.804Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000004: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000004, 0x0000000000000000000000000000000000000000000000000000000065767142)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:17:39.809Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:39.810Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:39.810Z"} +{"level":"debug","message":"Processing tx 07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:17:40.079Z"} +{"level":"info","message":"Simulated tx 07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:17:40.079Z"} +{"level":"info","message":"Executed local simulation for 07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:40.079Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2002a62df5c39adb4d8a817d3eda889f6060ae72fef8d8322e13e97529652727fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd205c2f4ccb2a89bde9f9ccfc2308ca0268c8dc39a27f9d8f506e9736b7fa7d9a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240287cd7b856ac68939c43031755fd7f9bcb541970c505781b833b4d40f506640700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c0000000000000114000001106baa7adca53c3fb8d71c15593f545eb45312ce0e8956736ce3f43d52372b63483d7de57df20a9faf251df8e5a12a5860448fe4bb720b1f9aa303e62d94d7f73b4f27cfa817e41832ea9b8ed87b31432944fb359c29f01962e80a112b17ca8de4a4c79345cb9f353d3dd5fb2060426be113cd1a03bc754a7e2d96a804d80965a11f04f068683405cb2e122a0bce1e37001b2016b966acfead97d102ce4f6fab0c57227c51e2c50ae6438b65297aaf5bce2ce516442c333a84f0cd5faee91605b7d0e0210112f74a4646a3e9b66314375303e28987266281d31a21b85319b58d0b9fd1cb9de87634418dcc9194cdb810ca07cbf5c2ff0281ac5679f643571fde0153bbfa254a2e567496bf0b6a3c6b6c2e',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:40.080Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2002a62df5c39adb4d8a817d3eda889f6060ae72fef8d8322e13e97529652727fbf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd205c2f4ccb2a89bde9f9ccfc2308ca0268c8dc39a27f9d8f506e9736b7fa7d9a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240287cd7b856ac68939c43031755fd7f9bcb541970c505781b833b4d40f506640700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c0000000000000114000001106baa7adca53c3fb8d71c15593f545eb45312ce0e8956736ce3f43d52372b63483d7de57df20a9faf251df8e5a12a5860448fe4bb720b1f9aa303e62d94d7f73b4f27cfa817e41832ea9b8ed87b31432944fb359c29f01962e80a112b17ca8de4a4c79345cb9f353d3dd5fb2060426be113cd1a03bc754a7e2d96a804d80965a11f04f068683405cb2e122a0bce1e37001b2016b966acfead97d102ce4f6fab0c57227c51e2c50ae6438b65297aaf5bce2ce516442c333a84f0cd5faee91605b7d0e0210112f74a4646a3e9b66314375303e28987266281d31a21b85319b58d0b9fd1cb9de87634418dcc9194cdb810ca07cbf5c2ff0281ac5679f643571fde0153bbfa254a2e567496bf0b6a3c6b6c2e',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:40.087Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:40.088Z"} +{"level":"info","message":"Sending transaction 07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:40.088Z"} +{"level":"info","message":"Received tx 07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd","namespace":"aztec:node","timestamp":"2023-12-11T02:17:40.088Z"} +{"encryptedLogCount":1,"encryptedLogSize":288,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10145,"timestamp":"2023-12-11T02:17:40.089Z","txHash":"0x07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:40.089Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:40.091Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:40.091Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:40.092Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:40.264Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000004: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000004, 0x0000000000000000000000000000000000000000000000000000000065767142)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:17:40.269Z"} +{"level":"info","message":"Building block 4 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:40.269Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:40.270Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:40.270Z"} +{"level":"debug","message":"Processing tx 07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:17:40.272Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:40.273Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:40.273Z"} +{"level":"debug","message":"Assembling block with txs 07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:40.273Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000004","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:40.273Z"} +{"level":"debug","message":"Running base rollup for 07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:40.273Z"} +{"circuitName":"base-rollup","duration":1831.153044000268,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:17:42.694Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:42.695Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:42.700Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:42.700Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:42.701Z"} +{"circuitName":"base-rollup","duration":1756.233509004116,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:17:45.028Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:45.028Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:45.031Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:45.031Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:45.032Z"} +{"circuitName":"root-rollup","duration":84.6528040021658,"eventName":"circuit-simulation","inputSize":4072,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-11T02:17:45.150Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:17:45.151Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:45.167Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:45.167Z"} +{"blockNumber":4,"duration":4905.398001998663,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-built","level":"debug","message":"Assembled block 4","namespace":"aztec:sequencer","publicProcessDuration":0.7789660021662712,"rollupCircuitsDuration":4894.995277002454,"timestamp":"2023-12-11T02:17:45.168Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash 9f633178cdd43254495137eb05a70e12aa9d11b767cb84c8512a2ff099a4aaf1","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:45.170Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:17:45.170Z"} +{"level":"debug","message":"Successfully published new contract data for block 4","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:45.181Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:46.036Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:46.037Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:46.037Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:46.041Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:46.042Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 15, next expected l2 block number: 4","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:46.042Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:46.047Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:46.048Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:46.051Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 4","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:46.052Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 4","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:17:46.052Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:46.052Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:46.171Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:46.172Z"} +{"level":"debug","message":"Block 4 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:46.172Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:46.173Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:46.173Z"} +{"level":"debug","message":"Synched to block 4","namespace":"aztec:p2p","timestamp":"2023-12-11T02:17:46.190Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 16 root 0x0fac25b4e8e5f0f1d561ab1a78d82681b1b3b15fc573cf7c4efeece55d2620b9","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:46.199Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1152 root 0x0cde5c55d03912b3bb366787ffbb299fc161a8b9148162a4483e99175d1a2570","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:46.199Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1024 root 0x198972bad1cb0c5a9a173a1dd757c714c90b45547b90c8e855ec94b946818513","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:46.199Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 0 root 0x0ccaafdc9c353743970d4e305ae73641ce694f07db67886d2769c9ed88e969d8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:46.199Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 64 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:46.199Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 5 root 0x1f8d21b80d0bdbb8cde94b9a2d4c389d78f86f359656e0f29386d09519a974df","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:17:46.199Z"} +{"blockNumber":4,"duration":52.77141300588846,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-11T02:17:46.225Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":4,"calldataGas":97968,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"rollup-published-to-l1","gasPrice":"1643585461","gasUsed":"381070","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-11T02:17:46.244Z","transactionHash":"0xdb14dddd0b90382cf2b5584130c7601d2c7c80757206fbe955686e30601193f5","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 4","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:46.245Z"} +{"level":"info","message":"Submitted rollup block 4 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:46.245Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:47.030Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:47.030Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:47.031Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:47.031Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:17:47.032Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:17:47.040Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.051Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.052Z"} +{"level":"debug","message":"Added note for contract 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f at slot 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48 with nullifier 0x2d7f54b40fd388afc50d9e65596d72f51fe2a8617acbd562192a47aa2cbb1fc4","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:47.067Z"} +{"level":"debug","message":"Removed note for contract 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f at slot 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48 with nullifier 0x205c2f4ccb2a89bde9f9ccfc2308ca0268c8dc39a27f9d8f506e9736b7fa7d9a","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:47.067Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:47.067Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:47.068Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:17:47.069Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.069Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.069Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:47.070Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:17:47.070Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '07614c1cb4e4415ccb31452b0c009410580af92e239cb29d93ee3729183d6ecd',\n status: 'mined',\n error: '',\n blockHash: 'a610b1665fe581cc9abac2d846edf698e23b25f4bea74852706ba7bf2836f044',\n blockNumber: 4,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.079Z"} +{"level":"debug","message":"No new blocks to process, current block number: 16","namespace":"aztec:archiver","timestamp":"2023-12-11T02:17:47.081Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.082Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.082Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 4,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 4,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 4,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 4\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.082Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.084Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.084Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f0000000000000000000000000000000000000000000000002af7b8dc31826f1a1399777251d65c6ac33695baaa4793c94d01551a05fab6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.084Z"} +{"level":"debug","message":"JsonProxy:call viewTx [\n 'get_counter',\n [\n {\n type: 'AztecAddress',\n data: '0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022'\n }\n ],\n {\n type: 'Fr',\n data: '0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f'\n },\n null\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.089Z"} +{"level":"debug","message":"JsonProxy:call viewTx <- [\n 'get_counter',\n [\n AztecAddress {\n asBuffer: \n }\n ],\n Fr {\n asBuffer: \n },\n undefined\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.089Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:47.089Z"} +{"level":"debug","message":"Executing unconstrained simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:47.096Z"} +{"level":"debug","message":"Executing unconstrained function 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f:46725bdd","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:17:47.096Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.104Z"} +{"level":"debug","message":"Unconstrained simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:47.109Z"} +{"level":"debug","message":"JsonProxy:call viewTx -> { type: 'bigint', data: '1' }","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.109Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.113Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.113Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f0000000000000000000000000000000000000000000000002af7b8dc31826f1a1399777251d65c6ac33695baaa4793c94d01551a05fab6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.113Z"} +{"level":"debug","message":"JsonProxy:call proveInit [\n {\n type: 'TxExecutionRequest',\n data: '06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf02299fd607900010026069c69d169e7671bfe83a5f945f41e1dfbf7b8e3184d40f1c5b9a1a2ca36ac0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008b81f61c0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011fdedea3876b29e48cc8a00c8c83f466d9e5b685c7d7d8f68cf172da368502da26069c69d169e7671bfe83a5f945f41e1dfbf7b8e3184d40f1c5b9a1a2ca36ac0000000125124d806a33a2db8f29584c1841bd34fc2002fd6fd5b55ac0e21dc9cee54fdc000000400000000000000000000000000000000000000000000000000000000000000021000000000000000000000000000000000000000000000000000000000000005800000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000000000750000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000de00000000000000000000000000000000000000000000000000000000000000bf00000000000000000000000000000000000000000000000000000000000000e900000000000000000000000000000000000000000000000000000000000000f4000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000560000000000000000000000000000000000000000000000000000000000000031000000000000000000000000000000000000000000000000000000000000002900000000000000000000000000000000000000000000000000000000000000f700000000000000000000000000000000000000000000000000000000000000860000000000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000210000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000008600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c4000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000bc000000000000000000000000000000000000000000000000000000000000008500000000000000000000000000000000000000000000000000000000000000b500000000000000000000000000000000000000000000000000000000000000c70000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000005c000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000a100000000000000000000000000000000000000000000000000000000000000d7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000008e00000000000000000000000000000000000000000000000000000000000000b400000000000000000000000000000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000b700000000000000000000000000000000000000000000000000000000000000f4000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000f6000000000000000000000000000000000000000000000000000000000000001500000000000000000000000000000000000000000000000000000000000000d60000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000071000000000000000000000000000000000000000000000000000000000000009a00000000000000000000000000000000000000000000000000000000000000a900000000000000000000000000000000000000000000000000000000000000b3000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000a2'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.126Z"} +{"level":"debug","message":"JsonProxy:call proveInit <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:17:47.127Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:47.127Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:17:47.127Z"} +{"level":"debug","message":"Executing external function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:47.128Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.143Z"} +{"level":"debug","message":"Returning 1 notes for 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1965f6b5972afdef0c08035bff5d4a606abad43c9d3c6e2becc40f8629fbe3c7:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:17:47.143Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.152Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.177Z"} +{"level":"debug","message":"Calling private function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:8b81f61c from 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:17:47.177Z"} +{"level":"debug","message":"Executing external function 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f:8b81f61c","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:17:47.181Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.186Z"} +{"level":"debug","message":"Returning 1 notes for 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x28bfdb4e88f383b77037ab158607a0a1e3509402f3853a3001f2a6678a66b3ff:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x243f6148f7ef7bdff07433332a2387528e054dd9fd9ccce91e9bb22b24e8176d,0x0000000000000000000000000000000000000000000000000000000000000001,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:17:47.186Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.204Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.205Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.209Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.212Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.213Z"} +{"level":"debug","message":"Returning 1 notes for 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x0000000000000000000000000000000000000000000000000000000000000000:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x243f6148f7ef7bdff07433332a2387528e054dd9fd9ccce91e9bb22b24e8176d,0x0000000000000000000000000000000000000000000000000000000000000001,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:17:47.213Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.228Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.230Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.233Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.236Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.236Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.237Z"} +{"level":"debug","message":"Oracle callback packArguments","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.238Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.238Z"} +{"level":"debug","message":"Calling private function 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f:1dd87b90 from 0x0e2590967274ee0c1a34d7badbf669455302e435057ed11f3d640c4fa899498f","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:17:47.239Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.239Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:17:47.240Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:17:47.245Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.123Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.123Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.123Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.124Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.124Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.124Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.125Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.125Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.125Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.301Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.301Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.301Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.344Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.345Z"} +{"level":"debug","message":"Adding contract 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada","namespace":"aztec:memory_db","timestamp":"2023-12-11T02:19:10.347Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:10.347Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.347Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada90fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce0d37888bdae0114f5ddb418d1aac53bf3ce69b7a77340d430e5151ffdc4009110640745aa21f425173e369c2ee81cd674b274af26dfd6ed660814836940d342b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.351Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.352Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:10.352Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:10.352Z"} +{"level":"debug","message":"Executing external function 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:10.353Z"} +{"level":"debug","message":"Returning from call to 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:10.359Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:10.360Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:10.360Z"} +{"circuitName":"private-kernel-init","duration":135.01864499598742,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:19:10.498Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:19:10.498Z"} +{"circuitName":"private-kernel-ordering","duration":103.24921900033951,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:19:10.612Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:19:10.612Z"} +{"level":"info","message":"Simulating tx 08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665","namespace":"aztec:node","timestamp":"2023-12-11T02:19:10.612Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000005: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000005, 0x000000000000000000000000000000000000000000000000000000006576714a)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:19:10.618Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:10.620Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:10.620Z"} +{"level":"debug","message":"Processing tx 08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:19:10.891Z"} +{"level":"info","message":"Simulated tx 08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665 succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:19:10.892Z"} +{"level":"info","message":"Executed local simulation for 08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:10.892Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d826651f4de363c19c6b923d36ceca1da5ab8fae7ee87ce612d622d63a269f7626b00e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada0000000000000000000000000000000000000000000000001a568960cb79ee61c19b62a92c5d88c073a69bc6103e8e43a7bbee39a795fd4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.892Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d826651f4de363c19c6b923d36ceca1da5ab8fae7ee87ce612d622d63a269f7626b00e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.905Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.906Z"} +{"level":"info","message":"Sending transaction 08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:10.906Z"} +{"level":"info","message":"Received tx 08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665","namespace":"aztec:node","timestamp":"2023-12-11T02:19:10.906Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-11T02:19:10.907Z","txHash":"0x08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.907Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.910Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.910Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:10.911Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:11.263Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000005: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000005, 0x000000000000000000000000000000000000000000000000000000006576714a)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:19:11.277Z"} +{"level":"info","message":"Building block 5 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:11.279Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:11.283Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:11.283Z"} +{"level":"debug","message":"Processing tx 08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:19:11.286Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:11.287Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:11.288Z"} +{"level":"debug","message":"Assembling block with txs 08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:11.288Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000005","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:11.290Z"} +{"level":"debug","message":"Running base rollup for 08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:11.291Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:11.916Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:11.916Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:11.917Z"} +{"circuitName":"base-rollup","duration":1863.0232469961047,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:19:13.806Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:13.806Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:13.809Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:13.809Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:13.810Z"} +{"circuitName":"base-rollup","duration":1760.4917040020227,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:19:16.173Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:16.174Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:16.177Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:16.177Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:16.178Z"} +{"circuitName":"root-rollup","duration":85.34541499614716,"eventName":"circuit-simulation","inputSize":4072,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-11T02:19:16.297Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:16.297Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:16.315Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:16.315Z"} +{"blockNumber":5,"duration":5058.773002997041,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 5","namespace":"aztec:sequencer","publicProcessDuration":0.8374930024147034,"rollupCircuitsDuration":5031.202651001513,"timestamp":"2023-12-11T02:19:16.321Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash aa9f1fbe30f5b9b701978756658bcd87098f7f4d3f5217c9eecab3dc48869e34","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:16.322Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:19:16.322Z"} +{"level":"debug","message":"Successfully published new contract data for block 5","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:16.336Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:17.181Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:17.182Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:17.182Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:17.185Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:17.185Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 17, next expected l2 block number: 5","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:17.186Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:17.192Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:17.192Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:17.202Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 5","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:17.205Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 5","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:19:17.206Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:17.207Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:17.304Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:17.304Z"} +{"level":"debug","message":"Block 5 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:17.305Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:17.306Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:17.306Z"} +{"level":"debug","message":"Synched to block 5","namespace":"aztec:p2p","timestamp":"2023-12-11T02:19:17.323Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 20 root 0x2130ec4d9a6cf90f2dd6401469d0ad95982c511ec8fea98cd9d94e333375eaee","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:17.334Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1408 root 0x0c45d6870798d3565bf03ba2667a175a12690524728492c23188c55996fafb16","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:17.334Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1280 root 0x198972bad1cb0c5a9a173a1dd757c714c90b45547b90c8e855ec94b946818513","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:17.334Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 0 root 0x0ccaafdc9c353743970d4e305ae73641ce694f07db67886d2769c9ed88e969d8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:17.334Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 80 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:17.334Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 6 root 0x0a780148e1d65a67a8a29cd33d30ea13f07f3c7dd8f51154c2f3c25d3723bc38","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:17.334Z"} +{"blockNumber":5,"duration":35.162925995886326,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-11T02:19:17.340Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"blockNumber":5,"calldataGas":93900,"calldataSize":21828,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1610361141","gasUsed":"370702","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-11T02:19:17.399Z","transactionHash":"0xe7f5f9e14bcf3601594a7b031b7f0f94b8bdfeff6de2cfcdaeebec5f750bcbbd","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 5","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:17.399Z"} +{"level":"info","message":"Submitted rollup block 5 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:17.399Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:18.176Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:18.176Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:18.177Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:18.178Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:19:18.184Z"} +{"level":"debug","message":"Synched block 5","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:18.186Z"} +{"level":"debug","message":"Synched block 5","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:18.187Z"} +{"level":"debug","message":"Synched block 5","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:18.188Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.190Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.190Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:18.191Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:18.191Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '08d86788b4ad6556bdedc2e9b361abe1c0538094c2e0e97573498183d6d82665',\n status: 'mined',\n error: '',\n blockHash: 'a9d1e44f0119ba66cb9e8abcbf4526b551af7cb6190983361c96bc46540f9635',\n blockNumber: 5,\n contractAddress: '0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.202Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.205Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.205Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 5,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 5,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 5,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 5\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.206Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.208Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.208Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada0000000000000000000000000000000000000000000000001a568960cb79ee61c19b62a92c5d88c073a69bc6103e8e43a7bbee39a795fd4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.209Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.214Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.214Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada0000000000000000000000000000000000000000000000001a568960cb79ee61c19b62a92c5d88c073a69bc6103e8e43a7bbee39a795fd4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.214Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf02299fd6079000100091f912173f48280344236155d542f9368e0b3e405a0792dcfdf60a8a62804560000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a19729d98985bab052a85a53ebdf884bba2ce651ab14676f5426b6b105e7aa2ca0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001119729d98985bab052a85a53ebdf884bba2ce651ab14676f5426b6b105e7aa2ca00000000000000000000000000000000000000000000000000000000379cfa1a0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010571e4e0e36a4ef25d4ed30f20d60135d73c435e025d3a019d953ede0692b2ae091f912173f48280344236155d542f9368e0b3e405a0792dcfdf60a8a6280456000000011a432056347d8db4cf63cc734809cbd27bfe73df5a25c3266596f587586365b600000040000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000ce00000000000000000000000000000000000000000000000000000000000000b50000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000b1000000000000000000000000000000000000000000000000000000000000006f000000000000000000000000000000000000000000000000000000000000009f0000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000ef00000000000000000000000000000000000000000000000000000000000000f600000000000000000000000000000000000000000000000000000000000000a5000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d7000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a200000000000000000000000000000000000000000000000000000000000000cb000000000000000000000000000000000000000000000000000000000000009e000000000000000000000000000000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000b5000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000f2000000000000000000000000000000000000000000000000000000000000003700000000000000000000000000000000000000000000000000000000000000d2000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000970000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003f000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000990000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008f000000000000000000000000000000000000000000000000000000000000002f00000000000000000000000000000000000000000000000000000000000000b1000000000000000000000000000000000000000000000000000000000000005b000000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000df000000000000000000000000000000000000000000000000000000000000003d000000000000000000000000000000000000000000000000000000000000003300000000000000000000000000000000000000000000000000000000000000c4000000000000000000000000000000000000000000000000000000000000005b000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000e400000000000000000000000000000000000000000000000000000000000000e1000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000007b00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000a100000000000000000000000000000000000000000000000000000000000000590000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000002900000000000000000000000000000000000000000000000000000000000000b300000000000000000000000000000000000000000000000000000000000000f600000000000000000000000000000000000000000000000000000000000000d6'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.227Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:18.227Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:18.228Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:18.228Z"} +{"level":"debug","message":"Executing external function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:18.228Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:18.244Z"} +{"level":"debug","message":"Returning 1 notes for 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1965f6b5972afdef0c08035bff5d4a606abad43c9d3c6e2becc40f8629fbe3c7:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:19:18.244Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:18.254Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:18.281Z"} +{"level":"debug","message":"Calling private function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:379cfa1a from 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:19:18.281Z"} +{"level":"debug","message":"Executing external function 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada:379cfa1a","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:18.283Z"} +{"level":"debug","message":"Oracle callback getRandomField","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:18.286Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:18.286Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:18.287Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:18.291Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:18.291Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:18.292Z"} +{"level":"debug","message":"Returning from call to 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada:379cfa1a","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:18.298Z"} +{"level":"debug","message":"Returning from call to 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:18.393Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:18.393Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:18.393Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 5","namespace":"aztec:node","timestamp":"2023-12-11T02:19:18.402Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:18.403Z"} +{"level":"debug","message":"No new blocks to process, current block number: 18","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:18.404Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 5","namespace":"aztec:node","timestamp":"2023-12-11T02:19:18.405Z"} +{"circuitName":"private-kernel-init","duration":168.37317200005054,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:19:18.575Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:19:18.575Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 5","namespace":"aztec:node","timestamp":"2023-12-11T02:19:18.592Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 5","namespace":"aztec:node","timestamp":"2023-12-11T02:19:18.593Z"} +{"circuitName":"private-kernel-inner","duration":207.76367799937725,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:19:18.808Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:19:18.809Z"} +{"circuitName":"private-kernel-ordering","duration":105.1745459958911,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:19:18.924Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:19:18.924Z"} +{"level":"info","message":"Simulating tx 1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00","namespace":"aztec:node","timestamp":"2023-12-11T02:19:18.924Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000006: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000006, 0x00000000000000000000000000000000000000000000000000000000657671a5)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:19:18.932Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:18.933Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:18.933Z"} +{"level":"debug","message":"Processing tx 1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:19:19.202Z"} +{"level":"info","message":"Simulated tx 1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00 succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:19:19.202Z"} +{"level":"info","message":"Executed local simulation for 1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:19.202Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2000fca5b7a6c22c0462af0f0c5563cd5b38a71aca6bc722c5621226e2cb96be36c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a0002c8e2acf8590bcb450570713a03f5cd9b74e35dc3cb48b5cd6c342a3db41b6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c00000000000001140000011092242e6d26a93bd189deccd915286d8860dc3e15b0d4dbbc9c401c047c87b39b82f6f4808dc79f5c8f76af71c8b243cea3e082557be66b607e33b175640d3d2b914a533b4a415b2ea66ab5b562337fad539f139001edd9addfff90c0cf10393188190415f4b0b1966f5bb3d0b0454c250a88dd32e1fa53ebb557a2c2d9473c9ced9654cf9be406ce75460239b27b9f5f66c1db66c864158b66e03cae2ec2c3cfdb68f8eab42534d13a385e7a525ec68cb20673b41cb115a0c304e3c88208b764896bce0a33a6f4297b0cfa2dd9c060c92d4d2abf1c108f7a2bf867ef392cb813d083358d2ce3ebca5d82aa3e3b3be5e10641d8643165ccad378a898d3bf6425456582399dda837d01e505a665ce1899e',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:19.202Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2000fca5b7a6c22c0462af0f0c5563cd5b38a71aca6bc722c5621226e2cb96be36c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a0002c8e2acf8590bcb450570713a03f5cd9b74e35dc3cb48b5cd6c342a3db41b6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c00000000000001140000011092242e6d26a93bd189deccd915286d8860dc3e15b0d4dbbc9c401c047c87b39b82f6f4808dc79f5c8f76af71c8b243cea3e082557be66b607e33b175640d3d2b914a533b4a415b2ea66ab5b562337fad539f139001edd9addfff90c0cf10393188190415f4b0b1966f5bb3d0b0454c250a88dd32e1fa53ebb557a2c2d9473c9ced9654cf9be406ce75460239b27b9f5f66c1db66c864158b66e03cae2ec2c3cfdb68f8eab42534d13a385e7a525ec68cb20673b41cb115a0c304e3c88208b764896bce0a33a6f4297b0cfa2dd9c060c92d4d2abf1c108f7a2bf867ef392cb813d083358d2ce3ebca5d82aa3e3b3be5e10641d8643165ccad378a898d3bf6425456582399dda837d01e505a665ce1899e',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:19.209Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:19.210Z"} +{"level":"info","message":"Sending transaction 1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:19.210Z"} +{"level":"info","message":"Received tx 1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00","namespace":"aztec:node","timestamp":"2023-12-11T02:19:19.210Z"} +{"encryptedLogCount":1,"encryptedLogSize":288,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10145,"timestamp":"2023-12-11T02:19:19.210Z","txHash":"0x1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:19.210Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:19.213Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:19.213Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:19.214Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:19.404Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000006: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000006, 0x00000000000000000000000000000000000000000000000000000000657671a5)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:19:19.410Z"} +{"level":"info","message":"Building block 6 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:19.410Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:19.411Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:19.411Z"} +{"level":"debug","message":"Processing tx 1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:19:19.413Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:19.414Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:19.414Z"} +{"level":"debug","message":"Assembling block with txs 1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:19.414Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000006","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:19.414Z"} +{"level":"debug","message":"Running base rollup for 1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:19.414Z"} +{"circuitName":"base-rollup","duration":1838.8672050014138,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:19:21.877Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:21.878Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:21.880Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:21.880Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:21.881Z"} +{"circuitName":"base-rollup","duration":1873.0462319999933,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:19:24.390Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:24.391Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:24.393Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:24.393Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:24.395Z"} +{"circuitName":"root-rollup","duration":84.14896799623966,"eventName":"circuit-simulation","inputSize":4072,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-11T02:19:24.517Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:24.518Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:24.534Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:24.534Z"} +{"blockNumber":6,"duration":5132.174144998193,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-built","level":"debug","message":"Assembled block 6","namespace":"aztec:sequencer","publicProcessDuration":0.8186050057411194,"rollupCircuitsDuration":5121.148024000227,"timestamp":"2023-12-11T02:19:24.535Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash e10e2de6b8cfd353c1ae845ffc5c7b324d76803c92c62fcc2b66649a91ddea74","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:24.537Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:19:24.537Z"} +{"level":"debug","message":"Successfully published new contract data for block 6","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:24.548Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:25.400Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:25.400Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:25.401Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:25.404Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:25.404Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 19, next expected l2 block number: 6","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:25.404Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:25.411Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:25.411Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:25.415Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 6","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:25.415Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 6","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:19:25.415Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:25.416Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:25.536Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:25.536Z"} +{"level":"debug","message":"Synched to block 6","namespace":"aztec:p2p","timestamp":"2023-12-11T02:19:25.554Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:25.554Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:25.555Z"} +{"level":"debug","message":"Block 6 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:25.555Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 24 root 0x2130ec4d9a6cf90f2dd6401469d0ad95982c511ec8fea98cd9d94e333375eaee","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:25.570Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1664 root 0x0ea03ac67b1e15af57026df52f66c710b36a5d44259c1a46c65b3669bea7555f","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:25.570Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1536 root 0x280558483540fc4da50ae5cd6fa89534f5e96481b0fb149a5a5e5d324337ba82","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:25.570Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 0 root 0x0ccaafdc9c353743970d4e305ae73641ce694f07db67886d2769c9ed88e969d8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:25.570Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 96 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:25.570Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 7 root 0x2d70b096c5ae32dd3838dd9e4786dede39ce45ff99e86ccfdad269ae33519cf5","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:25.570Z"} +{"blockNumber":6,"duration":46.902214005589485,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-11T02:19:25.602Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":6,"calldataGas":97980,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"rollup-published-to-l1","gasPrice":"1584815650","gasUsed":"381082","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-11T02:19:25.609Z","transactionHash":"0xaa19bf00554f8503b3d19888522d9c0449c9e07072aa53a81280cb07ece885a0","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 6","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:25.609Z"} +{"level":"info","message":"Submitted rollup block 6 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:25.609Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:26.392Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:26.392Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:26.392Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:26.392Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:19:26.393Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:19:26.411Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.421Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.423Z"} +{"level":"debug","message":"Added note for contract 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada at slot 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48 with nullifier 0x1daa26afd2a3b6b8aa02decf69ca483f53038f8d87df51e600906dcbef87b90f","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:26.437Z"} +{"level":"debug","message":"Synched block 6","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:26.438Z"} +{"level":"debug","message":"Synched block 6","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:26.438Z"} +{"level":"debug","message":"Synched block 6","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:26.439Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.440Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.440Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:26.441Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:26.441Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '1991448fc0ebe43a7300ef9220ef9d2744a4e7127ed9c368baa2156b4f210a00',\n status: 'mined',\n error: '',\n blockHash: '8ef057b4e911e16ae0bd43e632902b5b3446fe1d82f1d161d3778172bce0d7b8',\n blockNumber: 6,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.450Z"} +{"level":"debug","message":"No new blocks to process, current block number: 20","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:26.453Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.454Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.454Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 6,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 6,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 6,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 6\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.454Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.456Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.456Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada0000000000000000000000000000000000000000000000001a568960cb79ee61c19b62a92c5d88c073a69bc6103e8e43a7bbee39a795fd4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.456Z"} +{"level":"debug","message":"JsonProxy:call viewTx [\n 'get_counter',\n [\n {\n type: 'AztecAddress',\n data: '0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022'\n }\n ],\n {\n type: 'Fr',\n data: '0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada'\n },\n null\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.462Z"} +{"level":"debug","message":"JsonProxy:call viewTx <- [\n 'get_counter',\n [\n AztecAddress {\n asBuffer: \n }\n ],\n Fr {\n asBuffer: \n },\n undefined\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.462Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:26.462Z"} +{"level":"debug","message":"Executing unconstrained simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:26.469Z"} +{"level":"debug","message":"Executing unconstrained function 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada:46725bdd","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:19:26.469Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.477Z"} +{"level":"debug","message":"Unconstrained simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:26.482Z"} +{"level":"debug","message":"JsonProxy:call viewTx -> { type: 'bigint', data: '0' }","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.482Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.486Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.486Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada0000000000000000000000000000000000000000000000001a568960cb79ee61c19b62a92c5d88c073a69bc6103e8e43a7bbee39a795fd4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.486Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf02299fd607900010020dca26e7029439d1e3c29e23ab1c3402f3a804f47857708fd56ea7c4d5095170000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007fe06ed20d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000102cc84db64a499f605fff94171076f5c71811268193b94a1fcb9ed4480034a4020dca26e7029439d1e3c29e23ab1c3402f3a804f47857708fd56ea7c4d5095170000000125e6a93bb21943c12213f51e4b7fb4f60e7557a7e111185a25b36275e6ff934d00000040000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000097000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000d100000000000000000000000000000000000000000000000000000000000000e3000000000000000000000000000000000000000000000000000000000000009b000000000000000000000000000000000000000000000000000000000000008900000000000000000000000000000000000000000000000000000000000000cd00000000000000000000000000000000000000000000000000000000000000960000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000bb0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000009b00000000000000000000000000000000000000000000000000000000000000cc000000000000000000000000000000000000000000000000000000000000008e00000000000000000000000000000000000000000000000000000000000000f7000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000b6000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000da000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000009c00000000000000000000000000000000000000000000000000000000000000c200000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000006c00000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000bf000000000000000000000000000000000000000000000000000000000000008e000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000bc00000000000000000000000000000000000000000000000000000000000000f100000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000b70000000000000000000000000000000000000000000000000000000000000073000000000000000000000000000000000000000000000000000000000000005800000000000000000000000000000000000000000000000000000000000000e200000000000000000000000000000000000000000000000000000000000000170000000000000000000000000000000000000000000000000000000000000069000000000000000000000000000000000000000000000000000000000000004b00000000000000000000000000000000000000000000000000000000000000ed00000000000000000000000000000000000000000000000000000000000000e400000000000000000000000000000000000000000000000000000000000000b8000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000ab00000000000000000000000000000000000000000000000000000000000000150000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000006900000000000000000000000000000000000000000000000000000000000000f200000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000087000000000000000000000000000000000000000000000000000000000000008d00000000000000000000000000000000000000000000000000000000000000de0000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000ef'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.499Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:26.499Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:26.499Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:26.499Z"} +{"level":"debug","message":"Executing external function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:26.500Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.515Z"} +{"level":"debug","message":"Returning 1 notes for 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1965f6b5972afdef0c08035bff5d4a606abad43c9d3c6e2becc40f8629fbe3c7:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:19:26.515Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.524Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.548Z"} +{"level":"debug","message":"Calling private function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:7fe06ed2 from 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:19:26.548Z"} +{"level":"debug","message":"Executing external function 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada:7fe06ed2","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:26.551Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.556Z"} +{"level":"debug","message":"Returning 1 notes for 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x1efb01404c0c9f9c70df11dccecd39e9bca3c6453da5d65f1bff45c10fd3cfe6:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x29eead4286fa16b5c9a2a005b94195e7025fa24bdc5de68b451636b973eaa06f,0x0000000000000000000000000000000000000000000000000000000000000000,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:19:26.556Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.573Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.574Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.577Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.580Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.581Z"} +{"level":"debug","message":"Returning 1 notes for 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x0000000000000000000000000000000000000000000000000000000000000000:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x29eead4286fa16b5c9a2a005b94195e7025fa24bdc5de68b451636b973eaa06f,0x0000000000000000000000000000000000000000000000000000000000000000,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:19:26.581Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.596Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.597Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.600Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.603Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.603Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:26.604Z"} +{"level":"debug","message":"Returning from call to 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada:7fe06ed2","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:26.612Z"} +{"level":"debug","message":"Returning from call to 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:26.707Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:26.707Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:26.707Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 6","namespace":"aztec:node","timestamp":"2023-12-11T02:19:26.716Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:26.717Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 6","namespace":"aztec:node","timestamp":"2023-12-11T02:19:26.718Z"} +{"circuitName":"private-kernel-init","duration":167.40441700071096,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:19:26.887Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:19:26.887Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 6","namespace":"aztec:node","timestamp":"2023-12-11T02:19:26.896Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 6","namespace":"aztec:node","timestamp":"2023-12-11T02:19:26.897Z"} +{"circuitName":"private-kernel-inner","duration":240.42663199454546,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:19:27.140Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:19:27.140Z"} +{"circuitName":"private-kernel-ordering","duration":107.18593099713326,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:19:27.258Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:19:27.258Z"} +{"level":"info","message":"Simulating tx 183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9","namespace":"aztec:node","timestamp":"2023-12-11T02:19:27.258Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000007: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000007, 0x00000000000000000000000000000000000000000000000000000000657671ad)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:19:27.264Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:27.264Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:27.264Z"} +{"level":"debug","message":"Processing tx 183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:19:27.534Z"} +{"level":"info","message":"Simulated tx 183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9 succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:19:27.535Z"} +{"level":"info","message":"Executed local simulation for 183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:27.535Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2001efcf51993d1933a8436c3de458d9f33af40d7295b739d5afa4eb71d6895a881000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e91daa26afd2a3b6b8aa02decf69ca483f53038f8d87df51e600906dcbef87b90f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240065df91bb6aa8c1ff875da0bf0007b56cff90f69b15f62ea44f80170f489a1e100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c000000000000011400000110c41de5f50af5fd7b6b878df9e8d79e5d4bff13f6df351d7636b6c516b5c0b0c5acb444d8e1ba5a0eaf6288baba959100f350f0b39a80ba71acd8dd320eab1ceeba273608681b512ed6ac081d0788e6d077c7bc3a690a51d3c3605cde055c9401e0668ded2c5285d838c0e2cdfbaa05cde79157eb97e79a1f8fe906e4b4fc390783c41813560501a67f4c6db8c6fe44b23236457cc6e710ebc3d4de37930ffe9112c8d0d2e1728ea40558ab3e6f74c5c9af5facf5f81ff7f46318be91394ce7543723f5280dc9d0148dbab6b8b15934831e5a211ce9c61a3fcc7d3fe199a63ce9f9e356219387611e5613b2920ab37c7e1b50097c40206c8c7d0ba737664880e3d8763621685ff8f665ff316d22a9600c',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:27.535Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2001efcf51993d1933a8436c3de458d9f33af40d7295b739d5afa4eb71d6895a881000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e91daa26afd2a3b6b8aa02decf69ca483f53038f8d87df51e600906dcbef87b90f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240065df91bb6aa8c1ff875da0bf0007b56cff90f69b15f62ea44f80170f489a1e100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c000000000000011400000110c41de5f50af5fd7b6b878df9e8d79e5d4bff13f6df351d7636b6c516b5c0b0c5acb444d8e1ba5a0eaf6288baba959100f350f0b39a80ba71acd8dd320eab1ceeba273608681b512ed6ac081d0788e6d077c7bc3a690a51d3c3605cde055c9401e0668ded2c5285d838c0e2cdfbaa05cde79157eb97e79a1f8fe906e4b4fc390783c41813560501a67f4c6db8c6fe44b23236457cc6e710ebc3d4de37930ffe9112c8d0d2e1728ea40558ab3e6f74c5c9af5facf5f81ff7f46318be91394ce7543723f5280dc9d0148dbab6b8b15934831e5a211ce9c61a3fcc7d3fe199a63ce9f9e356219387611e5613b2920ab37c7e1b50097c40206c8c7d0ba737664880e3d8763621685ff8f665ff316d22a9600c',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:27.543Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:27.544Z"} +{"level":"info","message":"Sending transaction 183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:27.544Z"} +{"level":"info","message":"Received tx 183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9","namespace":"aztec:node","timestamp":"2023-12-11T02:19:27.544Z"} +{"encryptedLogCount":1,"encryptedLogSize":288,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10145,"timestamp":"2023-12-11T02:19:27.544Z","txHash":"0x183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:27.544Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:27.546Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:27.547Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:27.547Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:27.718Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000007: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000007, 0x00000000000000000000000000000000000000000000000000000000657671ad)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:19:27.723Z"} +{"level":"info","message":"Building block 7 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:27.724Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:27.725Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:27.725Z"} +{"level":"debug","message":"Processing tx 183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:19:27.727Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:27.727Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:27.727Z"} +{"level":"debug","message":"Assembling block with txs 183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:27.727Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000007","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:27.727Z"} +{"level":"debug","message":"Running base rollup for 183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:27.727Z"} +{"circuitName":"base-rollup","duration":1840.7575159966946,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:19:30.169Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:30.169Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:30.174Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:30.174Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:30.176Z"} +{"circuitName":"base-rollup","duration":1760.7233420014381,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:19:32.522Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:32.522Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:32.525Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:32.525Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:32.526Z"} +{"circuitName":"root-rollup","duration":84.6678149998188,"eventName":"circuit-simulation","inputSize":4072,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-11T02:19:32.650Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:19:32.650Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:32.668Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:32.668Z"} +{"blockNumber":7,"duration":4952.215475998819,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-built","level":"debug","message":"Assembled block 7","namespace":"aztec:sequencer","publicProcessDuration":0.7031980007886887,"rollupCircuitsDuration":4942.260999001563,"timestamp":"2023-12-11T02:19:32.670Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash bedf12f84cb750685cac09345acceca20a6968fff50b3b76491511abdbef85cc","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:32.671Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:19:32.671Z"} +{"level":"debug","message":"Successfully published new contract data for block 7","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:32.683Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:33.531Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:33.532Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:33.532Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:33.536Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:33.536Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 21, next expected l2 block number: 7","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:33.536Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:33.542Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:33.542Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:33.545Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 7","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:33.545Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 7","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:19:33.546Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:33.546Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:33.666Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:33.667Z"} +{"level":"debug","message":"Synched to block 7","namespace":"aztec:p2p","timestamp":"2023-12-11T02:19:33.683Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:33.684Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:33.684Z"} +{"level":"debug","message":"Block 7 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:33.685Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 28 root 0x2130ec4d9a6cf90f2dd6401469d0ad95982c511ec8fea98cd9d94e333375eaee","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:33.697Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1920 root 0x2ef4de3697da6332345a26b9dc0e08841142483d4afb1039e94b17554d9ac2dd","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:33.697Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1792 root 0x07086c52870acbe5a075ece0e23c76feb446fa42ae354fdf8e2ede0fc8aecda8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:33.697Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 0 root 0x0ccaafdc9c353743970d4e305ae73641ce694f07db67886d2769c9ed88e969d8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:33.697Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 112 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:33.697Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 8 root 0x05292d3f174584145bc9c4377d6b9ea51fca986695a920d6d2f595934faff997","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:19:33.697Z"} +{"blockNumber":7,"duration":44.78909199684858,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-11T02:19:33.729Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":7,"calldataGas":97980,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"rollup-published-to-l1","gasPrice":"1565189641","gasUsed":"381082","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-11T02:19:33.745Z","transactionHash":"0x40b278fdeaeba5388b2ec5d1245d03176dcd0933155462b2384cd06227e9852b","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 7","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:33.745Z"} +{"level":"info","message":"Submitted rollup block 7 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:33.745Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:34.524Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:34.525Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:34.525Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:34.526Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:19:34.528Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:19:34.535Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.546Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.547Z"} +{"level":"debug","message":"Added note for contract 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada at slot 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48 with nullifier 0x2a5d51e3e038ec2b5f6944b0960e88f0447879bc05999153c1cd17508910ae16","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:34.562Z"} +{"level":"debug","message":"Removed note for contract 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada at slot 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48 with nullifier 0x1daa26afd2a3b6b8aa02decf69ca483f53038f8d87df51e600906dcbef87b90f","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:34.562Z"} +{"level":"debug","message":"Synched block 7","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:34.562Z"} +{"level":"debug","message":"Synched block 7","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:34.563Z"} +{"level":"debug","message":"Synched block 7","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:19:34.564Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.564Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.564Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:34.565Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:19:34.565Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '183b07fbb2e524d11ccf58e160745c2c9bb8abf51d8251e92a5ddc46a05fe1e9',\n status: 'mined',\n error: '',\n blockHash: 'dc36441ac45b5c35a606547c14755499aa37ea1aada327bb0206280acb14b858',\n blockNumber: 7,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.574Z"} +{"level":"debug","message":"No new blocks to process, current block number: 22","namespace":"aztec:archiver","timestamp":"2023-12-11T02:19:34.577Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.578Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.578Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 7,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 7,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 7,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 7\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.578Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.580Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.581Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada0000000000000000000000000000000000000000000000001a568960cb79ee61c19b62a92c5d88c073a69bc6103e8e43a7bbee39a795fd4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.581Z"} +{"level":"debug","message":"JsonProxy:call viewTx [\n 'get_counter',\n [\n {\n type: 'AztecAddress',\n data: '0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022'\n }\n ],\n {\n type: 'Fr',\n data: '0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada'\n },\n null\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.588Z"} +{"level":"debug","message":"JsonProxy:call viewTx <- [\n 'get_counter',\n [\n AztecAddress {\n asBuffer: \n }\n ],\n Fr {\n asBuffer: \n },\n undefined\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.588Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:34.588Z"} +{"level":"debug","message":"Executing unconstrained simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:34.611Z"} +{"level":"debug","message":"Executing unconstrained function 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada:46725bdd","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:19:34.611Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.619Z"} +{"level":"debug","message":"Unconstrained simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:34.623Z"} +{"level":"debug","message":"JsonProxy:call viewTx -> { type: 'bigint', data: '1' }","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.624Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.628Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.628Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada0000000000000000000000000000000000000000000000001a568960cb79ee61c19b62a92c5d88c073a69bc6103e8e43a7bbee39a795fd4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.628Z"} +{"level":"debug","message":"JsonProxy:call proveInit [\n {\n type: 'TxExecutionRequest',\n data: '06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf02299fd60790001001c98a53427dc2e8750f5587e3529d870554d164ad8e9f5045d4f0e77327e030a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008b81f61c0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011ccc2cdf8e242acfec60599e5fbe35d97d30c57c515607b2f72f05ac0ac295891c98a53427dc2e8750f5587e3529d870554d164ad8e9f5045d4f0e77327e030a00000001121ce3fc5231fd4fbf14b541668f55019615fb6b218ff1e1be329d65c26d6e19000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008700000000000000000000000000000000000000000000000000000000000000aa000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000b9000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000097000000000000000000000000000000000000000000000000000000000000008700000000000000000000000000000000000000000000000000000000000000bb0000000000000000000000000000000000000000000000000000000000000082000000000000000000000000000000000000000000000000000000000000006100000000000000000000000000000000000000000000000000000000000000ab00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000a2000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000003f000000000000000000000000000000000000000000000000000000000000008a00000000000000000000000000000000000000000000000000000000000000de0000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000e4000000000000000000000000000000000000000000000000000000000000009700000000000000000000000000000000000000000000000000000000000000e700000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000cd000000000000000000000000000000000000000000000000000000000000003d000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000000000510000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000f20000000000000000000000000000000000000000000000000000000000000015000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000ad00000000000000000000000000000000000000000000000000000000000000a7000000000000000000000000000000000000000000000000000000000000006e000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000000000cb0000000000000000000000000000000000000000000000000000000000000091000000000000000000000000000000000000000000000000000000000000001300000000000000000000000000000000000000000000000000000000000000a800000000000000000000000000000000000000000000000000000000000000c500000000000000000000000000000000000000000000000000000000000000f9000000000000000000000000000000000000000000000000000000000000001f000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e500000000000000000000000000000000000000000000000000000000000000460000000000000000000000000000000000000000000000000000000000000083000000000000000000000000000000000000000000000000000000000000005f00000000000000000000000000000000000000000000000000000000000000e400000000000000000000000000000000000000000000000000000000000000980000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000005f000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000b500000000000000000000000000000000000000000000000000000000000000ce000000000000000000000000000000000000000000000000000000000000005f000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000e700000000000000000000000000000000000000000000000000000000000000c4000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000ba'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.641Z"} +{"level":"debug","message":"JsonProxy:call proveInit <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:19:34.642Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:34.642Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:19:34.642Z"} +{"level":"debug","message":"Executing external function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:34.642Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.657Z"} +{"level":"debug","message":"Returning 1 notes for 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1965f6b5972afdef0c08035bff5d4a606abad43c9d3c6e2becc40f8629fbe3c7:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:19:34.657Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.667Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.690Z"} +{"level":"debug","message":"Calling private function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:8b81f61c from 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:19:34.690Z"} +{"level":"debug","message":"Executing external function 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada:8b81f61c","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:19:34.694Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.699Z"} +{"level":"debug","message":"Returning 1 notes for 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x072f3363f1de567147d7c06407ccd20afb9ae7bc74ea46905b6ba90e8947528d:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x29eead4286fa16b5c9a2a005b94195e7025fa24bdc5de68b451636b973eaa06f,0x0000000000000000000000000000000000000000000000000000000000000001,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:19:34.699Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.716Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.717Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.721Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.724Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.724Z"} +{"level":"debug","message":"Returning 1 notes for 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x0000000000000000000000000000000000000000000000000000000000000000:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x29eead4286fa16b5c9a2a005b94195e7025fa24bdc5de68b451636b973eaa06f,0x0000000000000000000000000000000000000000000000000000000000000001,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:19:34.724Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.740Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.741Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.745Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.748Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.748Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.749Z"} +{"level":"debug","message":"Oracle callback packArguments","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.750Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.750Z"} +{"level":"debug","message":"Calling private function 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada:1dd87b90 from 0x0d55d96f830be42c4a446dd6376bfb251bc67c3575f93d391656e82a62cadada","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:19:34.750Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.750Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:19:34.751Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:19:34.752Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.567Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.567Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.568Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.569Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.569Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.570Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.571Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.571Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.571Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.749Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.750Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.750Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.793Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.794Z"} +{"level":"debug","message":"Adding contract 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b","namespace":"aztec:memory_db","timestamp":"2023-12-11T02:20:28.796Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:28.796Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.796Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b90fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce0d37888bdae0114f5ddb418d1aac53bf3ce69b7a77340d430e5151ffdc4009112419b89d98e54071c8b43c7171d2f706ec47dc2364a304d774c093328cc72e2600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.800Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:28.800Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:28.800Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:28.801Z"} +{"level":"debug","message":"Executing external function 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:28.801Z"} +{"level":"debug","message":"Returning from call to 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:28.806Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:28.806Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:28.806Z"} +{"circuitName":"private-kernel-init","duration":132.48495800048113,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:20:28.941Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:20:28.942Z"} +{"circuitName":"private-kernel-ordering","duration":103.19245299696922,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:20:29.055Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:20:29.055Z"} +{"level":"info","message":"Simulating tx 06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7","namespace":"aztec:node","timestamp":"2023-12-11T02:20:29.055Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000008: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000008, 0x00000000000000000000000000000000000000000000000000000000657671b5)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:20:29.062Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:29.063Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:29.063Z"} +{"level":"debug","message":"Processing tx 06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:20:29.330Z"} +{"level":"info","message":"Simulated tx 06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7 succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:20:29.330Z"} +{"level":"info","message":"Executed local simulation for 06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:29.330Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef704729d43b113d8f55875b66a74ce9f8a6a95705365042c69d5eb13faa9a8aba10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b0000000000000000000000000000000000000000000000002840a19dbe7274d3108a8db81b818314ce7edc76729f99db80131bf13016e74400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:29.331Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef704729d43b113d8f55875b66a74ce9f8a6a95705365042c69d5eb13faa9a8aba10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:29.342Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:29.343Z"} +{"level":"info","message":"Sending transaction 06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:29.343Z"} +{"level":"info","message":"Received tx 06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7","namespace":"aztec:node","timestamp":"2023-12-11T02:20:29.343Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-11T02:20:29.343Z","txHash":"0x06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:29.344Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:29.347Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:29.347Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:29.348Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:29.776Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000008: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000008, 0x00000000000000000000000000000000000000000000000000000000657671b5)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:20:29.781Z"} +{"level":"info","message":"Building block 8 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:29.782Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:29.783Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:29.783Z"} +{"level":"debug","message":"Processing tx 06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:20:29.784Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:29.785Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:29.785Z"} +{"level":"debug","message":"Assembling block with txs 06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:29.785Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000008","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:29.785Z"} +{"level":"debug","message":"Running base rollup for 06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:29.785Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:30.368Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:30.369Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:30.369Z"} +{"circuitName":"base-rollup","duration":2087.0525029972196,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:20:32.542Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:32.543Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:32.545Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:32.546Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:32.546Z"} +{"circuitName":"base-rollup","duration":1792.6557290032506,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:20:34.929Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:34.929Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:34.932Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:34.932Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:34.934Z"} +{"circuitName":"root-rollup","duration":100.07371699810028,"eventName":"circuit-simulation","inputSize":4072,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-11T02:20:35.077Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:35.078Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:35.104Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:35.105Z"} +{"blockNumber":8,"duration":5331.534622006118,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 8","namespace":"aztec:sequencer","publicProcessDuration":0.6817589998245239,"rollupCircuitsDuration":5321.978242993355,"timestamp":"2023-12-11T02:20:35.107Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash f7e03c89d62375f890a9899839a8d5ebf6d0014ea2547e2df729b401135ea231","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:35.110Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:20:35.110Z"} +{"level":"debug","message":"Successfully published new contract data for block 8","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:35.149Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:35.938Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:35.938Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:35.939Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:35.942Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:35.943Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 23, next expected l2 block number: 8","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:35.944Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:35.951Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:35.951Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:35.955Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 8","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:35.955Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 8","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:20:35.956Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:35.956Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:35.987Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:35.987Z"} +{"level":"debug","message":"Synched to block 8","namespace":"aztec:p2p","timestamp":"2023-12-11T02:20:36.005Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:36.006Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:36.006Z"} +{"level":"debug","message":"Block 8 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:36.006Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 32 root 0x1ba6411edcb8cffb7e7bf8c983916dca4919fc23bafaa1d8ad444645d69ac261","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:36.018Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 2176 root 0x13514482e874b85f4ab947130b6050b23a3ab244913a7e1d668877b34d16a645","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:36.018Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 2048 root 0x07086c52870acbe5a075ece0e23c76feb446fa42ae354fdf8e2ede0fc8aecda8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:36.018Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 0 root 0x0ccaafdc9c353743970d4e305ae73641ce694f07db67886d2769c9ed88e969d8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:36.018Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 128 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:36.018Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 9 root 0x049eb54c19e522ee34aad43514ac0f7960966fe558edd6b0f2d6a06a551ea5db","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:36.018Z"} +{"blockNumber":8,"duration":17.618100993335247,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-11T02:20:36.024Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"blockNumber":8,"calldataGas":93900,"calldataSize":21828,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1550105380","gasUsed":"370702","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-11T02:20:36.232Z","transactionHash":"0x41b390db17052e25323a7e00f36fbd8d26853ed4ab93eb978237b76126f1923b","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 8","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:36.233Z"} +{"level":"info","message":"Submitted rollup block 8 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:36.233Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:36.930Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:36.931Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:36.931Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:36.931Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:20:36.933Z"} +{"level":"debug","message":"Synched block 8","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:36.933Z"} +{"level":"debug","message":"Synched block 8","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:36.933Z"} +{"level":"debug","message":"Synched block 8","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:36.934Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.943Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.943Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:36.944Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:36.944Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06d537e166c14431c582e98f9de8bd132f44cc5a8f34c3595d0d7fc7802c9ef7',\n status: 'mined',\n error: '',\n blockHash: '4553b7c42fd05d558ba4d4fdf53f2d076e9407f030dfc97b9880919f02cdcf5d',\n blockNumber: 8,\n contractAddress: '0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.956Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.959Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.959Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 8,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 8,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 8,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 8\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.959Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.962Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.962Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b0000000000000000000000000000000000000000000000002840a19dbe7274d3108a8db81b818314ce7edc76729f99db80131bf13016e74400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.962Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.967Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.967Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b0000000000000000000000000000000000000000000000002840a19dbe7274d3108a8db81b818314ce7edc76729f99db80131bf13016e74400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.967Z"} +{"level":"debug","message":"No new blocks to process, current block number: 24","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:36.977Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf02299fd60790001000fc4c1586c627bfa4154b2b46ebf1c191e11c54598a995bd4f3610b79071e6090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a19729d98985bab052a85a53ebdf884bba2ce651ab14676f5426b6b105e7aa2ca0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001119729d98985bab052a85a53ebdf884bba2ce651ab14676f5426b6b105e7aa2ca00000000000000000000000000000000000000000000000000000000379cfa1a279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011e2c6d8a3e8a41d0d8d81ff714a73ccbac34c1dd66c7380b002d3135e84cfe030fc4c1586c627bfa4154b2b46ebf1c191e11c54598a995bd4f3610b79071e609000000011824b13f778ed60d8a6fa61d7e0298b8b55719d3332938ee04e341891d41a2370000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000079000000000000000000000000000000000000000000000000000000000000009700000000000000000000000000000000000000000000000000000000000000ca00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000e2000000000000000000000000000000000000000000000000000000000000003f000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000170000000000000000000000000000000000000000000000000000000000000097000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000a700000000000000000000000000000000000000000000000000000000000000e4000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000000009d00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000d2000000000000000000000000000000000000000000000000000000000000004d000000000000000000000000000000000000000000000000000000000000009700000000000000000000000000000000000000000000000000000000000000990000000000000000000000000000000000000000000000000000000000000079000000000000000000000000000000000000000000000000000000000000006f000000000000000000000000000000000000000000000000000000000000002300000000000000000000000000000000000000000000000000000000000000a5000000000000000000000000000000000000000000000000000000000000008500000000000000000000000000000000000000000000000000000000000000860000000000000000000000000000000000000000000000000000000000000021000000000000000000000000000000000000000000000000000000000000009300000000000000000000000000000000000000000000000000000000000000350000000000000000000000000000000000000000000000000000000000000089000000000000000000000000000000000000000000000000000000000000006a000000000000000000000000000000000000000000000000000000000000005d000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000b60000000000000000000000000000000000000000000000000000000000000079000000000000000000000000000000000000000000000000000000000000008b00000000000000000000000000000000000000000000000000000000000000210000000000000000000000000000000000000000000000000000000000000095000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000000be000000000000000000000000000000000000000000000000000000000000009a00000000000000000000000000000000000000000000000000000000000000ea0000000000000000000000000000000000000000000000000000000000000077000000000000000000000000000000000000000000000000000000000000008700000000000000000000000000000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000bd0000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000d200000000000000000000000000000000000000000000000000000000000000680000000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000009d00000000000000000000000000000000000000000000000000000000000000ca00000000000000000000000000000000000000000000000000000000000000e500000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000da000000000000000000000000000000000000000000000000000000000000008b'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.981Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:36.982Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:36.982Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:36.982Z"} +{"level":"debug","message":"Executing external function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:36.982Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:36.999Z"} +{"level":"debug","message":"Returning 1 notes for 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1965f6b5972afdef0c08035bff5d4a606abad43c9d3c6e2becc40f8629fbe3c7:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:20:36.999Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:37.009Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:37.034Z"} +{"level":"debug","message":"Calling private function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:379cfa1a from 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:20:37.034Z"} +{"level":"debug","message":"Executing external function 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b:379cfa1a","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:37.035Z"} +{"level":"debug","message":"Oracle callback getRandomField","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:37.038Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:37.039Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:37.040Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:37.043Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:37.043Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:37.044Z"} +{"level":"debug","message":"Returning from call to 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b:379cfa1a","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:37.050Z"} +{"level":"debug","message":"Returning from call to 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:37.145Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:37.145Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:37.145Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 8","namespace":"aztec:node","timestamp":"2023-12-11T02:20:37.154Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 8","namespace":"aztec:node","timestamp":"2023-12-11T02:20:37.155Z"} +{"circuitName":"private-kernel-init","duration":173.54630000144243,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:20:37.331Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:20:37.331Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 8","namespace":"aztec:node","timestamp":"2023-12-11T02:20:37.348Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:37.349Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 8","namespace":"aztec:node","timestamp":"2023-12-11T02:20:37.350Z"} +{"circuitName":"private-kernel-inner","duration":215.38273099809885,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:20:37.573Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:20:37.573Z"} +{"circuitName":"private-kernel-ordering","duration":109.73200900107622,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:20:37.694Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:20:37.694Z"} +{"level":"info","message":"Simulating tx 0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad","namespace":"aztec:node","timestamp":"2023-12-11T02:20:37.694Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000009: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000009, 0x00000000000000000000000000000000000000000000000000000000657671f4)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:20:37.700Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:37.701Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:37.702Z"} +{"level":"debug","message":"Processing tx 0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:20:37.981Z"} +{"level":"info","message":"Simulated tx 0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:20:37.982Z"} +{"level":"info","message":"Executed local simulation for 0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:37.982Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200290a3bca4af3172ba75dbb5a6807c305a445d4ccf21df190c55bf6e0885cc9050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad15a9ab5227c906b9381b3fb16dd4a2ac7df37db5cd97f9d1c49372047b8197450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c0000000000000114000001100281c5ccdb8ad5c0112ac3ef0aa7cf71e4abd2ad9ef14bd538e381a25bc0b567710c233b985909fbc0fb9cf375fcb2d2861d878a1b20addcbe73024f0c522c7c3f63baf316e43a8b38f73a02886e35e095edc0573e50f3aaee7f921f78388979d405b4c5dae77005bc17614b41061f63e6e9432fb9bdec7a2f404dc6b34977a4190b5c231bd79bf6b90cb8ae134b6efd9ad4634dbb9e997d652f98019589ca9bf1fa1356a4770e0874519328b2111cbe24aaa510098844f9c251dea6afed6181c0a10c6368453caa4a67ede60d43e883067f8e8daec187b7608a283f6f6c966a41d981b32585a124436b208ad70756be1d85dca38c786c1aaebdc3df67b289052a70cf225d2b7a09b2306b60e09a0a0f',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:37.982Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200290a3bca4af3172ba75dbb5a6807c305a445d4ccf21df190c55bf6e0885cc9050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad15a9ab5227c906b9381b3fb16dd4a2ac7df37db5cd97f9d1c49372047b8197450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c0000000000000114000001100281c5ccdb8ad5c0112ac3ef0aa7cf71e4abd2ad9ef14bd538e381a25bc0b567710c233b985909fbc0fb9cf375fcb2d2861d878a1b20addcbe73024f0c522c7c3f63baf316e43a8b38f73a02886e35e095edc0573e50f3aaee7f921f78388979d405b4c5dae77005bc17614b41061f63e6e9432fb9bdec7a2f404dc6b34977a4190b5c231bd79bf6b90cb8ae134b6efd9ad4634dbb9e997d652f98019589ca9bf1fa1356a4770e0874519328b2111cbe24aaa510098844f9c251dea6afed6181c0a10c6368453caa4a67ede60d43e883067f8e8daec187b7608a283f6f6c966a41d981b32585a124436b208ad70756be1d85dca38c786c1aaebdc3df67b289052a70cf225d2b7a09b2306b60e09a0a0f',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:37.989Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:37.990Z"} +{"level":"info","message":"Sending transaction 0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:37.991Z"} +{"level":"info","message":"Received tx 0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad","namespace":"aztec:node","timestamp":"2023-12-11T02:20:37.991Z"} +{"encryptedLogCount":1,"encryptedLogSize":288,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10145,"timestamp":"2023-12-11T02:20:37.991Z","txHash":"0x0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:37.991Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:37.994Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:37.994Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:37.995Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:38.350Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000009: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000009, 0x00000000000000000000000000000000000000000000000000000000657671f4)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:20:38.355Z"} +{"level":"info","message":"Building block 9 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:38.356Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:38.357Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 8","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:38.357Z"} +{"level":"debug","message":"Processing tx 0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:20:38.359Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:38.359Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:38.359Z"} +{"level":"debug","message":"Assembling block with txs 0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:38.359Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000009","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:38.360Z"} +{"level":"debug","message":"Running base rollup for 0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:38.360Z"} +{"circuitName":"base-rollup","duration":1880.127481997013,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:20:40.877Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:40.878Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:40.880Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:40.880Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:40.881Z"} +{"circuitName":"base-rollup","duration":1819.7937030047178,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:20:43.292Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:43.292Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:43.295Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:43.295Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:43.297Z"} +{"circuitName":"root-rollup","duration":87.89214299619198,"eventName":"circuit-simulation","inputSize":4072,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-11T02:20:43.417Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:43.417Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:43.435Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:43.435Z"} +{"blockNumber":9,"duration":5088.059821002185,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-built","level":"debug","message":"Assembled block 9","namespace":"aztec:sequencer","publicProcessDuration":0.7137119993567467,"rollupCircuitsDuration":5077.568544000387,"timestamp":"2023-12-11T02:20:43.437Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash 1f94143ac3a67e094f8c46f9bbd15b07b877be7a3b7e4c8209fd7cacbac67465","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:43.439Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:20:43.439Z"} +{"level":"debug","message":"Successfully published new contract data for block 9","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:43.452Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:44.302Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:44.302Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:44.303Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:44.305Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:44.305Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 25, next expected l2 block number: 9","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:44.305Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:44.312Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:44.312Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:44.316Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 9","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:44.316Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 9","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:20:44.317Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:44.317Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:44.439Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:44.440Z"} +{"level":"debug","message":"Synched to block 9","namespace":"aztec:p2p","timestamp":"2023-12-11T02:20:44.457Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:44.458Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:44.458Z"} +{"level":"debug","message":"Block 9 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:44.458Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 36 root 0x1ba6411edcb8cffb7e7bf8c983916dca4919fc23bafaa1d8ad444645d69ac261","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:44.469Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 2432 root 0x174112b6521a1346ce7cfab2f438aaef0eb452ccfc3ae3c13abd034c4d4fbc6b","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:44.469Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 2304 root 0x05897580508183dafaaedcc482f4d7dc1d19f7cfdbb3b7275873e4dab77b82d4","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:44.469Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 0 root 0x0ccaafdc9c353743970d4e305ae73641ce694f07db67886d2769c9ed88e969d8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:44.469Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 144 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:44.469Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 10 root 0x05b989b42e6584d9191a3ca0c40f6a8b0649c09707507bf97e85c7ad73f7ab7b","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:44.469Z"} +{"blockNumber":9,"duration":39.03702899813652,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-11T02:20:44.497Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":9,"calldataGas":98004,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"rollup-published-to-l1","gasPrice":"1538507398","gasUsed":"381106","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-11T02:20:44.519Z","transactionHash":"0x959330b63cc714f1f61178fdd518956a0db35832653336da2e749dbe908612a5","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 9","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:44.519Z"} +{"level":"info","message":"Submitted rollup block 9 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:44.519Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:45.295Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:45.295Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:45.295Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:45.295Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:20:45.297Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:20:45.305Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.316Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.317Z"} +{"level":"debug","message":"Added note for contract 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b at slot 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48 with nullifier 0x16f723c3e60060dc7a1622f6cfa3782616cab41b18e17bd8fcee4aeb5ed437bd","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:45.332Z"} +{"level":"debug","message":"Synched block 9","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:45.333Z"} +{"level":"debug","message":"Synched block 9","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:45.333Z"} +{"level":"debug","message":"Synched block 9","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:45.334Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.335Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.335Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:45.336Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:45.336Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0376b294c9bfdf9d6a225ddf7bfc9bf7819a5bb978d0f2151d1c24c8e4a1f2ad',\n status: 'mined',\n error: '',\n blockHash: '2ee101216dd9d8724d99bb48f03976b735b87576f37dce57a8415e31dce34015',\n blockNumber: 9,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.345Z"} +{"level":"debug","message":"No new blocks to process, current block number: 26","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:45.347Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.348Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.348Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 9,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 9,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 9,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 9\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.348Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.350Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.350Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b0000000000000000000000000000000000000000000000002840a19dbe7274d3108a8db81b818314ce7edc76729f99db80131bf13016e74400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.351Z"} +{"level":"debug","message":"JsonProxy:call viewTx [\n 'get_counter',\n [\n {\n type: 'AztecAddress',\n data: '0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022'\n }\n ],\n {\n type: 'Fr',\n data: '0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b'\n },\n null\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.354Z"} +{"level":"debug","message":"JsonProxy:call viewTx <- [\n 'get_counter',\n [\n AztecAddress {\n asBuffer: \n }\n ],\n Fr {\n asBuffer: \n },\n undefined\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.354Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:45.354Z"} +{"level":"debug","message":"Executing unconstrained simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:45.362Z"} +{"level":"debug","message":"Executing unconstrained function 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b:46725bdd","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:20:45.362Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.370Z"} +{"level":"debug","message":"Unconstrained simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:45.376Z"} +{"level":"debug","message":"JsonProxy:call viewTx -> { type: 'bigint', data: '0' }","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.376Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.380Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.380Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b0000000000000000000000000000000000000000000000002840a19dbe7274d3108a8db81b818314ce7edc76729f99db80131bf13016e74400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.380Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf02299fd6079000100254f16c8b1a83af5de4af2d044845d30ac201690aa71268ba5e2906682cd4a420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007fe06ed2279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106f5f492562a362778fa80fcf8f87d099d07a241559a22367b0f69d3e85bc932254f16c8b1a83af5de4af2d044845d30ac201690aa71268ba5e2906682cd4a4200000001220113b2867d505ad95ecd881a7d64a76f8175162fd99379d4e124a275a9c2a0000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003700000000000000000000000000000000000000000000000000000000000000ad0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000008e000000000000000000000000000000000000000000000000000000000000009d000000000000000000000000000000000000000000000000000000000000002900000000000000000000000000000000000000000000000000000000000000cf00000000000000000000000000000000000000000000000000000000000000620000000000000000000000000000000000000000000000000000000000000099000000000000000000000000000000000000000000000000000000000000003700000000000000000000000000000000000000000000000000000000000000f3000000000000000000000000000000000000000000000000000000000000003f00000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000de0000000000000000000000000000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000009900000000000000000000000000000000000000000000000000000000000000d7000000000000000000000000000000000000000000000000000000000000005900000000000000000000000000000000000000000000000000000000000000d200000000000000000000000000000000000000000000000000000000000000a5000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000d700000000000000000000000000000000000000000000000000000000000000c4000000000000000000000000000000000000000000000000000000000000008f000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000000bc000000000000000000000000000000000000000000000000000000000000009800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000a200000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000000000cb000000000000000000000000000000000000000000000000000000000000004700000000000000000000000000000000000000000000000000000000000000be000000000000000000000000000000000000000000000000000000000000009d000000000000000000000000000000000000000000000000000000000000006700000000000000000000000000000000000000000000000000000000000000ec000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000a9000000000000000000000000000000000000000000000000000000000000006f000000000000000000000000000000000000000000000000000000000000006300000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000e5000000000000000000000000000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000e90000000000000000000000000000000000000000000000000000000000000076000000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000cd000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000b3000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000000000a3000000000000000000000000000000000000000000000000000000000000009a0000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000008500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000009100000000000000000000000000000000000000000000000000000000000000b800000000000000000000000000000000000000000000000000000000000000d1'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.390Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:45.391Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:45.391Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:45.391Z"} +{"level":"debug","message":"Executing external function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:45.391Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.408Z"} +{"level":"debug","message":"Returning 1 notes for 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1965f6b5972afdef0c08035bff5d4a606abad43c9d3c6e2becc40f8629fbe3c7:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:20:45.408Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.418Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.447Z"} +{"level":"debug","message":"Calling private function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:7fe06ed2 from 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:20:45.447Z"} +{"level":"debug","message":"Executing external function 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b:7fe06ed2","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:45.451Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.456Z"} +{"level":"debug","message":"Returning 1 notes for 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x209ecf7b6497e52fd9c762d2c3ed57c7e6dfb369891303a4cca6895ce5f2751c:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x1cc88621ceb3d97c06f13d2ca6f15dc33c45c62c6d99eac6e50b958d03eb3d6a,0x0000000000000000000000000000000000000000000000000000000000000000,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:20:45.456Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.474Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.476Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.479Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.482Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.483Z"} +{"level":"debug","message":"Returning 1 notes for 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x0000000000000000000000000000000000000000000000000000000000000000:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x1cc88621ceb3d97c06f13d2ca6f15dc33c45c62c6d99eac6e50b958d03eb3d6a,0x0000000000000000000000000000000000000000000000000000000000000000,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:20:45.483Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.501Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.502Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.506Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.509Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.510Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:45.511Z"} +{"level":"debug","message":"Returning from call to 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b:7fe06ed2","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:45.519Z"} +{"level":"debug","message":"Returning from call to 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:45.629Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:45.630Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:45.630Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 9","namespace":"aztec:node","timestamp":"2023-12-11T02:20:45.642Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:45.643Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 9","namespace":"aztec:node","timestamp":"2023-12-11T02:20:45.644Z"} +{"circuitName":"private-kernel-init","duration":200.8618059977889,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:20:45.847Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:20:45.847Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 9","namespace":"aztec:node","timestamp":"2023-12-11T02:20:45.857Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 9","namespace":"aztec:node","timestamp":"2023-12-11T02:20:45.858Z"} +{"circuitName":"private-kernel-inner","duration":248.52456299960613,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-11T02:20:46.109Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:20:46.109Z"} +{"circuitName":"private-kernel-ordering","duration":111.09771899878979,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-11T02:20:46.231Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-11T02:20:46.231Z"} +{"level":"info","message":"Simulating tx 12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e","namespace":"aztec:node","timestamp":"2023-12-11T02:20:46.231Z"} +{"level":"debug","message":"Built global variables for block 0x000000000000000000000000000000000000000000000000000000000000000a: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x000000000000000000000000000000000000000000000000000000000000000a, 0x00000000000000000000000000000000000000000000000000000000657671fc)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:20:46.238Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:46.239Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:46.239Z"} +{"level":"debug","message":"Processing tx 12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:20:46.517Z"} +{"level":"info","message":"Simulated tx 12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e succeeds","namespace":"aztec:node","timestamp":"2023-12-11T02:20:46.518Z"} +{"level":"info","message":"Executed local simulation for 12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:46.518Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2002ad6873c2f6aaded9d80fa872c58afba30f9485296b791080759ddfdf757d00900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e16f723c3e60060dc7a1622f6cfa3782616cab41b18e17bd8fcee4aeb5ed437bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f42401dbb44dcd1d983d12f89ed3852b39f6ba41cf00ed8fd9bf664f2f3ecce653e9500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c000000000000011400000110084a3b8a7f12abd3fa8bde4e4a4236ad0ba31d0e69a5bc7c610550d33468118c36be7651f4d1411f358f03d9b7f2f1f4a280f28ad8776ad079fedbe7e618cfc03b9f070afbaf7a6fab03a6a4bde3dfca63973528603222f3bdbd50216d7a6de02a47d00f596fe0433fed8bef7e98891db01a044b59e2faacdf7928eb0198ffeb029b8f19658dc00bc88eec64acd0f31d37656862c12cf0f685e2a8624ee9be915c31d94783c2bb1a81fc1a880253f578e2cf45936a409fe39d8864835d83053eb743a3d827f6472fb9e14650d45e88c418c2318a70b3261cbd7a725bb29ea614e63e58d180cc7c0f1049c6dabddf739713d0eeac2a8e707f5f9f8650d497aa162067b078a8b9ccceace7fc8f9f734f93',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:46.518Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2002ad6873c2f6aaded9d80fa872c58afba30f9485296b791080759ddfdf757d00900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e16f723c3e60060dc7a1622f6cfa3782616cab41b18e17bd8fcee4aeb5ed437bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f42401dbb44dcd1d983d12f89ed3852b39f6ba41cf00ed8fd9bf664f2f3ecce653e9500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000011c000000000000011400000110084a3b8a7f12abd3fa8bde4e4a4236ad0ba31d0e69a5bc7c610550d33468118c36be7651f4d1411f358f03d9b7f2f1f4a280f28ad8776ad079fedbe7e618cfc03b9f070afbaf7a6fab03a6a4bde3dfca63973528603222f3bdbd50216d7a6de02a47d00f596fe0433fed8bef7e98891db01a044b59e2faacdf7928eb0198ffeb029b8f19658dc00bc88eec64acd0f31d37656862c12cf0f685e2a8624ee9be915c31d94783c2bb1a81fc1a880253f578e2cf45936a409fe39d8864835d83053eb743a3d827f6472fb9e14650d45e88c418c2318a70b3261cbd7a725bb29ea614e63e58d180cc7c0f1049c6dabddf739713d0eeac2a8e707f5f9f8650d497aa162067b078a8b9ccceace7fc8f9f734f93',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:46.525Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:46.526Z"} +{"level":"info","message":"Sending transaction 12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:46.526Z"} +{"level":"info","message":"Received tx 12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e","namespace":"aztec:node","timestamp":"2023-12-11T02:20:46.526Z"} +{"encryptedLogCount":1,"encryptedLogSize":288,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10145,"timestamp":"2023-12-11T02:20:46.527Z","txHash":"0x12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:46.527Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:46.528Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:46.529Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:46.529Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:46.645Z"} +{"level":"debug","message":"Built global variables for block 0x000000000000000000000000000000000000000000000000000000000000000a: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x000000000000000000000000000000000000000000000000000000000000000a, 0x00000000000000000000000000000000000000000000000000000000657671fc)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-11T02:20:46.650Z"} +{"level":"info","message":"Building block 10 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:46.651Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:46.652Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 9","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:46.652Z"} +{"level":"debug","message":"Processing tx 12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-11T02:20:46.654Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:46.655Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:46.655Z"} +{"level":"debug","message":"Assembling block with txs 12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:46.655Z"} +{"level":"debug","message":"Building block 0x000000000000000000000000000000000000000000000000000000000000000a","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:46.655Z"} +{"level":"debug","message":"Running base rollup for 12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:46.656Z"} +{"circuitName":"base-rollup","duration":1921.0137149989605,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:20:49.233Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:49.233Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:49.235Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:49.235Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:49.236Z"} +{"circuitName":"base-rollup","duration":1834.0244249999523,"eventName":"circuit-simulation","inputSize":667616,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":873,"timestamp":"2023-12-11T02:20:51.715Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:51.716Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:51.721Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:51.721Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:51.722Z"} +{"circuitName":"root-rollup","duration":85.95274200290442,"eventName":"circuit-simulation","inputSize":4072,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-11T02:20:51.842Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-11T02:20:51.842Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:51.860Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:51.860Z"} +{"blockNumber":10,"duration":5218.136180996895,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-built","level":"debug","message":"Assembled block 10","namespace":"aztec:sequencer","publicProcessDuration":1.2260399982333183,"rollupCircuitsDuration":5205.921720996499,"timestamp":"2023-12-11T02:20:51.861Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash 48c239755a52b650e6542abb64b6fa8cdbf9af5ecb1141daca7062d0779fd0e1","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:51.863Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-11T02:20:51.863Z"} +{"level":"debug","message":"Successfully published new contract data for block 10","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:51.876Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:52.727Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:52.727Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:52.728Z"} +{"level":"debug","message":"Adding pending l1 to l2 messages to store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:52.733Z"} +{"level":"debug","message":"Removing pending l1 to l2 messages from store where messages were cancelled","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:52.734Z"} +{"level":"debug","message":"Retrieving chain state from L1 block: 27, next expected l2 block number: 10","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:52.734Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:52.746Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:52.746Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:52.749Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 10","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:52.750Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 10","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-11T02:20:52.750Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:52.750Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:52.850Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:52.850Z"} +{"level":"debug","message":"Synched to block 10","namespace":"aztec:p2p","timestamp":"2023-12-11T02:20:52.867Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:52.868Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:52.868Z"} +{"level":"debug","message":"Block 10 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:52.868Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 40 root 0x1ba6411edcb8cffb7e7bf8c983916dca4919fc23bafaa1d8ad444645d69ac261","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:52.880Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 2688 root 0x0f467b4f3af8524e1f86e2bccd52d6055739cba6f09bbc7416384ed72c101454","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:52.880Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 2560 root 0x1567fd7839bc0ddebcdf2ad031da1502ff4674ccdcb8a10d7d02f8b827f88f8c","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:52.880Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 0 root 0x0ccaafdc9c353743970d4e305ae73641ce694f07db67886d2769c9ed88e969d8","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:52.881Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 160 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:52.881Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 11 root 0x0c3764444b64108cd84fca8fe799c319d8014c8bd374366df0e9b23d1fa7924e","namespace":"aztec:merkle_trees","timestamp":"2023-12-11T02:20:52.881Z"} +{"blockNumber":10,"duration":41.23946800082922,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-11T02:20:52.909Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":10,"calldataGas":97992,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":304,"eventName":"rollup-published-to-l1","gasPrice":"1529596944","gasUsed":"381094","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-11T02:20:52.941Z","transactionHash":"0x1801dc2fc2e6b5dfee27e0d0ecfd9822d20c73a8615b0baf7504f52f1568a800","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 10","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:52.942Z"} +{"level":"info","message":"Submitted rollup block 10 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:52.942Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:53.717Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:53.717Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:53.718Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:53.718Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:20:53.724Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:20:53.731Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.742Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.743Z"} +{"level":"debug","message":"Added note for contract 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b at slot 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48 with nullifier 0x13e74f735b9432d63592b69b324028549a12b1f9bf0f7f0c4bb205bba4b60d68","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:53.760Z"} +{"level":"debug","message":"Removed note for contract 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b at slot 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48 with nullifier 0x16f723c3e60060dc7a1622f6cfa3782616cab41b18e17bd8fcee4aeb5ed437bd","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:53.760Z"} +{"level":"debug","message":"Synched block 10","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:53.760Z"} +{"level":"debug","message":"Synched block 10","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:53.762Z"} +{"level":"debug","message":"Synched block 10","namespace":"aztec:note_processor","timestamp":"2023-12-11T02:20:53.763Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.763Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.764Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:53.764Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 10","namespace":"aztec:l2_block","timestamp":"2023-12-11T02:20:53.764Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '12eae4d0acc942965a8b6c04060a7c0c7026f923cc44f92f569610447db1e99e',\n status: 'mined',\n error: '',\n blockHash: '1e403467ce019a35b0c61fefe13265a9c09dd1287ff60b27882be6825c8bd2f8',\n blockNumber: 10,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.774Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.777Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.777Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 10,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 10,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 10,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 10\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.777Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.779Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.779Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b0000000000000000000000000000000000000000000000002840a19dbe7274d3108a8db81b818314ce7edc76729f99db80131bf13016e74400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.779Z"} +{"level":"debug","message":"No new blocks to process, current block number: 28","namespace":"aztec:archiver","timestamp":"2023-12-11T02:20:53.781Z"} +{"level":"debug","message":"JsonProxy:call viewTx [\n 'get_counter',\n [\n {\n type: 'AztecAddress',\n data: '0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022'\n }\n ],\n {\n type: 'Fr',\n data: '0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b'\n },\n null\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.784Z"} +{"level":"debug","message":"JsonProxy:call viewTx <- [\n 'get_counter',\n [\n AztecAddress {\n asBuffer: \n }\n ],\n Fr {\n asBuffer: \n },\n undefined\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.785Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:53.785Z"} +{"level":"debug","message":"Executing unconstrained simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:53.791Z"} +{"level":"debug","message":"Executing unconstrained function 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b:46725bdd","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-11T02:20:53.792Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.801Z"} +{"level":"debug","message":"Unconstrained simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:53.806Z"} +{"level":"debug","message":"JsonProxy:call viewTx -> { type: 'bigint', data: '1' }","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.806Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.811Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.811Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b0000000000000000000000000000000000000000000000002840a19dbe7274d3108a8db81b818314ce7edc76729f99db80131bf13016e74400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.812Z"} +{"level":"debug","message":"JsonProxy:call proveInit [\n {\n type: 'TxExecutionRequest',\n data: '06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf02299fd60790001000bac11aaa12aca917413d3d1c74fc50ced59b49bcc6757083064f9ee192ac4420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008b81f61c279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011c9cd4506b5e0446256897293c5fa4a85291d22713c57aa04330ed68a280c30a0bac11aaa12aca917413d3d1c74fc50ced59b49bcc6757083064f9ee192ac44200000001097afd2a5dfe895e511c3aa3d6bcb2950341acb3b02fa228910824ab65feea9300000040000000000000000000000000000000000000000000000000000000000000001f000000000000000000000000000000000000000000000000000000000000003f00000000000000000000000000000000000000000000000000000000000000bd000000000000000000000000000000000000000000000000000000000000005400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000055000000000000000000000000000000000000000000000000000000000000002d00000000000000000000000000000000000000000000000000000000000000f600000000000000000000000000000000000000000000000000000000000000dd000000000000000000000000000000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000009500000000000000000000000000000000000000000000000000000000000000b9000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c60000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000000000000000000000000000000000000076000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000006700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000007a00000000000000000000000000000000000000000000000000000000000000dd00000000000000000000000000000000000000000000000000000000000000e30000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000006200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000008e00000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000ca000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000ef000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a800000000000000000000000000000000000000000000000000000000000000ca00000000000000000000000000000000000000000000000000000000000000a200000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000c200000000000000000000000000000000000000000000000000000000000000bb000000000000000000000000000000000000000000000000000000000000005f00000000000000000000000000000000000000000000000000000000000000b6000000000000000000000000000000000000000000000000000000000000007e0000000000000000000000000000000000000000000000000000000000000015000000000000000000000000000000000000000000000000000000000000004500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000037000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000006c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000006800000000000000000000000000000000000000000000000000000000000000a100000000000000000000000000000000000000000000000000000000000000e8'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.848Z"} +{"level":"debug","message":"JsonProxy:call proveInit <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-11T02:20:53.848Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:53.848Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:20:53.848Z"} +{"level":"debug","message":"Executing external function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:99fd6079","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:53.849Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.864Z"} +{"level":"debug","message":"Returning 1 notes for 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1965f6b5972afdef0c08035bff5d4a606abad43c9d3c6e2becc40f8629fbe3c7:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:20:53.864Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.874Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.898Z"} +{"level":"debug","message":"Calling private function 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022:8b81f61c from 0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:20:53.898Z"} +{"level":"debug","message":"Executing external function 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b:8b81f61c","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-11T02:20:53.902Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.907Z"} +{"level":"debug","message":"Returning 1 notes for 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x04a86a64cfa398ff2145297119871fbe8f6a258e8b2ce379617e6a7690c05b90:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x1cc88621ceb3d97c06f13d2ca6f15dc33c45c62c6d99eac6e50b958d03eb3d6a,0x0000000000000000000000000000000000000000000000000000000000000001,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:20:53.907Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.926Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.927Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.930Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.933Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.934Z"} +{"level":"debug","message":"Returning 1 notes for 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b at 0x0a2bfcff16ebf631968857cba792e182392ff28bfd1ce8a5070fa9370b7e5a48: 0x0000000000000000000000000000000000000000000000000000000000000000:[0x06357cc85cb8fc561adbf741f63cd75efa26ffba1c80d431ec77d036d8edf022,0x1cc88621ceb3d97c06f13d2ca6f15dc33c45c62c6d99eac6e50b958d03eb3d6a,0x0000000000000000000000000000000000000000000000000000000000000001,0x000000000000000000000000000000000000000000000000000000000000000a]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:20:53.934Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.950Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.951Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.955Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.958Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.958Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.959Z"} +{"level":"debug","message":"Oracle callback packArguments","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.960Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.960Z"} +{"level":"debug","message":"Calling private function 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b:1dd87b90 from 0x279642b88ea8ba40256d1ecde3e69bd86acf369d65f3a6ce058a778aff49ba9b","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-11T02:20:53.960Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.960Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-11T02:20:53.961Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:20:53.962Z"} +{"level":"info","message":"Shutting down...","namespace":"aztec:sandbox","timestamp":"2023-12-11T02:24:05.616Z"} +{"level":"debug","message":"Stopped","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-11T02:24:05.619Z"} +{"level":"info","message":"Stopped","namespace":"aztec:pxe_service","timestamp":"2023-12-11T02:24:05.619Z"} +{"level":"info","message":"Stopping","namespace":"aztec:node","timestamp":"2023-12-11T02:24:05.620Z"} +{"level":"debug","message":"Stopped sequencer","namespace":"aztec:sequencer","timestamp":"2023-12-11T02:24:05.622Z"} +{"level":"debug","message":"Stopping p2p client...","namespace":"aztec:p2p","timestamp":"2023-12-11T02:24:05.623Z"} +{"level":"debug","message":"Moved to state STOPPED","namespace":"aztec:p2p","timestamp":"2023-12-11T02:24:05.642Z"} +{"level":"debug","message":"Stopping world state...","namespace":"aztec:world_state","timestamp":"2023-12-11T02:24:05.642Z"} diff --git a/log/aztec-sandbox.debug.log b/log/aztec-sandbox.debug.log new file mode 120000 index 00000000000..950eab0e7ef --- /dev/null +++ b/log/aztec-sandbox.debug.log @@ -0,0 +1 @@ +aztec-sandbox-2023-12-10.debug.log \ No newline at end of file diff --git a/yarn-project/pxe/src/kernel_prover/kernel_prover.ts b/yarn-project/pxe/src/kernel_prover/kernel_prover.ts index 65b528d24b7..a8a07e77519 100644 --- a/yarn-project/pxe/src/kernel_prover/kernel_prover.ts +++ b/yarn-project/pxe/src/kernel_prover/kernel_prover.ts @@ -80,10 +80,8 @@ export class KernelProver { /// BUILD PRIVATE CALL DATA FOR CURRENT ITERATION /// const currentExecution = executionStack.pop()!; executionStack.push(...currentExecution.nestedExecutions); - const privateCallRequests = currentExecution.nestedExecutions.map(result => result.callStackItem.toCallRequest()); const publicCallRequests = currentExecution.enqueuedPublicFunctionCalls.map(result => result.toCallRequest()); - const readRequestMembershipWitnesses = currentExecution.readRequestPartialWitnesses; for (let rr = 0; rr < readRequestMembershipWitnesses.length; rr++) { const rrWitness = readRequestMembershipWitnesses[rr]; @@ -103,11 +101,9 @@ export class KernelProver { publicCallRequests, readRequestMembershipWitnesses, ); - /// PROVE /// const proofInput = new PrivateKernelInputsInit(txRequest, privateCallData); output = await this.proofCreator.createProofInit(proofInput); - (await this.getNewNotes(currentExecution)).forEach(n => { newNotes[n.commitment.toString()] = n; }); From 5f89b6337f24642895c6d2eec756e36e90d683d6 Mon Sep 17 00:00:00 2001 From: Jack Gilcrest Date: Tue, 19 Dec 2023 01:57:32 -0700 Subject: [PATCH 7/9] stash --- ...7411b6b375064925b8088b0cd141771-audit.json | 15 + log/aztec-sandbox-2023-12-14.debug.log | 1448 +++++++++++ log/aztec-sandbox-2023-12-15.debug.log | 2157 +++++++++++++++++ log/aztec-sandbox-2023-12-15.debug.log.gz | 0 log/aztec-sandbox-2023-12-17.debug.log | 0 log/aztec-sandbox.debug.log | 2 +- yarn-project/aztec.js/src/pxe_client.ts | 17 +- .../aztec.js/src/wallet/base_wallet.ts | 15 +- .../src/structs/kernel/public_inputs.ts | 25 + yarn-project/circuits.js/src/structs/proof.ts | 19 + .../src/structs/verification_key.ts | 17 + ...7411b6b375064925b8088b0cd141771-audit.json | 33 +- .../pxe/src/kernel_prover/kernel_prover.ts | 56 +- .../pxe/src/pxe_http/pxe_http_server.ts | 13 +- .../pxe/src/pxe_service/pxe_service.ts | 19 +- .../types/src/interfaces/execution_result.ts | 83 +- yarn-project/types/src/interfaces/index.ts | 1 + .../types/src/interfaces/kernel_proof_data.ts | 118 + yarn-project/types/src/interfaces/pxe.ts | 12 +- 19 files changed, 3963 insertions(+), 87 deletions(-) create mode 100644 log/aztec-sandbox-2023-12-14.debug.log create mode 100644 log/aztec-sandbox-2023-12-15.debug.log create mode 100644 log/aztec-sandbox-2023-12-15.debug.log.gz create mode 100644 log/aztec-sandbox-2023-12-17.debug.log create mode 100644 yarn-project/types/src/interfaces/kernel_proof_data.ts diff --git a/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json b/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json index 453475026dc..69687bb7528 100644 --- a/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json +++ b/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json @@ -9,6 +9,21 @@ "date": 1702260521572, "name": "log/aztec-sandbox-2023-12-10.debug.log", "hash": "ca935fbedccbc0531dcabea0d10061858a4824dea5b0d0b3267aa26a9bc9393d" + }, + { + "date": 1702612556468, + "name": "log/aztec-sandbox-2023-12-14.debug.log", + "hash": "dcbd779e3dd2b38d54bd09d73ee2853b47f26880fa3ef6be3b3039b1c807f922" + }, + { + "date": 1702688252492, + "name": "log/aztec-sandbox-2023-12-15.debug.log", + "hash": "9a457ac8aa755ca6ae5ffeeb8fb31f18f8f6f2d3b45e6bfd1612bf5d7651b0d8" + }, + { + "date": 1702867376921, + "name": "log/aztec-sandbox-2023-12-17.debug.log", + "hash": "a646ed87289113c18bd8a8174109fc1cb590b1a1df40ccf262ebc9085dfff113" } ], "hashType": "sha256" diff --git a/log/aztec-sandbox-2023-12-14.debug.log b/log/aztec-sandbox-2023-12-14.debug.log new file mode 100644 index 00000000000..da89fa62dad --- /dev/null +++ b/log/aztec-sandbox-2023-12-14.debug.log @@ -0,0 +1,1448 @@ +{"level":"info","message":"Debug logs will be written to /home/jpag/Workground/aztec/aztec-packages/log/aztec-sandbox.debug.log","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:55:56.472Z"} +{"level":"info","message":"Setting up Aztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c), please stand by...","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:55:56.474Z"} +{"level":"debug","message":"Deploying contracts...","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:55:56.652Z"} +{"level":"debug","message":"Deployed Registry at 0xd6b040736e948621c5b6e0a494473c47a6113ea8","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:55:56.711Z"} +{"level":"debug","message":"Deployed Inbox at 0x139e1d41943ee15dde4df876f9d0e7f85e26660a","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:55:56.745Z"} +{"level":"debug","message":"Deployed Outbox at 0xade429ba898c34722e722415d722a70a297ce3a2","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:55:56.765Z"} +{"level":"debug","message":"Deployed Rollup at 0x7b4f352cd40114f12e82fc675b5ba8c7582fc513","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:55:56.791Z"} +{"level":"debug","message":"Deployed contract deployment emitter at 0x82eda215fa92b45a3a76837c65ab862b6c7564a8","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:55:56.815Z"} +{"level":"debug","message":"Opening temporary databases","namespace":"aztec:node","timestamp":"2023-12-15T03:55:56.816Z"} +{"level":"debug","message":"Rollup contract address has changed, clearing databases","namespace":"aztec:node","timestamp":"2023-12-15T03:55:56.822Z"} +{"level":"debug","message":"Performing initial chain sync...","namespace":"aztec:archiver","timestamp":"2023-12-15T03:55:56.827Z"} +{"level":"debug","message":"No current L2 block number found in db, starting from 0","namespace":"aztec:world_state","timestamp":"2023-12-15T03:55:57.750Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:p2p","timestamp":"2023-12-15T03:55:57.751Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:world_state","timestamp":"2023-12-15T03:55:57.751Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:world_state","timestamp":"2023-12-15T03:55:57.751Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:world_state","timestamp":"2023-12-15T03:55:57.752Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:p2p","timestamp":"2023-12-15T03:55:57.752Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:p2p","timestamp":"2023-12-15T03:55:57.752Z"} +{"level":"debug","message":"Initialized sequencer with 1-32 txs per block.","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:55:57.759Z"} +{"level":"debug","message":"Sequencer started","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:55:57.760Z"} +{"level":"debug","message":"Started Aztec Node against chain 0x7a69 with contracts - \nRollup: 0x7b4f352cd40114f12e82fc675b5ba8c7582fc513\nRegistry: 0xd6b040736e948621c5b6e0a494473c47a6113ea8\nInbox: 0x139e1d41943ee15dde4df876f9d0e7f85e26660a\nOutbox: 0xade429ba898c34722e722415d722a70a297ce3a2\nContract Emitter: 0x82eda215fa92b45a3a76837c65ab862b6c7564a8","namespace":"aztec:node","timestamp":"2023-12-15T03:55:57.761Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-15T03:55:57.762Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-15T03:55:57.766Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-15T03:55:57.771Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-15T03:55:57.771Z"} +{"level":"debug","message":"Started","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T03:55:57.773Z"} +{"level":"info","message":"Started PXE connected to chain 31337 version 1","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:57.773Z"} +{"level":"info","message":"Setting up test accounts...","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:55:57.773Z"} +{"level":"info","message":"Registered account 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:57.949Z"} +{"level":"debug","message":"Registered account\n Address: 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n Partial Address: 0x284e333701fbf6b040cdd45feeaadc23505e90e4714af8471387b20fee13e541\n","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:57.950Z"} +{"level":"info","message":"Registered account 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:57.950Z"} +{"level":"debug","message":"Registered account\n Address: 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n Partial Address: 0x0bdef5c62eaf9c17bbf24fd1f2e469c6fe96ccea0513931287f758e0234d249b\n","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:57.950Z"} +{"level":"info","message":"Registered account 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:57.950Z"} +{"level":"debug","message":"Registered account\n Address: 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n Partial Address: 0x0c8ef4391be038949491a6f64cf0e3c66f0e8517d62be4abf3432cf6061ea2a9\n","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:57.950Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.098Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.098Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.098Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.105Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.106Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.107Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.114Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.115Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.115Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:55:58.116Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:55:58.118Z"} +{"level":"debug","message":"Executing external function 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:55:58.118Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:55:58.331Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:55:58.341Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:55:58.351Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:55:58.352Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:55:58.352Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:55:58.353Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:55:58.355Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:55:58.362Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:55:58.366Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:55:58.388Z"} +{"level":"debug","message":"Returning from call to 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:55:58.395Z"} +{"level":"debug","message":"Returning from call to 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:55:58.400Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.401Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.401Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.401Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.401Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.405Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:55:58.406Z"} +{"circuitName":"private-kernel-init","duration":685.3829590082169,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T03:55:59.099Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:55:59.099Z"} +{"circuitName":"private-kernel-init","duration":646.73360902071,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T03:55:59.101Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:55:59.102Z"} +{"circuitName":"private-kernel-init","duration":624.2857019901276,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T03:55:59.104Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:55:59.104Z"} +{"circuitName":"private-kernel-ordering","duration":483.53324097394943,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T03:55:59.632Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:55:59.632Z"} +{"circuitName":"private-kernel-ordering","duration":470.2160629630089,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T03:55:59.633Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:55:59.634Z"} +{"circuitName":"private-kernel-ordering","duration":457.96042400598526,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T03:55:59.634Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:55:59.635Z"} +{"level":"info","message":"Simulating tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-15T03:55:59.637Z"} +{"level":"info","message":"Simulating tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-15T03:55:59.637Z"} +{"level":"info","message":"Simulating tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-15T03:55:59.637Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T03:55:59.707Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:55:59.708Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T03:55:59.769Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:55:59.769Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T03:55:59.846Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:55:59.846Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:56:00.049Z"} +{"level":"info","message":"Simulated tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61 succeeds","namespace":"aztec:node","timestamp":"2023-12-15T03:56:00.050Z"} +{"level":"info","message":"Executed local simulation for 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:56:00.050Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:56:00.052Z"} +{"level":"info","message":"Simulated tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 succeeds","namespace":"aztec:node","timestamp":"2023-12-15T03:56:00.052Z"} +{"level":"info","message":"Executed local simulation for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:56:00.052Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:56:00.054Z"} +{"level":"info","message":"Simulated tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe succeeds","namespace":"aztec:node","timestamp":"2023-12-15T03:56:00.054Z"} +{"level":"info","message":"Executed local simulation for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:56:00.055Z"} +{"level":"info","message":"Sending transaction 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:56:00.055Z"} +{"level":"info","message":"Sending transaction 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:56:00.055Z"} +{"level":"info","message":"Sending transaction 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:56:00.055Z"} +{"level":"info","message":"Received tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-15T03:56:00.056Z"} +{"level":"info","message":"Received tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-15T03:56:00.056Z"} +{"level":"info","message":"Received tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-15T03:56:00.056Z"} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-15T03:56:00.057Z","txHash":"0x1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-15T03:56:00.057Z","txHash":"0x2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-15T03:56:00.058Z","txHash":"0x1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"info","message":"Retrieved 3 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:56:00.645Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T03:56:00.652Z"} +{"level":"info","message":"Building block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:56:00.654Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:56:00.654Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:56:00.658Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:56:00.658Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:56:00.659Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:56:00.660Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:56:00.661Z"} +{"level":"debug","message":"Assembling block with txs 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09, 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61, 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:56:00.661Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000001","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:56:00.661Z"} +{"level":"debug","message":"Running base rollup for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T03:56:00.662Z"} +{"circuitName":"base-rollup","duration":1879.150848031044,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T03:56:03.049Z"} +{"level":"debug","message":"Running base rollup for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T03:56:03.050Z"} +{"circuitName":"base-rollup","duration":1770.9591869711876,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T03:56:05.222Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T03:56:05.223Z"} +{"circuitName":"root-rollup","duration":92.0090399980545,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-15T03:56:05.346Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T03:56:05.346Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:05.368Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:05.369Z"} +{"blockNumber":1,"duration":4737.741465985775,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-built","level":"debug","message":"Assembled block 1","namespace":"aztec:sequencer","publicProcessDuration":4.134522974491119,"rollupCircuitsDuration":4718.472441017628,"timestamp":"2023-12-15T03:56:05.380Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Publishing extended contract data with block hash 4479e0c79476bcb1736d550c0e373ca318cdd50d67d3dd5fa40bb8dad30a1e6f","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:56:05.382Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T03:56:05.382Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T03:56:05.490Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T03:56:05.523Z"} +{"level":"debug","message":"Successfully published new contract data for block 1","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:56:05.557Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:06.706Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:06.706Z"} +{"blockNumber":1,"calldataGas":110940,"calldataSize":22596,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"rollup-published-to-l1","gasPrice":"1500000008","gasUsed":"434999","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-15T03:56:06.713Z","transactionHash":"0x4024487338f36efec0007376c94779a275e1b1f7d1935fc918204f958d29dad8","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Successfully published block 1","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:56:06.714Z"} +{"level":"info","message":"Submitted rollup block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:56:06.714Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-15T03:56:06.770Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-15T03:56:06.771Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-15T03:56:06.771Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-15T03:56:06.771Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:56:06.771Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:56:06.791Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:56:06.795Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-15T03:56:06.797Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:06.855Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:06.855Z"} +{"level":"debug","message":"Block 1 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:56:06.856Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:06.857Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:06.857Z"} +{"level":"debug","message":"Synched to block 1","namespace":"aztec:p2p","timestamp":"2023-12-15T03:56:06.885Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 4 root 0x033dd64d21ae6a218161988396dea39a578ebd0876230b5a50b6d9fe594902fb","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:56:06.897Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 384 root 0x124183fff44e3f32d100260e8dd469ddc74d7463349b2f8f679fc7896212dc9e","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:56:06.897Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 256 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:56:06.897Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 96 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:56:06.897Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 16 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:56:06.898Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 2 root 0x1286435510bed8e37738413f6eaf29460d908bc7adffae01dcdae22ed20a5215","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:56:06.898Z"} +{"blockNumber":1,"duration":152.09055203199387,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-15T03:56:07.008Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:07.227Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:07.227Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:07.228Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:07.228Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:07.231Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:07.231Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:07.251Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:07.252Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:07.263Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:07.263Z"} +{"level":"debug","message":"Forwarding 3 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T03:56:07.273Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T03:56:07.279Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:56:07.290Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:56:07.292Z"} +{"level":"debug","message":"Added note for contract 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x09b9ace7b2beea90afef773bbd468b98233a468d1ebe0f087b8a703ff861d500","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:56:07.310Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:56:07.311Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T03:56:07.315Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:56:07.326Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:56:07.327Z"} +{"level":"debug","message":"Added note for contract 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2f7fcae3f4b95db8ae047af7219fc01130ca5f432379b128f219320cb309000e","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:56:07.333Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:56:07.334Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T03:56:07.339Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:56:07.350Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:56:07.352Z"} +{"level":"debug","message":"Added note for contract 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2126b7cc255081f654a397c8b0abdcfc2220ff72f3cadf33781414fb7ced4d8a","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:56:07.357Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:56:07.358Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:56:07.715Z"} +{"level":"debug","message":"No new blocks to process, current block number: 222","namespace":"aztec:archiver","timestamp":"2023-12-15T03:56:07.824Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:08.252Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:08.252Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:08.266Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:56:08.266Z"} +{"level":"info","message":"Debug logs will be written to /home/jpag/Workground/aztec/aztec-packages/log/aztec-sandbox.debug.log","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:59:19.206Z"} +{"level":"info","message":"Setting up Aztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c), please stand by...","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:59:19.208Z"} +{"level":"debug","message":"Deploying contracts...","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:59:19.380Z"} +{"level":"debug","message":"Deployed Registry at 0x5fbdb2315678afecb367f032d93f642f64180aa3","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:59:19.427Z"} +{"level":"debug","message":"Deployed Inbox at 0xe7f1725e7734ce288f8367e1bb143e90bb3f0512","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:59:19.459Z"} +{"level":"debug","message":"Deployed Outbox at 0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:59:19.484Z"} +{"level":"debug","message":"Deployed Rollup at 0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:59:19.508Z"} +{"level":"debug","message":"Deployed contract deployment emitter at 0x5fc8d32690cc91d4c39d9d3abcbd16989f875707","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:59:19.532Z"} +{"level":"debug","message":"Opening temporary databases","namespace":"aztec:node","timestamp":"2023-12-15T03:59:19.533Z"} +{"level":"debug","message":"Rollup contract address has changed, clearing databases","namespace":"aztec:node","timestamp":"2023-12-15T03:59:19.537Z"} +{"level":"debug","message":"Performing initial chain sync...","namespace":"aztec:archiver","timestamp":"2023-12-15T03:59:19.542Z"} +{"level":"debug","message":"No current L2 block number found in db, starting from 0","namespace":"aztec:world_state","timestamp":"2023-12-15T03:59:20.068Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:p2p","timestamp":"2023-12-15T03:59:20.069Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:world_state","timestamp":"2023-12-15T03:59:20.069Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:world_state","timestamp":"2023-12-15T03:59:20.069Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:world_state","timestamp":"2023-12-15T03:59:20.070Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:p2p","timestamp":"2023-12-15T03:59:20.070Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:p2p","timestamp":"2023-12-15T03:59:20.070Z"} +{"level":"debug","message":"Initialized sequencer with 1-32 txs per block.","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:20.074Z"} +{"level":"debug","message":"Sequencer started","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:20.074Z"} +{"level":"debug","message":"Started Aztec Node against chain 0x7a69 with contracts - \nRollup: 0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9\nRegistry: 0x5fbdb2315678afecb367f032d93f642f64180aa3\nInbox: 0xe7f1725e7734ce288f8367e1bb143e90bb3f0512\nOutbox: 0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0\nContract Emitter: 0x5fc8d32690cc91d4c39d9d3abcbd16989f875707","namespace":"aztec:node","timestamp":"2023-12-15T03:59:20.075Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-15T03:59:20.075Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-15T03:59:20.080Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-15T03:59:20.084Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-15T03:59:20.084Z"} +{"level":"debug","message":"Started","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T03:59:20.086Z"} +{"level":"info","message":"Started PXE connected to chain 31337 version 1","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.086Z"} +{"level":"info","message":"Setting up test accounts...","namespace":"aztec:sandbox","timestamp":"2023-12-15T03:59:20.086Z"} +{"level":"info","message":"Registered account 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.254Z"} +{"level":"debug","message":"Registered account\n Address: 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n Partial Address: 0x284e333701fbf6b040cdd45feeaadc23505e90e4714af8471387b20fee13e541\n","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.254Z"} +{"level":"info","message":"Registered account 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.254Z"} +{"level":"debug","message":"Registered account\n Address: 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n Partial Address: 0x0bdef5c62eaf9c17bbf24fd1f2e469c6fe96ccea0513931287f758e0234d249b\n","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.254Z"} +{"level":"info","message":"Registered account 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.254Z"} +{"level":"debug","message":"Registered account\n Address: 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n Partial Address: 0x0c8ef4391be038949491a6f64cf0e3c66f0e8517d62be4abf3432cf6061ea2a9\n","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.255Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.388Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.389Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.389Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.392Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.393Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.394Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.398Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.399Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.399Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:59:20.400Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:59:20.402Z"} +{"level":"debug","message":"Executing external function 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:59:20.402Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:20.507Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:20.513Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:20.518Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:20.519Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:20.519Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:20.519Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:20.521Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:20.524Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:20.526Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:59:20.546Z"} +{"level":"debug","message":"Returning from call to 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:59:20.550Z"} +{"level":"debug","message":"Returning from call to 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T03:59:20.553Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.553Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.553Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.554Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.554Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.556Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:20.556Z"} +{"circuitName":"private-kernel-init","duration":505.99790704250336,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T03:59:21.067Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:59:21.068Z"} +{"circuitName":"private-kernel-init","duration":482.2536369562149,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T03:59:21.070Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:59:21.070Z"} +{"circuitName":"private-kernel-init","duration":467.97993898391724,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T03:59:21.072Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:59:21.072Z"} +{"circuitName":"private-kernel-ordering","duration":365.82781302928925,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T03:59:21.468Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:59:21.468Z"} +{"circuitName":"private-kernel-ordering","duration":356.0648630261421,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T03:59:21.469Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:59:21.470Z"} +{"circuitName":"private-kernel-ordering","duration":348.03211599588394,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T03:59:21.471Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T03:59:21.471Z"} +{"level":"info","message":"Simulating tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-15T03:59:21.473Z"} +{"level":"info","message":"Simulating tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-15T03:59:21.473Z"} +{"level":"info","message":"Simulating tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-15T03:59:21.473Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T03:59:21.510Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:59:21.510Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T03:59:21.512Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:59:21.512Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T03:59:21.538Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:59:21.538Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:59:21.862Z"} +{"level":"info","message":"Simulated tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 succeeds","namespace":"aztec:node","timestamp":"2023-12-15T03:59:21.863Z"} +{"level":"info","message":"Executed local simulation for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:21.863Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:59:21.865Z"} +{"level":"info","message":"Simulated tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe succeeds","namespace":"aztec:node","timestamp":"2023-12-15T03:59:21.865Z"} +{"level":"info","message":"Executed local simulation for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:21.865Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:59:21.866Z"} +{"level":"info","message":"Simulated tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61 succeeds","namespace":"aztec:node","timestamp":"2023-12-15T03:59:21.867Z"} +{"level":"info","message":"Executed local simulation for 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:21.867Z"} +{"level":"info","message":"Sending transaction 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:21.867Z"} +{"level":"info","message":"Sending transaction 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:21.867Z"} +{"level":"info","message":"Sending transaction 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-15T03:59:21.867Z"} +{"level":"info","message":"Received tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-15T03:59:21.868Z"} +{"level":"info","message":"Received tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-15T03:59:21.868Z"} +{"level":"info","message":"Received tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-15T03:59:21.868Z"} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-15T03:59:21.869Z","txHash":"0x1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-15T03:59:21.869Z","txHash":"0x2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-15T03:59:21.870Z","txHash":"0x1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"info","message":"Retrieved 3 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:22.482Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T03:59:22.489Z"} +{"level":"info","message":"Building block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:22.491Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:59:22.492Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:59:22.494Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:59:22.494Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T03:59:22.495Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:22.496Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:22.497Z"} +{"level":"debug","message":"Assembling block with txs 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09, 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61, 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:22.497Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000001","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:22.498Z"} +{"level":"debug","message":"Running base rollup for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T03:59:22.498Z"} +{"circuitName":"base-rollup","duration":1921.2780509591103,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T03:59:24.899Z"} +{"level":"debug","message":"Running base rollup for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T03:59:24.900Z"} +{"circuitName":"base-rollup","duration":1781.304684996605,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T03:59:27.079Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T03:59:27.080Z"} +{"circuitName":"root-rollup","duration":94.56742596626282,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-15T03:59:27.210Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T03:59:27.210Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:27.232Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:27.232Z"} +{"blockNumber":1,"duration":4767.198244988918,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-built","level":"debug","message":"Assembled block 1","namespace":"aztec:sequencer","publicProcessDuration":2.7542980313301086,"rollupCircuitsDuration":4746.829572021961,"timestamp":"2023-12-15T03:59:27.244Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Publishing extended contract data with block hash 57de0647772ef7ce67aef88bfe5215885d27c7918c3ca136c66f5de7d1f52429","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:27.246Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T03:59:27.247Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T03:59:27.272Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T03:59:27.298Z"} +{"level":"debug","message":"Successfully published new contract data for block 1","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:27.326Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:28.113Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:28.113Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-15T03:59:28.120Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-15T03:59:28.121Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-15T03:59:28.121Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-15T03:59:28.121Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:59:28.122Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:59:28.144Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T03:59:28.145Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-15T03:59:28.146Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:28.223Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:28.223Z"} +{"level":"debug","message":"Block 1 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:59:28.224Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:28.226Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:28.226Z"} +{"level":"debug","message":"Synched to block 1","namespace":"aztec:p2p","timestamp":"2023-12-15T03:59:28.260Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 4 root 0x033dd64d21ae6a218161988396dea39a578ebd0876230b5a50b6d9fe594902fb","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:59:28.274Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 384 root 0x124183fff44e3f32d100260e8dd469ddc74d7463349b2f8f679fc7896212dc9e","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:59:28.274Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 256 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:59:28.274Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 96 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:59:28.274Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 16 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:59:28.274Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 2 root 0x1286435510bed8e37738413f6eaf29460d908bc7adffae01dcdae22ed20a5215","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T03:59:28.274Z"} +{"blockNumber":1,"duration":150.17522299289703,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-15T03:59:28.374Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"blockNumber":1,"calldataGas":110940,"calldataSize":22596,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"rollup-published-to-l1","gasPrice":"1816098789","gasUsed":"434999","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-15T03:59:28.401Z","transactionHash":"0x7687b1a690412204dcf1d25e1d8b2422bbfd93071d396919bc596c5dbcf90d5f","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Successfully published block 1","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:28.401Z"} +{"level":"info","message":"Submitted rollup block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:28.401Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:29.084Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:29.084Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:29.086Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:29.087Z"} +{"level":"debug","message":"Forwarding 3 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T03:59:29.089Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T03:59:29.102Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:29.113Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:29.115Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:29.137Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:29.137Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:29.152Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:29.152Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:29.164Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:29.164Z"} +{"level":"debug","message":"Added note for contract 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x09b9ace7b2beea90afef773bbd468b98233a468d1ebe0f087b8a703ff861d500","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:59:29.177Z"} +{"level":"debug","message":"No new blocks to process, current block number: 10","namespace":"aztec:archiver","timestamp":"2023-12-15T03:59:29.179Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:59:29.179Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T03:59:29.183Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:29.194Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:29.195Z"} +{"level":"debug","message":"Added note for contract 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2f7fcae3f4b95db8ae047af7219fc01130ca5f432379b128f219320cb309000e","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:59:29.201Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:59:29.202Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T03:59:29.208Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:29.224Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T03:59:29.225Z"} +{"level":"debug","message":"Added note for contract 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2126b7cc255081f654a397c8b0abdcfc2220ff72f3cadf33781414fb7ced4d8a","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:59:29.231Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-15T03:59:29.232Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-15T03:59:29.401Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:30.153Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:30.153Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:30.170Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T03:59:30.170Z"} +{"level":"info","message":"Debug logs will be written to /home/jpag/Workground/aztec/aztec-packages/log/aztec-sandbox.debug.log","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:08.650Z"} +{"level":"info","message":"Setting up Aztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c), please stand by...","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:08.652Z"} +{"level":"debug","message":"Deploying contracts...","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:08.835Z"} +{"level":"debug","message":"Deployed Registry at 0x610178da211fef7d417bc0e6fed39f05609ad788","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:08.878Z"} +{"level":"debug","message":"Deployed Inbox at 0xb7f8bc63bbcad18155201308c8f3540b07f84f5e","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:08.908Z"} +{"level":"debug","message":"Deployed Outbox at 0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:08.930Z"} +{"level":"debug","message":"Deployed Rollup at 0x0dcd1bf9a1b36ce34237eeafef220932846bcd82","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:08.954Z"} +{"level":"debug","message":"Deployed contract deployment emitter at 0x0b306bf915c4d645ff596e518faf3f9669b97016","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:08.977Z"} +{"level":"debug","message":"Opening temporary databases","namespace":"aztec:node","timestamp":"2023-12-15T04:00:08.977Z"} +{"level":"debug","message":"Rollup contract address has changed, clearing databases","namespace":"aztec:node","timestamp":"2023-12-15T04:00:08.982Z"} +{"level":"debug","message":"Performing initial chain sync...","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:08.988Z"} +{"level":"debug","message":"No current L2 block number found in db, starting from 0","namespace":"aztec:world_state","timestamp":"2023-12-15T04:00:09.515Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:p2p","timestamp":"2023-12-15T04:00:09.515Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:world_state","timestamp":"2023-12-15T04:00:09.515Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:world_state","timestamp":"2023-12-15T04:00:09.516Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:world_state","timestamp":"2023-12-15T04:00:09.516Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:p2p","timestamp":"2023-12-15T04:00:09.516Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:p2p","timestamp":"2023-12-15T04:00:09.516Z"} +{"level":"debug","message":"Initialized sequencer with 1-32 txs per block.","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:09.520Z"} +{"level":"debug","message":"Sequencer started","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:09.521Z"} +{"level":"debug","message":"Started Aztec Node against chain 0x7a69 with contracts - \nRollup: 0x0dcd1bf9a1b36ce34237eeafef220932846bcd82\nRegistry: 0x610178da211fef7d417bc0e6fed39f05609ad788\nInbox: 0xb7f8bc63bbcad18155201308c8f3540b07f84f5e\nOutbox: 0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0\nContract Emitter: 0x0b306bf915c4d645ff596e518faf3f9669b97016","namespace":"aztec:node","timestamp":"2023-12-15T04:00:09.521Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-15T04:00:09.522Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-15T04:00:09.525Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-15T04:00:09.529Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-15T04:00:09.529Z"} +{"level":"debug","message":"Started","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T04:00:09.531Z"} +{"level":"info","message":"Started PXE connected to chain 31337 version 1","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.531Z"} +{"level":"info","message":"Setting up test accounts...","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:09.531Z"} +{"level":"info","message":"Registered account 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.691Z"} +{"level":"debug","message":"Registered account\n Address: 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n Partial Address: 0x284e333701fbf6b040cdd45feeaadc23505e90e4714af8471387b20fee13e541\n","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.691Z"} +{"level":"info","message":"Registered account 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.691Z"} +{"level":"debug","message":"Registered account\n Address: 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n Partial Address: 0x0bdef5c62eaf9c17bbf24fd1f2e469c6fe96ccea0513931287f758e0234d249b\n","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.692Z"} +{"level":"info","message":"Registered account 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.692Z"} +{"level":"debug","message":"Registered account\n Address: 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n Partial Address: 0x0c8ef4391be038949491a6f64cf0e3c66f0e8517d62be4abf3432cf6061ea2a9\n","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.692Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.823Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.823Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.824Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.827Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.829Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.831Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.835Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.836Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.836Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:09.837Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:09.838Z"} +{"level":"debug","message":"Executing external function 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:09.839Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:09.927Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:09.933Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:09.939Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:09.939Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:09.940Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:09.940Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:09.942Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:09.945Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:09.948Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:09.961Z"} +{"level":"debug","message":"Returning from call to 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:09.964Z"} +{"level":"debug","message":"Returning from call to 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:09.968Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.968Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.968Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.968Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.968Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.970Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:09.971Z"} +{"circuitName":"private-kernel-init","duration":480.6855509877205,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T04:00:10.456Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:00:10.456Z"} +{"circuitName":"private-kernel-init","duration":459.4395349621773,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T04:00:10.458Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:00:10.458Z"} +{"circuitName":"private-kernel-init","duration":446.3803629875183,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T04:00:10.460Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:00:10.460Z"} +{"circuitName":"private-kernel-ordering","duration":349.87538397312164,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T04:00:10.841Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:00:10.841Z"} +{"circuitName":"private-kernel-ordering","duration":342.2797030210495,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T04:00:10.842Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:00:10.842Z"} +{"circuitName":"private-kernel-ordering","duration":335.85061597824097,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T04:00:10.843Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:00:10.843Z"} +{"level":"info","message":"Simulating tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-15T04:00:10.845Z"} +{"level":"info","message":"Simulating tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-15T04:00:10.846Z"} +{"level":"info","message":"Simulating tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-15T04:00:10.846Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:00:10.868Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:00:10.869Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:00:10.873Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:00:10.873Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:00:10.933Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:00:10.933Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:00:11.199Z"} +{"level":"info","message":"Simulated tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe succeeds","namespace":"aztec:node","timestamp":"2023-12-15T04:00:11.200Z"} +{"level":"info","message":"Executed local simulation for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:11.200Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:00:11.202Z"} +{"level":"info","message":"Simulated tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61 succeeds","namespace":"aztec:node","timestamp":"2023-12-15T04:00:11.202Z"} +{"level":"info","message":"Executed local simulation for 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:11.202Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:00:11.204Z"} +{"level":"info","message":"Simulated tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 succeeds","namespace":"aztec:node","timestamp":"2023-12-15T04:00:11.204Z"} +{"level":"info","message":"Executed local simulation for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:11.204Z"} +{"level":"info","message":"Sending transaction 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:11.205Z"} +{"level":"info","message":"Sending transaction 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:11.205Z"} +{"level":"info","message":"Sending transaction 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:11.205Z"} +{"level":"info","message":"Received tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-15T04:00:11.205Z"} +{"level":"info","message":"Received tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-15T04:00:11.205Z"} +{"level":"info","message":"Received tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-15T04:00:11.205Z"} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-15T04:00:11.206Z","txHash":"0x1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-15T04:00:11.206Z","txHash":"0x2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-15T04:00:11.207Z","txHash":"0x1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"info","message":"Retrieved 3 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:11.854Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:00:11.862Z"} +{"level":"info","message":"Building block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:11.868Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:00:11.868Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:00:11.872Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:00:11.872Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:00:11.873Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:11.875Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:11.875Z"} +{"level":"debug","message":"Assembling block with txs 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09, 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61, 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:11.875Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000001","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:11.876Z"} +{"level":"debug","message":"Running base rollup for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:11.877Z"} +{"circuitName":"base-rollup","duration":1893.296380996704,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:00:14.276Z"} +{"level":"debug","message":"Running base rollup for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:14.277Z"} +{"circuitName":"base-rollup","duration":1740.4014979600906,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:00:16.430Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:16.431Z"} +{"circuitName":"root-rollup","duration":92.8005759716034,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-15T04:00:16.562Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:16.562Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:16.581Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:16.581Z"} +{"blockNumber":1,"duration":4744.044095039368,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-built","level":"debug","message":"Assembled block 1","namespace":"aztec:sequencer","publicProcessDuration":4.109127044677734,"rollupCircuitsDuration":4718.817337989807,"timestamp":"2023-12-15T04:00:16.595Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Publishing extended contract data with block hash 20c91c5064c5e714dfde588157108c6d1867d1a6e8c9be0f26c1593382bc1a32","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:16.598Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T04:00:16.598Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T04:00:16.625Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T04:00:16.653Z"} +{"level":"debug","message":"Successfully published new contract data for block 1","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:16.684Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:17.480Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:17.480Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:17.489Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:17.490Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:17.490Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:17.490Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:00:17.491Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:00:17.510Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:00:17.512Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:17.514Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:17.569Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:17.569Z"} +{"level":"debug","message":"Block 1 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:17.569Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:17.571Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:17.571Z"} +{"level":"debug","message":"Synched to block 1","namespace":"aztec:p2p","timestamp":"2023-12-15T04:00:17.601Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 4 root 0x033dd64d21ae6a218161988396dea39a578ebd0876230b5a50b6d9fe594902fb","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:17.616Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 384 root 0x124183fff44e3f32d100260e8dd469ddc74d7463349b2f8f679fc7896212dc9e","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:17.616Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 256 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:17.616Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 96 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:17.616Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 16 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:17.617Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 2 root 0x1286435510bed8e37738413f6eaf29460d908bc7adffae01dcdae22ed20a5215","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:17.617Z"} +{"blockNumber":1,"duration":158.251394033432,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-15T04:00:17.727Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"blockNumber":1,"calldataGas":110976,"calldataSize":22596,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"rollup-published-to-l1","gasPrice":"1587790844","gasUsed":"435035","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-15T04:00:17.757Z","transactionHash":"0x83e7b18f6c6e1c89fa8fc9b2f3e8f54feb6af594843072dc45d76ef002dfd775","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Successfully published block 1","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:17.758Z"} +{"level":"info","message":"Submitted rollup block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:17.758Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:18.433Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:18.434Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:18.435Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:18.435Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:18.438Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:18.438Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:18.461Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:18.461Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:18.473Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:18.473Z"} +{"level":"debug","message":"Forwarding 3 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T04:00:18.485Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T04:00:18.490Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:18.507Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:18.508Z"} +{"level":"debug","message":"Added note for contract 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x09b9ace7b2beea90afef773bbd468b98233a468d1ebe0f087b8a703ff861d500","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:18.526Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:18.528Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T04:00:18.531Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:18.542Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:18.544Z"} +{"level":"debug","message":"No new blocks to process, current block number: 20","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:18.551Z"} +{"level":"debug","message":"Added note for contract 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2f7fcae3f4b95db8ae047af7219fc01130ca5f432379b128f219320cb309000e","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:18.551Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:18.552Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T04:00:18.558Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:18.574Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:18.576Z"} +{"level":"debug","message":"Added note for contract 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2126b7cc255081f654a397c8b0abdcfc2220ff72f3cadf33781414fb7ced4d8a","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:18.581Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:18.582Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:18.759Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:19.461Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:19.461Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:19.476Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:19.476Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:19.488Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:19.489Z"} +{"level":"info","message":"Aztec Node JSON-RPC Server listening on port 8079","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:19.503Z"} +{"level":"info","message":"PXE JSON-RPC Server listening on port 8080","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:19.503Z"} +{"level":"info","message":"\n _\n /\\ | |\n / \\ ___| |_ ___ ___ \n / /\\ \\ |_ / __/ _ \\/ __|\n / ____ \\ / /| || __/ (__ \n/_/___ \\_\\/___|\\__\\___|\\___|\n\nhttps://github.com/AztecProtocol\n\nInitial Accounts:\n\n Address: 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c\n Partial Address: 0x284e333701fbf6b040cdd45feeaadc23505e90e4714af8471387b20fee13e541\n Private Key: 0x2153536ff6628eee01cf4024889ff977a18d9fa61d0e414422f7681cf085c281\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n\n Address: 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9\n Partial Address: 0x0bdef5c62eaf9c17bbf24fd1f2e469c6fe96ccea0513931287f758e0234d249b\n Private Key: 0x00aebd1b4be76efa44f5ee655c20bf9ea60f7ae44b9a7fd1fd9f189c7a0b0cda\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n\n Address: 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea\n Partial Address: 0x0c8ef4391be038949491a6f64cf0e3c66f0e8517d62be4abf3432cf6061ea2a9\n Private Key: 0x0f6addf0da06c33293df974a565b03d1ab096090d907d98055a8b7f4954e120c\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n\nAztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c) is now ready for use!","namespace":"aztec:sandbox","timestamp":"2023-12-15T04:00:19.505Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.501Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.501Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.502Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.508Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.508Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.509Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.510Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.510Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.511Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.689Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.689Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.690Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.737Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.738Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:30.743Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.743Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c86229790fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce21403f1a8525b0997bdc73f3a2fec7e3f62db1549e8138e73db59cf228b3b18a0dbf8eca96ebc529d5a7808cae93b85c3fef3640ee80b082b957d070fc5a0b9b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.748Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:30.749Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:30.751Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:30.758Z"} +{"level":"debug","message":"Executing external function 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:30.758Z"} +{"level":"debug","message":"Returning from call to 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:30.764Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:30.764Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:30.764Z"} +{"circuitName":"private-kernel-init","duration":142.3798959851265,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T04:00:30.909Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:00:30.909Z"} +{"circuitName":"private-kernel-ordering","duration":107.62798798084259,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T04:00:31.027Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:00:31.027Z"} +{"level":"info","message":"Simulating tx 06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508","namespace":"aztec:node","timestamp":"2023-12-15T04:00:31.027Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000002: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000002, 0x00000000000000000000000000000000000000000000000000000000657bcf53)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:00:31.039Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:31.040Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:31.041Z"} +{"level":"debug","message":"Processing tx 06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:00:31.158Z"} +{"level":"info","message":"Simulated tx 06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508 succeeds","namespace":"aztec:node","timestamp":"2023-12-15T04:00:31.158Z"} +{"level":"info","message":"Executed local simulation for 06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:31.159Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508303111c1b9c9777aff1f6e3f7e24f4e2b84465adaf69c29901a594abc5c949d20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c8622970000000000000000000000000000000000000000000000000edfd18bba39ae380cd8ca8dd9619c7ef233094b2ddec0eade18d877b3ff6d2700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:31.159Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508303111c1b9c9777aff1f6e3f7e24f4e2b84465adaf69c29901a594abc5c949d20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:31.174Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:31.175Z"} +{"level":"info","message":"Sending transaction 06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:31.175Z"} +{"level":"info","message":"Received tx 06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508","namespace":"aztec:node","timestamp":"2023-12-15T04:00:31.175Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-15T04:00:31.176Z","txHash":"0x06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:31.176Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:31.179Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:31.180Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:31.180Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:32.030Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000002: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000002, 0x00000000000000000000000000000000000000000000000000000000657bcf53)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:00:32.036Z"} +{"level":"info","message":"Building block 2 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:32.037Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:32.038Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:32.038Z"} +{"level":"debug","message":"Processing tx 06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:00:32.040Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:32.040Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:32.040Z"} +{"level":"debug","message":"Assembling block with txs 06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:32.040Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000002","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:32.041Z"} +{"level":"debug","message":"Running base rollup for 06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:32.041Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:32.186Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:32.186Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:32.187Z"} +{"circuitName":"base-rollup","duration":1723.0057569742203,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:00:34.154Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:34.155Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:34.157Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:34.158Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:34.160Z"} +{"circuitName":"base-rollup","duration":1643.6071059703827,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:00:36.147Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:36.148Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:36.150Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:36.150Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:36.151Z"} +{"circuitName":"root-rollup","duration":89.23267203569412,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-15T04:00:36.265Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:36.265Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:36.282Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:36.282Z"} +{"blockNumber":2,"duration":4260.067138016224,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 2","namespace":"aztec:sequencer","publicProcessDuration":0.8445450067520142,"rollupCircuitsDuration":4248.091265976429,"timestamp":"2023-12-15T04:00:36.289Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash 9d6ef960069796c2b72448ae68bd21d02faa09ce2082b9a0abfabf45259640c8","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:36.290Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T04:00:36.291Z"} +{"level":"debug","message":"Successfully published new contract data for block 2","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:36.308Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:37.155Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:37.155Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:37.156Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:37.167Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:37.167Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:37.173Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 2","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:37.174Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 2","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:00:37.174Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:37.175Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:37.275Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:37.275Z"} +{"level":"debug","message":"Block 2 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:37.276Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:37.276Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:37.277Z"} +{"level":"debug","message":"Synched to block 2","namespace":"aztec:p2p","timestamp":"2023-12-15T04:00:37.301Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 8 root 0x13b3598bd947b3690bb1ee73402e53b2f6822b47d68ac392e47a78fd31155415","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:37.330Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 640 root 0x06c4a98990b03f745cd78be6aa89f6e0c429a07553589608896cad22890742cf","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:37.330Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 512 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:37.330Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 160 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:37.330Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 32 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:37.330Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 3 root 0x304ac25f9261eb24d834a13010736b98eab33c4af4566857451a77ed3940c9ce","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:37.330Z"} +{"blockNumber":2,"duration":60.34730100631714,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-15T04:00:37.336Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"blockNumber":2,"calldataGas":94040,"calldataSize":21860,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1567511426","gasUsed":"370842","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-15T04:00:37.381Z","transactionHash":"0xcae255406ddb93c44464a75bb82d63b0e60f1e1d54cf51a0af95861ece3e7588","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 2","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:37.381Z"} +{"level":"info","message":"Submitted rollup block 2 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:37.381Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:38.150Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:38.150Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:38.150Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:38.150Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T04:00:38.152Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:38.153Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:38.154Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:38.155Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.160Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.160Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:38.161Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:38.161Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06e04485c9b37b3236f692d7f17ec969af0485d13a3fab57703c66461e1bd508',\n status: 'mined',\n error: '',\n blockHash: 'f7dca9ce24338ed897d9573dde90415ab4cf9fa4f13b23660f0d04bd80eb3a25',\n blockNumber: 2,\n contractAddress: '0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.185Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.188Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.189Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 2,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 2,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 2,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 2\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.189Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.192Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.192Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c8622970000000000000000000000000000000000000000000000000edfd18bba39ae380cd8ca8dd9619c7ef233094b2ddec0eade18d877b3ff6d2700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.192Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.198Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.198Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c8622970000000000000000000000000000000000000000000000000edfd18bba39ae380cd8ca8dd9619c7ef233094b2ddec0eade18d877b3ff6d2700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.199Z"} +{"level":"debug","message":"No new blocks to process, current block number: 22","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:38.200Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b937889ba10001002ed93d8201ff75b7c967364a1354e91c6b745a9bac11e58c47951b65feb4bf9d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000422ca1edb89610ae5af0871ef01bb82f98494729171ee02680c0b2a39c08129e60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001122ca1edb89610ae5af0871ef01bb82f98494729171ee02680c0b2a39c08129e600000000000000000000000000000000000000000000000000000000379cfa1a0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c86229700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c223b188dfe9cd673e9b92e307f597ce52c0aa2c84b31cce9158f77207bd91d2ed93d8201ff75b7c967364a1354e91c6b745a9bac11e58c47951b65feb4bf9d0000000106b256ca9f83394ecf122c6680d3c3267fefcf25a30a0fff35b58deb64d1eba8000000400000000000000000000000000000000000000000000000000000000000000027000000000000000000000000000000000000000000000000000000000000006a00000000000000000000000000000000000000000000000000000000000000eb00000000000000000000000000000000000000000000000000000000000000f5000000000000000000000000000000000000000000000000000000000000006c0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000c700000000000000000000000000000000000000000000000000000000000000f70000000000000000000000000000000000000000000000000000000000000055000000000000000000000000000000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000e9000000000000000000000000000000000000000000000000000000000000006600000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000ec000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000730000000000000000000000000000000000000000000000000000000000000092000000000000000000000000000000000000000000000000000000000000005700000000000000000000000000000000000000000000000000000000000000a100000000000000000000000000000000000000000000000000000000000000c600000000000000000000000000000000000000000000000000000000000000b8000000000000000000000000000000000000000000000000000000000000006800000000000000000000000000000000000000000000000000000000000000cb0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000b700000000000000000000000000000000000000000000000000000000000000c10000000000000000000000000000000000000000000000000000000000000054000000000000000000000000000000000000000000000000000000000000003700000000000000000000000000000000000000000000000000000000000000d6000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000db000000000000000000000000000000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000910000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000006f000000000000000000000000000000000000000000000000000000000000006b00000000000000000000000000000000000000000000000000000000000000150000000000000000000000000000000000000000000000000000000000000029000000000000000000000000000000000000000000000000000000000000005400000000000000000000000000000000000000000000000000000000000000c500000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000006600000000000000000000000000000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000c6000000000000000000000000000000000000000000000000000000000000007200000000000000000000000000000000000000000000000000000000000000e9000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000d5000000000000000000000000000000000000000000000000000000000000004900000000000000000000000000000000000000000000000000000000000000b700000000000000000000000000000000000000000000000000000000000000ce00000000000000000000000000000000000000000000000000000000000000c6000000000000000000000000000000000000000000000000000000000000007c0000000000000000000000000000000000000000000000000000000000000093'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.214Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:38.215Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:38.215Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:38.224Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:38.225Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:38.243Z"} +{"level":"debug","message":"Returning 1 notes for 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x2777464fe2efe81140b375ef09ccf63b7ee5b136897294e8a9ead5b585ba4a57:[0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a8,0x1570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257,0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:00:38.245Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:38.255Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:38.298Z"} +{"level":"debug","message":"Calling private function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:379cfa1a from 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:00:38.298Z"} +{"level":"debug","message":"Executing external function 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297:379cfa1a","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:38.301Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:38.305Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:38.306Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:38.309Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:38.310Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:38.311Z"} +{"level":"debug","message":"Returning from call to 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297:379cfa1a","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:38.317Z"} +{"level":"debug","message":"Returning from call to 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:38.438Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:38.438Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:38.438Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-15T04:00:38.482Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:38.483Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-15T04:00:38.493Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-15T04:00:38.493Z"} +{"circuitName":"private-kernel-init","duration":178.71265298128128,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T04:00:38.679Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:00:38.680Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-15T04:00:38.698Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-15T04:00:38.700Z"} +{"circuitName":"private-kernel-inner","duration":263.14076203107834,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T04:00:38.971Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:00:38.972Z"} +{"circuitName":"private-kernel-ordering","duration":109.11641895771027,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T04:00:39.091Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:00:39.091Z"} +{"level":"info","message":"Simulating tx 29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92","namespace":"aztec:node","timestamp":"2023-12-15T04:00:39.092Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000003: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000003, 0x00000000000000000000000000000000000000000000000000000000657bcf65)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:00:39.101Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:39.102Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:39.102Z"} +{"level":"debug","message":"Processing tx 29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:00:39.213Z"} +{"level":"info","message":"Simulated tx 29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92 succeeds","namespace":"aztec:node","timestamp":"2023-12-15T04:00:39.213Z"} +{"level":"info","message":"Executed local simulation for 29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:39.213Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be20014ef34a856678a7c01de95e8f6ff81492cdd5567deb7b9f064d992a9d283215a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000029b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92011215108310fe2fa0a8b92fa3775e0fb5ddf93a6d4f4a67da30ff7479475aa00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f068a1041490f7b884246af72c471a8749417d5d79d8f7f08a0ef1f36811eac7214290859e6678e4e8eb089950c39e2671074c289e8b7f456410aa43cc6e4bf143720ca80adf09ba427a631637cf9b925c8779f1901114a9ad0911d4173187f0ac286cd9b34b496ab24e08ac893fee8f317f035e7467d03a5eb24de1c40d799bc11aca239cdbcf43a4de61b22968bc1ee1e1b092dfdba90ac4666c8d9ba6171d5f91e656205ef73cca5c560bb784cc155f21e68ac3e10e914a46fca9b8ded236bad651fefcd3b4bef1394528edbe02d03302551ccfec5cb94c70b7744d9afa5d35de69370c5184cbeb7bde380c917abca3',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:39.214Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be20014ef34a856678a7c01de95e8f6ff81492cdd5567deb7b9f064d992a9d283215a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000029b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92011215108310fe2fa0a8b92fa3775e0fb5ddf93a6d4f4a67da30ff7479475aa00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f068a1041490f7b884246af72c471a8749417d5d79d8f7f08a0ef1f36811eac7214290859e6678e4e8eb089950c39e2671074c289e8b7f456410aa43cc6e4bf143720ca80adf09ba427a631637cf9b925c8779f1901114a9ad0911d4173187f0ac286cd9b34b496ab24e08ac893fee8f317f035e7467d03a5eb24de1c40d799bc11aca239cdbcf43a4de61b22968bc1ee1e1b092dfdba90ac4666c8d9ba6171d5f91e656205ef73cca5c560bb784cc155f21e68ac3e10e914a46fca9b8ded236bad651fefcd3b4bef1394528edbe02d03302551ccfec5cb94c70b7744d9afa5d35de69370c5184cbeb7bde380c917abca3',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:39.222Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:39.223Z"} +{"level":"info","message":"Sending transaction 29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:39.223Z"} +{"level":"info","message":"Received tx 29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92","namespace":"aztec:node","timestamp":"2023-12-15T04:00:39.223Z"} +{"encryptedLogCount":1,"encryptedLogSize":256,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10113,"timestamp":"2023-12-15T04:00:39.223Z","txHash":"0x29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:39.223Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:39.226Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:39.226Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:39.227Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:39.484Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000003: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000003, 0x00000000000000000000000000000000000000000000000000000000657bcf65)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:00:39.490Z"} +{"level":"info","message":"Building block 3 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:39.491Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:39.491Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:39.492Z"} +{"level":"debug","message":"Processing tx 29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:00:39.493Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:39.494Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:39.494Z"} +{"level":"debug","message":"Assembling block with txs 29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:39.494Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000003","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:39.494Z"} +{"level":"debug","message":"Running base rollup for 29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:39.495Z"} +{"circuitName":"base-rollup","duration":1668.964260995388,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:00:41.534Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:41.534Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:41.536Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:41.536Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:41.537Z"} +{"circuitName":"base-rollup","duration":1702.614560008049,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:00:43.579Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:43.579Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:43.581Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:43.581Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:43.582Z"} +{"circuitName":"root-rollup","duration":92.2522029876709,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-15T04:00:43.697Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:00:43.698Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:43.718Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:43.719Z"} +{"blockNumber":3,"duration":4237.263579964638,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-built","level":"debug","message":"Assembled block 3","namespace":"aztec:sequencer","publicProcessDuration":0.7878119945526123,"rollupCircuitsDuration":4226.371190965176,"timestamp":"2023-12-15T04:00:43.721Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash 05238c65c904065a8e74398ed6d765f7c581f6193f9092fb61234536787ac9f0","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:43.724Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T04:00:43.724Z"} +{"level":"debug","message":"Successfully published new contract data for block 3","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:43.744Z"} +{"blockNumber":3,"calldataGas":97596,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"rollup-published-to-l1","gasPrice":"1551884504","gasUsed":"380603","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-15T04:00:43.896Z","transactionHash":"0x44246cca5ea8a97eb17b718ca05ee0c003525d23aa6ca833a63a3e677077df75","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 3","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:43.896Z"} +{"level":"info","message":"Submitted rollup block 3 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:43.896Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:44.588Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:44.589Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:44.590Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:44.604Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:44.605Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:44.610Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 3","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:44.610Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 3","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:00:44.611Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:44.611Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:44.709Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:44.710Z"} +{"level":"debug","message":"Block 3 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:44.710Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:44.712Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:44.712Z"} +{"level":"debug","message":"Synched to block 3","namespace":"aztec:p2p","timestamp":"2023-12-15T04:00:44.739Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 12 root 0x13b3598bd947b3690bb1ee73402e53b2f6822b47d68ac392e47a78fd31155415","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:44.759Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 896 root 0x04a80001e789e9354037be2fdfa02d4a60b8b2834e431ded575abcede747a7f1","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:44.759Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 768 root 0x21f84fcdfa5529aabdbfcec851c881322be6b55572b3b3810521e9597b5ec751","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:44.759Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 224 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:44.759Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 48 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:44.759Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 4 root 0x02efe46dea8cb55ac0e748045b8ca005eaaf1e46441f190aa3a39f40e13a5d82","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:00:44.759Z"} +{"blockNumber":3,"duration":91.59204196929932,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-15T04:00:44.802Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:00:44.896Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:45.581Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:45.581Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:45.581Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:45.581Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T04:00:45.583Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:45.585Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T04:00:45.610Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:45.620Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:45.622Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:45.638Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:45.639Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:45.639Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:45.639Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92',\n status: 'mined',\n error: '',\n blockHash: '534aa5085f2a6a18a16008d912eeff1ff04f64199a97695f2719f65c59d9e178',\n blockNumber: 3,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:45.649Z"} +{"level":"debug","message":"No new blocks to process, current block number: 24","namespace":"aztec:archiver","timestamp":"2023-12-15T04:00:45.651Z"} +{"level":"debug","message":"Added note for contract 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297 at slot 0x2d2bf38578928178a0053c369926cae62dc58e54a5e92a5922f73c3094c148d0 with nullifier 0x1b600f0f068c120eca929834d578b44d1db56f9df83e4c4c1b35a107f7045e10","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:45.652Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:45.653Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:45.654Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:45.654Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 2,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 3,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 3,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 2\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:45.654Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:00:45.655Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.658Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.658Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:46.659Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:00:46.659Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '29b6ca1dc2e9771d9f9103a6bc140b81e70e563f1cccc1fda6463d45b22e1f92',\n status: 'mined',\n error: '',\n blockHash: '534aa5085f2a6a18a16008d912eeff1ff04f64199a97695f2719f65c59d9e178',\n blockNumber: 3,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.670Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.672Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.672Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 3,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 3,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 3,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 3\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.672Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.674Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.675Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c8622970000000000000000000000000000000000000000000000000edfd18bba39ae380cd8ca8dd9619c7ef233094b2ddec0eade18d877b3ff6d2700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.675Z"} +{"level":"debug","message":"JsonProxy:call viewTx [\n 'get_counter',\n [\n {\n type: 'AztecAddress',\n data: '0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9'\n }\n ],\n {\n type: 'Fr',\n data: '0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297'\n },\n null\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.681Z"} +{"level":"debug","message":"JsonProxy:call viewTx <- [\n 'get_counter',\n [\n AztecAddress {\n asBuffer: \n }\n ],\n Fr {\n asBuffer: \n },\n undefined\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.681Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:46.683Z"} +{"level":"debug","message":"Executing unconstrained simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:46.701Z"} +{"level":"debug","message":"Executing unconstrained function 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297:46725bdd","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T04:00:46.701Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.710Z"} +{"level":"debug","message":"Unconstrained simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:46.715Z"} +{"level":"debug","message":"JsonProxy:call viewTx -> { type: 'bigint', data: '0' }","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.716Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.720Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.721Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c8622970000000000000000000000000000000000000000000000000edfd18bba39ae380cd8ca8dd9619c7ef233094b2ddec0eade18d877b3ff6d2700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.721Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b937889ba100010028369411a0fd33f6c01a495032d732b8581a87a32bb5c21695c86ad3bfbfa6b20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008b81f61c0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c86229700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012ffbe01738ed372523650c702d09e08215603e34bea26d00514171a0e33fc80228369411a0fd33f6c01a495032d732b8581a87a32bb5c21695c86ad3bfbfa6b2000000011a36b845b88993902cd570a51661da9474257f48f22936979cbf9b2d70357d65000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003600000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000075000000000000000000000000000000000000000000000000000000000000005d000000000000000000000000000000000000000000000000000000000000003500000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000ab000000000000000000000000000000000000000000000000000000000000003d000000000000000000000000000000000000000000000000000000000000008d000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000ed0000000000000000000000000000000000000000000000000000000000000021000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000ab000000000000000000000000000000000000000000000000000000000000005f000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000c6000000000000000000000000000000000000000000000000000000000000009e000000000000000000000000000000000000000000000000000000000000007a000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000025000000000000000000000000000000000000000000000000000000000000002500000000000000000000000000000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000ab00000000000000000000000000000000000000000000000000000000000000330000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000006200000000000000000000000000000000000000000000000000000000000000d7000000000000000000000000000000000000000000000000000000000000006e00000000000000000000000000000000000000000000000000000000000000b500000000000000000000000000000000000000000000000000000000000000f5000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000d300000000000000000000000000000000000000000000000000000000000000d100000000000000000000000000000000000000000000000000000000000000de0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008a000000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000d9000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000049000000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000e900000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000a8000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000b5000000000000000000000000000000000000000000000000000000000000008100000000000000000000000000000000000000000000000000000000000000e200000000000000000000000000000000000000000000000000000000000000d1000000000000000000000000000000000000000000000000000000000000007c000000000000000000000000000000000000000000000000000000000000002900000000000000000000000000000000000000000000000000000000000000a80000000000000000000000000000000000000000000000000000000000000086000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000057000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000e60000000000000000000000000000000000000000000000000000000000000047000000000000000000000000000000000000000000000000000000000000008e'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.740Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:00:46.741Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:46.741Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:00:46.742Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:46.742Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.760Z"} +{"level":"debug","message":"Returning 1 notes for 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x2777464fe2efe81140b375ef09ccf63b7ee5b136897294e8a9ead5b585ba4a57:[0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a8,0x1570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257,0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:00:46.760Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.770Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.796Z"} +{"level":"debug","message":"Calling private function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:8b81f61c from 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:00:46.796Z"} +{"level":"debug","message":"Executing external function 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297:8b81f61c","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:46.802Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.806Z"} +{"level":"debug","message":"Returning 1 notes for 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297 at 0x2d2bf38578928178a0053c369926cae62dc58e54a5e92a5922f73c3094c148d0: 0x04979fcaa5a6e65e9e878d8cb07549ff658c27a2eb3b18babe92a0801906a271:[0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000000000000000000000000004]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:00:46.807Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.823Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.824Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.828Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.830Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.831Z"} +{"level":"debug","message":"Returning 1 notes for 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297 at 0x2d2bf38578928178a0053c369926cae62dc58e54a5e92a5922f73c3094c148d0: 0x0000000000000000000000000000000000000000000000000000000000000000:[0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000000000000000000000000004]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:00:46.832Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.846Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.848Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.852Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.855Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.855Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.857Z"} +{"level":"debug","message":"Oracle callback packArguments","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.859Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.861Z"} +{"level":"debug","message":"Calling private function 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297:6fafd999 from 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:00:46.861Z"} +{"level":"debug","message":"Executing external function 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297:6fafd999","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:00:46.879Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.885Z"} +{"level":"debug","message":"Returning 0 notes for 0x0b8d562a769c66259cbf751ea1e935df69126f70bc60c1c7b9e1ece93c862297 at 0x19a4e498dc2a41671cbae45c36b467cd290fd8cd041b43bce33b2b991ea02b0a: ","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:00:46.885Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.887Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:00:46.888Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.664Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.664Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.665Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.666Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.666Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.666Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.667Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.667Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.667Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.852Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.852Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.852Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.899Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.900Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:04:58.905Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.906Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d90fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce21403f1a8525b0997bdc73f3a2fec7e3f62db1549e8138e73db59cf228b3b18a1ba48d920fcee41879a1a452919053ac5f31c6cecf4faa97fb78859166e8ad5b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.911Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:58.911Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:04:58.915Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:04:58.921Z"} +{"level":"debug","message":"Executing external function 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:04:58.922Z"} +{"level":"debug","message":"Returning from call to 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:04:58.928Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:04:58.928Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:04:58.928Z"} +{"circuitName":"private-kernel-init","duration":153.64928597211838,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T04:04:59.086Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:04:59.086Z"} +{"circuitName":"private-kernel-ordering","duration":111.66508203744888,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T04:04:59.212Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:04:59.212Z"} +{"level":"info","message":"Simulating tx 03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2","namespace":"aztec:node","timestamp":"2023-12-15T04:04:59.212Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000004: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000004, 0x00000000000000000000000000000000000000000000000000000000657bcf6c)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:04:59.226Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:04:59.228Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:04:59.228Z"} +{"level":"debug","message":"Processing tx 03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:04:59.355Z"} +{"level":"info","message":"Simulated tx 03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2 succeeds","namespace":"aztec:node","timestamp":"2023-12-15T04:04:59.356Z"} +{"level":"info","message":"Executed local simulation for 03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:04:59.356Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d21e2b60f83bcd5b57d660fb452fedde0fff553a370f7ba6cad678c962d8489c6d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d00000000000000000000000000000000000000000000000003d7321e4f638881be8834458429acb6af1348fca130248dedb185d9f4f6be7800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:59.357Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d21e2b60f83bcd5b57d660fb452fedde0fff553a370f7ba6cad678c962d8489c6d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:59.373Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:59.374Z"} +{"level":"info","message":"Sending transaction 03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:04:59.374Z"} +{"level":"info","message":"Received tx 03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2","namespace":"aztec:node","timestamp":"2023-12-15T04:04:59.374Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-15T04:04:59.375Z","txHash":"0x03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:59.375Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:59.378Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:59.378Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:04:59.379Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:00.216Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000004: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000004, 0x00000000000000000000000000000000000000000000000000000000657bcf6c)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:05:00.223Z"} +{"level":"info","message":"Building block 4 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:00.224Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:00.225Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:00.225Z"} +{"level":"debug","message":"Processing tx 03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:05:00.228Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:00.229Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:00.229Z"} +{"level":"debug","message":"Assembling block with txs 03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:00.230Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000004","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:00.230Z"} +{"level":"debug","message":"Running base rollup for 03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:05:00.230Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:00.383Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:00.383Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:00.384Z"} +{"circuitName":"base-rollup","duration":2122.3666219711304,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:05:02.765Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:05:02.766Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:02.768Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:02.768Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:02.770Z"} +{"circuitName":"base-rollup","duration":1841.9563809633255,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:05:05.086Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:05:05.086Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:05.089Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:05.089Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:05.090Z"} +{"circuitName":"root-rollup","duration":90.37387996912003,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-15T04:05:05.206Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:05:05.206Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:05.223Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:05.223Z"} +{"blockNumber":4,"duration":5016.002465963364,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 4","namespace":"aztec:sequencer","publicProcessDuration":1.3962929844856262,"rollupCircuitsDuration":5000.375814974308,"timestamp":"2023-12-15T04:05:05.230Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash 9b2af134c67837ee8ed3230dc272b57b4a0a01173348ee36d0bbb5de8ab9b7b7","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:05.233Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T04:05:05.233Z"} +{"level":"debug","message":"Successfully published new contract data for block 4","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:05.250Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:06.094Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:06.094Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:06.096Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:06.104Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:06.104Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-15T04:05:06.108Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 4","namespace":"aztec:archiver","timestamp":"2023-12-15T04:05:06.109Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 4","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:05:06.109Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-15T04:05:06.109Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:06.232Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:06.232Z"} +{"level":"debug","message":"Block 4 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:06.232Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:06.233Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:06.233Z"} +{"level":"debug","message":"Synched to block 4","namespace":"aztec:p2p","timestamp":"2023-12-15T04:05:06.256Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 16 root 0x1895a5469aa228cfbcbfb4db7a4a5ab055034b98c46aed54c97f3dcb241794eb","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:06.292Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1152 root 0x2168a3ba2df03f44ac5f0e2bff768ecbc82db1dd5290afdef5a95c66ea09083d","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:06.292Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1024 root 0x21f84fcdfa5529aabdbfcec851c881322be6b55572b3b3810521e9597b5ec751","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:06.292Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 288 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:06.292Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 64 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:06.292Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 5 root 0x1ee20acb5861c8cb06cbd852ca5b55efa6710a937e2ba66cbb9a938029685696","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:06.293Z"} +{"blockNumber":4,"duration":68.89988398551941,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-15T04:05:06.301Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"blockNumber":4,"calldataGas":94052,"calldataSize":21860,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1539878743","gasUsed":"370854","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-15T04:05:06.322Z","transactionHash":"0x563590541bd6435c0e5d79b7588be700a71b3e68ef0b1a6c78fa1fe96f0f221a","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 4","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:06.322Z"} +{"level":"info","message":"Submitted rollup block 4 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:06.322Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:07.090Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:07.090Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:07.091Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:07.091Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T04:05:07.092Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:05:07.094Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:05:07.095Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:05:07.096Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.099Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.099Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:07.100Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:07.100Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '03d0aaef6236d81c33c17c73bcb003fa9437bbe752c295b2f21cb35d975cd5d2',\n status: 'mined',\n error: '',\n blockHash: 'a9a514f8bb9c56a53084b2e02923c818f701a360ed513439c98b4f08fabff73f',\n blockNumber: 4,\n contractAddress: '0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.113Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.117Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.117Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 4,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 4,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 4,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 4\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.117Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.121Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.121Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d00000000000000000000000000000000000000000000000003d7321e4f638881be8834458429acb6af1348fca130248dedb185d9f4f6be7800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.121Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.126Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.126Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d00000000000000000000000000000000000000000000000003d7321e4f638881be8834458429acb6af1348fca130248dedb185d9f4f6be7800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.127Z"} +{"level":"debug","message":"No new blocks to process, current block number: 26","namespace":"aztec:archiver","timestamp":"2023-12-15T04:05:07.133Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b937889ba100010016e214bf75179cd9b269a0187d1f2960c223dacdd90b1e939744d20b8cf1f7160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000422ca1edb89610ae5af0871ef01bb82f98494729171ee02680c0b2a39c08129e60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001122ca1edb89610ae5af0871ef01bb82f98494729171ee02680c0b2a39c08129e600000000000000000000000000000000000000000000000000000000379cfa1a208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000102fb021e3c076bc62e0ce0e6d1fdd6759da289cfc7ae3281ce900e50bf2b6a8516e214bf75179cd9b269a0187d1f2960c223dacdd90b1e939744d20b8cf1f71600000001180fff6c479aefc25718823d51d23590dc19d420f1d49d4ac7d6e1e1f94cdb5f00000040000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000000008e00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001300000000000000000000000000000000000000000000000000000000000000e900000000000000000000000000000000000000000000000000000000000000ea00000000000000000000000000000000000000000000000000000000000000f500000000000000000000000000000000000000000000000000000000000000d500000000000000000000000000000000000000000000000000000000000000cf00000000000000000000000000000000000000000000000000000000000000fc000000000000000000000000000000000000000000000000000000000000005300000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000005900000000000000000000000000000000000000000000000000000000000000350000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000cf000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000db000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000007200000000000000000000000000000000000000000000000000000000000000dc0000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000009900000000000000000000000000000000000000000000000000000000000000df000000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006600000000000000000000000000000000000000000000000000000000000000ce00000000000000000000000000000000000000000000000000000000000000a9000000000000000000000000000000000000000000000000000000000000009300000000000000000000000000000000000000000000000000000000000000ec000000000000000000000000000000000000000000000000000000000000004300000000000000000000000000000000000000000000000000000000000000e500000000000000000000000000000000000000000000000000000000000000db0000000000000000000000000000000000000000000000000000000000000025000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000092000000000000000000000000000000000000000000000000000000000000007e0000000000000000000000000000000000000000000000000000000000000089000000000000000000000000000000000000000000000000000000000000003b00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000009900000000000000000000000000000000000000000000000000000000000000df0000000000000000000000000000000000000000000000000000000000000077000000000000000000000000000000000000000000000000000000000000009500000000000000000000000000000000000000000000000000000000000000c600000000000000000000000000000000000000000000000000000000000000c20000000000000000000000000000000000000000000000000000000000000035000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000003d00000000000000000000000000000000000000000000000000000000000000c40000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000002f00000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000c3000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000cf'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.140Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:07.141Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:05:07.141Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:05:07.142Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:05:07.142Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:07.160Z"} +{"level":"debug","message":"Returning 1 notes for 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x2777464fe2efe81140b375ef09ccf63b7ee5b136897294e8a9ead5b585ba4a57:[0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a8,0x1570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257,0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:05:07.161Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:07.172Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:07.198Z"} +{"level":"debug","message":"Calling private function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:379cfa1a from 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:05:07.199Z"} +{"level":"debug","message":"Executing external function 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d:379cfa1a","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:05:07.202Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:07.209Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:07.211Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:07.217Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:07.218Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:07.219Z"} +{"level":"debug","message":"Returning from call to 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d:379cfa1a","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:05:07.225Z"} +{"level":"debug","message":"Returning from call to 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:05:07.329Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:05:07.329Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:05:07.329Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-15T04:05:07.339Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:07.339Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-15T04:05:07.340Z"} +{"circuitName":"private-kernel-init","duration":180.3274689912796,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T04:05:07.522Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:05:07.523Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-15T04:05:07.541Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-15T04:05:07.543Z"} +{"circuitName":"private-kernel-inner","duration":223.14846402406693,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T04:05:07.775Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:05:07.775Z"} +{"circuitName":"private-kernel-ordering","duration":107.79347199201584,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T04:05:07.894Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:05:07.894Z"} +{"level":"info","message":"Simulating tx 21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74","namespace":"aztec:node","timestamp":"2023-12-15T04:05:07.894Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000005: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000005, 0x00000000000000000000000000000000000000000000000000000000657bd072)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:05:07.905Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:07.906Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:07.906Z"} +{"level":"debug","message":"Processing tx 21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:05:08.016Z"} +{"level":"info","message":"Simulated tx 21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74 succeeds","namespace":"aztec:node","timestamp":"2023-12-15T04:05:08.016Z"} +{"level":"info","message":"Executed local simulation for 21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:05:08.016Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be20000c4baca8ab336c3e6e625a5d4d6e5e140a685474180039f449f93ee1f15ff6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000021ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74229e1e5266cc3b9c8ab3b170764697a2516c2e089bfb7ad20d8aa9f3243e968c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f0d35ae7bfaa2f5bd26d443cca286619b693efe47df2796b7a21211cc5485cdf36b5dde3fb5403d9a3c3d4200ac40cdef166b22d727b3158f6794efc6a2e89d319629ff30aefff8ac0cbdba9d3a06e16036727b871ebcd7726bb2adb8e56002689b0dad6082447346796f96b77c8022f35b6bbb46f90a6e515de88a3ed1d4ccea7f222593d40495174da728680eeaf19835e1ec6357f57c1801c8489d97d66c9e9b040c77ba185f2078275b439c4c0b8212a0dfb86cec8cb7e48fbc2175d5d5105b4b13ecef83ef52dbbf66fcd6b0513d223ad2fb203b349f47dcea48befb7bfe8d5fc7698442e431edcdd94e7d321d3f1',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:08.017Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be20000c4baca8ab336c3e6e625a5d4d6e5e140a685474180039f449f93ee1f15ff6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000021ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74229e1e5266cc3b9c8ab3b170764697a2516c2e089bfb7ad20d8aa9f3243e968c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f0d35ae7bfaa2f5bd26d443cca286619b693efe47df2796b7a21211cc5485cdf36b5dde3fb5403d9a3c3d4200ac40cdef166b22d727b3158f6794efc6a2e89d319629ff30aefff8ac0cbdba9d3a06e16036727b871ebcd7726bb2adb8e56002689b0dad6082447346796f96b77c8022f35b6bbb46f90a6e515de88a3ed1d4ccea7f222593d40495174da728680eeaf19835e1ec6357f57c1801c8489d97d66c9e9b040c77ba185f2078275b439c4c0b8212a0dfb86cec8cb7e48fbc2175d5d5105b4b13ecef83ef52dbbf66fcd6b0513d223ad2fb203b349f47dcea48befb7bfe8d5fc7698442e431edcdd94e7d321d3f1',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:08.024Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:08.024Z"} +{"level":"info","message":"Sending transaction 21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:05:08.024Z"} +{"level":"info","message":"Received tx 21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74","namespace":"aztec:node","timestamp":"2023-12-15T04:05:08.025Z"} +{"encryptedLogCount":1,"encryptedLogSize":256,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10113,"timestamp":"2023-12-15T04:05:08.025Z","txHash":"0x21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:08.025Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:08.027Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:08.027Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:08.028Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:08.340Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000005: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000005, 0x00000000000000000000000000000000000000000000000000000000657bd072)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:05:08.346Z"} +{"level":"info","message":"Building block 5 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:08.347Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:08.348Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:08.348Z"} +{"level":"debug","message":"Processing tx 21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:05:08.350Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:08.350Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:08.351Z"} +{"level":"debug","message":"Assembling block with txs 21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:08.351Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000005","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:08.351Z"} +{"level":"debug","message":"Running base rollup for 21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:05:08.351Z"} +{"circuitName":"base-rollup","duration":1750.5548219680786,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:05:10.462Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:05:10.463Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:10.464Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:10.465Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:10.466Z"} +{"circuitName":"base-rollup","duration":1609.687743961811,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:05:12.403Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:05:12.403Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:12.405Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:12.405Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:12.407Z"} +{"circuitName":"root-rollup","duration":129.36521703004837,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-15T04:05:12.567Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:05:12.567Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:12.597Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:12.597Z"} +{"blockNumber":5,"duration":4260.122209966183,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-built","level":"debug","message":"Assembled block 5","namespace":"aztec:sequencer","publicProcessDuration":0.8431859612464905,"rollupCircuitsDuration":4248.599358022213,"timestamp":"2023-12-15T04:05:12.600Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash 9310dbbc72fccecbb176ea8b31723c8a4f71dc99470b27818bec9375d0d2f83b","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:12.602Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T04:05:12.603Z"} +{"level":"debug","message":"Successfully published new contract data for block 5","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:12.629Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:13.411Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:13.411Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:13.412Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:13.425Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:13.425Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-15T04:05:13.429Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 5","namespace":"aztec:archiver","timestamp":"2023-12-15T04:05:13.429Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 5","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:05:13.430Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-15T04:05:13.430Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:13.477Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:13.477Z"} +{"level":"debug","message":"Synched to block 5","namespace":"aztec:p2p","timestamp":"2023-12-15T04:05:13.491Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:13.492Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:13.493Z"} +{"level":"debug","message":"Block 5 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:13.493Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 20 root 0x1895a5469aa228cfbcbfb4db7a4a5ab055034b98c46aed54c97f3dcb241794eb","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:13.506Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1408 root 0x0f10296cde13c6c647fce2676929bf99ffa8f47f37751fbe56ef71cae94c245b","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:13.506Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1280 root 0x2c6ee8670a59a3bac5260a3f8dce3b063355b16b7d81f055310a5171294ef9eb","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:13.507Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 352 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:13.507Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 80 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:13.507Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 6 root 0x10fdb2edeb468fc2dd7a79837fcd647962485189b8eaf1b73758154b869125cb","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:05:13.507Z"} +{"blockNumber":5,"duration":46.856626987457275,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-15T04:05:13.540Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":5,"calldataGas":97608,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"rollup-published-to-l1","gasPrice":"1530647984","gasUsed":"380615","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-15T04:05:13.741Z","transactionHash":"0x1148a233f813ebda3d60b7a8a82ce4e270cd0ba0d020ced92b77ce85655f4ad3","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 5","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:13.741Z"} +{"level":"info","message":"Submitted rollup block 5 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:13.741Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:14.404Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:14.404Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:14.405Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:14.405Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T04:05:14.407Z"} +{"level":"debug","message":"Synched block 5","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:05:14.408Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T04:05:14.430Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:14.441Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:14.442Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:14.470Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:14.470Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:14.471Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:14.471Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74',\n status: 'mined',\n error: '',\n blockHash: '149ad2eeb7381038daadf2ec20b33cd88c134e37b647b1707d9632781b806f29',\n blockNumber: 5,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:14.491Z"} +{"level":"debug","message":"No new blocks to process, current block number: 28","namespace":"aztec:archiver","timestamp":"2023-12-15T04:05:14.493Z"} +{"level":"debug","message":"Added note for contract 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d at slot 0x2d2bf38578928178a0053c369926cae62dc58e54a5e92a5922f73c3094c148d0 with nullifier 0x108b115fe60609cc25e25afbc6545d9ec07d52c75da0ed05e5396dd30ba7cbca","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:05:14.494Z"} +{"level":"debug","message":"Synched block 5","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:05:14.495Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:14.497Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:14.497Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 4,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 5,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 5,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 4\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:14.497Z"} +{"level":"debug","message":"Synched block 5","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:05:14.497Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:05:14.742Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.500Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.501Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:15.502Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:05:15.502Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '21ec3866b329eccba7f448fa84bdc3fc7370104b823e4976d35a376a8ecaef74',\n status: 'mined',\n error: '',\n blockHash: '149ad2eeb7381038daadf2ec20b33cd88c134e37b647b1707d9632781b806f29',\n blockNumber: 5,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.513Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.515Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.516Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 5,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 5,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 5,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 5\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.516Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.518Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.518Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d00000000000000000000000000000000000000000000000003d7321e4f638881be8834458429acb6af1348fca130248dedb185d9f4f6be7800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.519Z"} +{"level":"debug","message":"JsonProxy:call viewTx [\n 'get_counter',\n [\n {\n type: 'AztecAddress',\n data: '0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9'\n }\n ],\n {\n type: 'Fr',\n data: '0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d'\n },\n null\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.522Z"} +{"level":"debug","message":"JsonProxy:call viewTx <- [\n 'get_counter',\n [\n AztecAddress {\n asBuffer: \n }\n ],\n Fr {\n asBuffer: \n },\n undefined\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.523Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:05:15.524Z"} +{"level":"debug","message":"Executing unconstrained simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:05:15.532Z"} +{"level":"debug","message":"Executing unconstrained function 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d:46725bdd","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-15T04:05:15.533Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.541Z"} +{"level":"debug","message":"Unconstrained simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:05:15.546Z"} +{"level":"debug","message":"JsonProxy:call viewTx -> { type: 'bigint', data: '0' }","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.547Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.551Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.551Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d00000000000000000000000000000000000000000000000003d7321e4f638881be8834458429acb6af1348fca130248dedb185d9f4f6be7800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.551Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b937889ba1000100303a936d07bddca6aaada36e857104a4f798d99e70fe4b5a3fb7156026c6e7410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008b81f61c208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012ea8bf925ceda8bbed2c7d67eee900aabc654f7f862eed13aa430810803b4039303a936d07bddca6aaada36e857104a4f798d99e70fe4b5a3fb7156026c6e741000000012f29f51269045c842c3237a86a87832c1fb3f47ff22dec084a919c07bbfff7f3000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000000dd000000000000000000000000000000000000000000000000000000000000006900000000000000000000000000000000000000000000000000000000000000a5000000000000000000000000000000000000000000000000000000000000008100000000000000000000000000000000000000000000000000000000000000f1000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000ca00000000000000000000000000000000000000000000000000000000000000480000000000000000000000000000000000000000000000000000000000000033000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007e00000000000000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000000000000000000000f400000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000004500000000000000000000000000000000000000000000000000000000000000310000000000000000000000000000000000000000000000000000000000000049000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000a300000000000000000000000000000000000000000000000000000000000000cf00000000000000000000000000000000000000000000000000000000000000c2000000000000000000000000000000000000000000000000000000000000002900000000000000000000000000000000000000000000000000000000000000bd000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000b100000000000000000000000000000000000000000000000000000000000000250000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000009e00000000000000000000000000000000000000000000000000000000000000e600000000000000000000000000000000000000000000000000000000000000d300000000000000000000000000000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000bf00000000000000000000000000000000000000000000000000000000000000d7000000000000000000000000000000000000000000000000000000000000009d00000000000000000000000000000000000000000000000000000000000000ae00000000000000000000000000000000000000000000000000000000000000b7000000000000000000000000000000000000000000000000000000000000003d00000000000000000000000000000000000000000000000000000000000000f100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000004900000000000000000000000000000000000000000000000000000000000000ea000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000a100000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000b8000000000000000000000000000000000000000000000000000000000000005300000000000000000000000000000000000000000000000000000000000000570000000000000000000000000000000000000000000000000000000000000017000000000000000000000000000000000000000000000000000000000000002100000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000007b00000000000000000000000000000000000000000000000000000000000000cb'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.562Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:05:15.562Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:05:15.563Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:05:15.563Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:05:15.564Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.582Z"} +{"level":"debug","message":"Returning 1 notes for 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x2777464fe2efe81140b375ef09ccf63b7ee5b136897294e8a9ead5b585ba4a57:[0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a8,0x1570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257,0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:05:15.583Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.593Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.619Z"} +{"level":"debug","message":"Calling private function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:8b81f61c from 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:05:15.619Z"} +{"level":"debug","message":"Executing external function 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d:8b81f61c","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:05:15.631Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.637Z"} +{"level":"debug","message":"Returning 1 notes for 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d at 0x2d2bf38578928178a0053c369926cae62dc58e54a5e92a5922f73c3094c148d0: 0x2efb8da4b0f30031ff5a19d7c2ba257f6801a93a67ce07b15f47247ce3735743:[0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000000000000000000000000004]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:05:15.638Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.654Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.656Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.659Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.662Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.663Z"} +{"level":"debug","message":"Returning 1 notes for 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d at 0x2d2bf38578928178a0053c369926cae62dc58e54a5e92a5922f73c3094c148d0: 0x0000000000000000000000000000000000000000000000000000000000000000:[0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000000000000000000000000004]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:05:15.663Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.678Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.680Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.684Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.689Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.690Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.691Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.692Z"} +{"level":"debug","message":"Calling private function 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d:8b81f61c from 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:05:15.692Z"} +{"level":"debug","message":"Executing external function 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d:8b81f61c","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:05:15.699Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.705Z"} +{"level":"debug","message":"Returning 0 notes for 0x208cad9aae11d70f9d3ce7726ce1c6c00bd64b0f4c758a6d3ed3946b51a8125d at 0x00f51414e882228553fd11151d0776329939f4c51cae4e6d16450cc516741af7: ","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:05:15.705Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.707Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:05:15.707Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.666Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.667Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.667Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.669Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.669Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.669Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.670Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.670Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.670Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.852Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.853Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.853Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.902Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.903Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:10:18.908Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.908Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab90fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce22c92f239bcdc5ff059a8bcb47d621595af4baa8180106dbed532224886cb6850fb612a5e5231bb375e12dabf58d70bebcb3960963e9e9d0e28f5ce8c058c9c800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.913Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:18.914Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:10:18.916Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:10:18.922Z"} +{"level":"debug","message":"Executing external function 0x08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:10:18.923Z"} +{"level":"debug","message":"Returning from call to 0x08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:10:18.931Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:10:18.931Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:10:18.931Z"} +{"circuitName":"private-kernel-init","duration":136.55589997768402,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T04:10:19.071Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:10:19.071Z"} +{"circuitName":"private-kernel-ordering","duration":107.94118398427963,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T04:10:19.190Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:10:19.190Z"} +{"level":"info","message":"Simulating tx 06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902","namespace":"aztec:node","timestamp":"2023-12-15T04:10:19.191Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000006: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000006, 0x00000000000000000000000000000000000000000000000000000000657bd079)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:10:19.202Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:19.204Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:19.204Z"} +{"level":"debug","message":"Processing tx 06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:10:19.328Z"} +{"level":"info","message":"Simulated tx 06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902 succeeds","namespace":"aztec:node","timestamp":"2023-12-15T04:10:19.329Z"} +{"level":"info","message":"Executed local simulation for 06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:10:19.329Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd290207fcf71e47e648bd73eb67a8af25b14e03ecca4dd6705978dade14026a2c00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab000000000000000000000000000000000000000000000000219408bf32b81e3bea4b48e4baaba4fb9b6ddc016958f61f4c3db3a29d4cd29f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:19.330Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd290207fcf71e47e648bd73eb67a8af25b14e03ecca4dd6705978dade14026a2c00080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:19.345Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:19.347Z"} +{"level":"info","message":"Sending transaction 06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:10:19.347Z"} +{"level":"info","message":"Received tx 06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902","namespace":"aztec:node","timestamp":"2023-12-15T04:10:19.347Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-15T04:10:19.348Z","txHash":"0x06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:19.348Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:19.351Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:19.351Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:19.352Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:10:19.837Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000006: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000006, 0x00000000000000000000000000000000000000000000000000000000657bd079)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:10:19.842Z"} +{"level":"info","message":"Building block 6 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:10:19.843Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:19.844Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:19.844Z"} +{"level":"debug","message":"Processing tx 06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:10:19.847Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:10:19.848Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:10:19.848Z"} +{"level":"debug","message":"Assembling block with txs 06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:10:19.848Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000006","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:10:19.849Z"} +{"level":"debug","message":"Running base rollup for 06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:10:19.849Z"} +{"circuitName":"base-rollup","duration":1784.4762780070305,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:10:22.021Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:10:22.021Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:22.024Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:22.024Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:22.026Z"} +{"circuitName":"base-rollup","duration":1696.798016011715,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:10:24.076Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:10:24.077Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:24.079Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:24.079Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:24.080Z"} +{"circuitName":"root-rollup","duration":87.8982310295105,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-15T04:10:24.194Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:10:24.194Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:24.211Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:24.211Z"} +{"blockNumber":6,"duration":4381.9757860302925,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 6","namespace":"aztec:sequencer","publicProcessDuration":1.3269420266151428,"rollupCircuitsDuration":4368.580484032631,"timestamp":"2023-12-15T04:10:24.218Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash b4c215eda5343dfc8562400ee0a4112107e3fbd54ea562ff92ad89b061b7a030","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:10:24.219Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T04:10:24.219Z"} +{"level":"debug","message":"Successfully published new contract data for block 6","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:10:24.234Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:25.085Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:25.085Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:25.086Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:25.093Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:25.093Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-15T04:10:25.097Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 6","namespace":"aztec:archiver","timestamp":"2023-12-15T04:10:25.097Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 6","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:10:25.098Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-15T04:10:25.098Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:25.199Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:25.200Z"} +{"level":"debug","message":"Synched to block 6","namespace":"aztec:p2p","timestamp":"2023-12-15T04:10:25.218Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:25.219Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:25.219Z"} +{"level":"debug","message":"Block 6 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:10:25.219Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 24 root 0x05ac62eea1d4a0847ff8c41758935b54be592d78a98ca69ff2b43e29c5c03481","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:10:25.239Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1664 root 0x2eb5601ceb8398033c2edae8801f6435d47fce9160ad8072b83c343fb1a0037c","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:10:25.239Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1536 root 0x2c6ee8670a59a3bac5260a3f8dce3b063355b16b7d81f055310a5171294ef9eb","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:10:25.239Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 416 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:10:25.239Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 96 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:10:25.239Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 7 root 0x300ea4bd0d3521e38f4a44cd357599235e9b8129e58a7eb473cfaedd00d82b61","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:10:25.239Z"} +{"blockNumber":6,"duration":27.153296053409576,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-15T04:10:25.246Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"blockNumber":6,"calldataGas":94052,"calldataSize":21860,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1523556229","gasUsed":"370854","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-15T04:10:25.302Z","transactionHash":"0xdb483167e405ab32318cdd17b9f076986953f3fd117427144ef54f0a3a9c6a0a","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 6","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:10:25.302Z"} +{"level":"info","message":"Submitted rollup block 6 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:10:25.302Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:26.079Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:26.079Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:26.079Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:26.079Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T04:10:26.081Z"} +{"level":"debug","message":"Synched block 6","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:10:26.082Z"} +{"level":"debug","message":"Synched block 6","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:10:26.084Z"} +{"level":"debug","message":"Synched block 6","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:10:26.084Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.089Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.089Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:26.090Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:10:26.090Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06fe31f105cb9e8e6fee7c3ad9f005151d734de210912f679997ac09eadd2902',\n status: 'mined',\n error: '',\n blockHash: '5b952c346afb5dd27841a5a8c6755b4600b189f78e0d31ea700e5d360ab19da6',\n blockNumber: 6,\n contractAddress: '0x08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.105Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.110Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.110Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 6,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 6,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 6,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 6\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.110Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.114Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.114Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab000000000000000000000000000000000000000000000000219408bf32b81e3bea4b48e4baaba4fb9b6ddc016958f61f4c3db3a29d4cd29f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.115Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.121Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.121Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab000000000000000000000000000000000000000000000000219408bf32b81e3bea4b48e4baaba4fb9b6ddc016958f61f4c3db3a29d4cd29f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.122Z"} +{"level":"debug","message":"No new blocks to process, current block number: 30","namespace":"aztec:archiver","timestamp":"2023-12-15T04:10:26.123Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c37889ba10001001bd2567d72a174cff6477146b5143cb4147735ca8be9986b0c1a7ae9556bf8a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008b81f61c08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012d4aa0a9b60a06a834073bfd19e6470cbe52028fc25728409db7afb20d17a35c1bd2567d72a174cff6477146b5143cb4147735ca8be9986b0c1a7ae9556bf8a30000000116172789d54b7967acd2a9474c577dc774d6efedf1cd5d2435b43d8fb41810ab00000040000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000cc00000000000000000000000000000000000000000000000000000000000000c70000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000f6000000000000000000000000000000000000000000000000000000000000008200000000000000000000000000000000000000000000000000000000000000ca0000000000000000000000000000000000000000000000000000000000000051000000000000000000000000000000000000000000000000000000000000005b00000000000000000000000000000000000000000000000000000000000000c3000000000000000000000000000000000000000000000000000000000000003c00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000cb000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a20000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000005e00000000000000000000000000000000000000000000000000000000000000380000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000a9000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000c9000000000000000000000000000000000000000000000000000000000000006600000000000000000000000000000000000000000000000000000000000000ef00000000000000000000000000000000000000000000000000000000000000aa00000000000000000000000000000000000000000000000000000000000000a4000000000000000000000000000000000000000000000000000000000000006b00000000000000000000000000000000000000000000000000000000000000d6000000000000000000000000000000000000000000000000000000000000008600000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000e4000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000a100000000000000000000000000000000000000000000000000000000000000ed000000000000000000000000000000000000000000000000000000000000006200000000000000000000000000000000000000000000000000000000000000ae00000000000000000000000000000000000000000000000000000000000000f400000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006d0000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000007a000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000c500000000000000000000000000000000000000000000000000000000000000310000000000000000000000000000000000000000000000000000000000000086000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000af00000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000099000000000000000000000000000000000000000000000000000000000000009d000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000b50000000000000000000000000000000000000000000000000000000000000099'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.137Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:10:26.138Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:10:26.138Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:10:26.139Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:10:26.139Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:10:26.159Z"} +{"level":"debug","message":"Returning 1 notes for 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1935a42b87d052c51d6609ddc545231a2c918802eb7abaa20398e7d58490390a:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:10:26.160Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:10:26.170Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:10:26.195Z"} +{"level":"debug","message":"Calling private function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:8b81f61c from 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:10:26.195Z"} +{"level":"debug","message":"Executing external function 0x08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab:8b81f61c","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:10:26.211Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:10:26.218Z"} +{"level":"debug","message":"Returning 0 notes for 0x08225f452cdb39cc5a1bb16bc7c17bf39c5ff93de36720c3df5afa7b9d3777ab at 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43: ","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:10:26.218Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:10:26.219Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:10:26.302Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.566Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.567Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.567Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.569Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.569Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.569Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.570Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.570Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.570Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.759Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.759Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x0dcd1bf9a1b36ce34237eeafef220932846bcd82'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x610178da211fef7d417bc0e6fed39f05609ad788'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xb7f8bc63bbcad18155201308c8f3540b07f84f5e'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0xa51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x0b306bf915c4d645ff596e518faf3f9669b97016'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.759Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.812Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.813Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb2","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:17:01.820Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.821Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb290fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce22c92f239bcdc5ff059a8bcb47d621595af4baa8180106dbed532224886cb6852b071c6b382d1ef34458cbd60743a63a605a01c1b839c4b64457a2a60db329c800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.825Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:01.826Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:17:01.829Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:17:01.837Z"} +{"level":"debug","message":"Executing external function 0x08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb2:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:17:01.837Z"} +{"level":"debug","message":"Returning from call to 0x08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb2:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:17:01.843Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:17:01.843Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:17:01.843Z"} +{"circuitName":"private-kernel-init","duration":154.36860197782516,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-15T04:17:02.001Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:17:02.001Z"} +{"circuitName":"private-kernel-ordering","duration":114.3986069560051,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-15T04:17:02.126Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-15T04:17:02.126Z"} +{"level":"info","message":"Simulating tx 084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f","namespace":"aztec:node","timestamp":"2023-12-15T04:17:02.126Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000007: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000007, 0x00000000000000000000000000000000000000000000000000000000657bd1b1)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:17:02.137Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:02.139Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:02.139Z"} +{"level":"debug","message":"Processing tx 084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:17:02.275Z"} +{"level":"info","message":"Simulated tx 084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f succeeds","namespace":"aztec:node","timestamp":"2023-12-15T04:17:02.276Z"} +{"level":"info","message":"Executed local simulation for 084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:17:02.276Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f03ab8031aa91e10a58a9168124a624a278795ede2e8733b4e8de6bf929f4c7860000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb200000000000000000000000000000000000000000000000013d97867f41aeda579478df24080c2e8afacb7ea09176a85dd16dcf83282689d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:02.276Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f03ab8031aa91e10a58a9168124a624a278795ede2e8733b4e8de6bf929f4c7860000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:02.291Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:02.292Z"} +{"level":"info","message":"Sending transaction 084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:17:02.292Z"} +{"level":"info","message":"Received tx 084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f","namespace":"aztec:node","timestamp":"2023-12-15T04:17:02.292Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-15T04:17:02.293Z","txHash":"0x084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:02.293Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:02.296Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:02.296Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:02.298Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:17:02.404Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000007: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000007, 0x00000000000000000000000000000000000000000000000000000000657bd1b1)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-15T04:17:02.411Z"} +{"level":"info","message":"Building block 7 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:17:02.412Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:02.413Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:02.413Z"} +{"level":"debug","message":"Processing tx 084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-15T04:17:02.416Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:17:02.417Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:17:02.418Z"} +{"level":"debug","message":"Assembling block with txs 084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:17:02.418Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000007","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:17:02.418Z"} +{"level":"debug","message":"Running base rollup for 084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:17:02.419Z"} +{"circuitName":"base-rollup","duration":1758.6387580037117,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:17:04.570Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:17:04.571Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:04.574Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:04.574Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:04.575Z"} +{"circuitName":"base-rollup","duration":1671.8085169792175,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-15T04:17:06.598Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:17:06.599Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:06.600Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:06.601Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:06.601Z"} +{"circuitName":"root-rollup","duration":90.61657100915909,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-15T04:17:06.717Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-15T04:17:06.717Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:06.745Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:06.745Z"} +{"blockNumber":7,"duration":4348.195942044258,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 7","namespace":"aztec:sequencer","publicProcessDuration":1.2405949831008911,"rollupCircuitsDuration":4333.117000043392,"timestamp":"2023-12-15T04:17:06.752Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash 8d85a948bbe2e0044ec9d1d6a1d38706e8fed2a5e6afb77074c5d32b90d4c696","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:17:06.753Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-15T04:17:06.753Z"} +{"level":"debug","message":"Successfully published new contract data for block 7","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:17:06.767Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:07.606Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:07.606Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:07.607Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:07.617Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:07.617Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-15T04:17:07.621Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 7","namespace":"aztec:archiver","timestamp":"2023-12-15T04:17:07.622Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 7","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-15T04:17:07.622Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-15T04:17:07.622Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:07.749Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:07.750Z"} +{"level":"debug","message":"Synched to block 7","namespace":"aztec:p2p","timestamp":"2023-12-15T04:17:07.768Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:07.769Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:07.769Z"} +{"level":"debug","message":"Block 7 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:17:07.769Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 28 root 0x2d083e8fefc7e3f1b740d7f13e2572ab869b5ca634bfe3a2de6ec20f0ccc8b54","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:17:07.784Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1920 root 0x1345b04c1280e3cb176993c9a43f26b770e4413aff00fe3ba5f7bb59c4c02990","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:17:07.785Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1792 root 0x2c6ee8670a59a3bac5260a3f8dce3b063355b16b7d81f055310a5171294ef9eb","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:17:07.785Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 480 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:17:07.785Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 112 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:17:07.785Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 8 root 0x03674c341ddc85a0406768a7785dace594ff9dc439f04100d6e3c51835fe1ecd","namespace":"aztec:merkle_trees","timestamp":"2023-12-15T04:17:07.785Z"} +{"blockNumber":7,"duration":21.487470984458923,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-15T04:17:07.791Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"blockNumber":7,"calldataGas":94028,"calldataSize":21860,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1518103785","gasUsed":"370830","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-15T04:17:07.835Z","transactionHash":"0x85e9ae2e058d0f8e40a029ad8cc7693294d06b42c6edaeecc41f625a45dceb83","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 7","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:17:07.835Z"} +{"level":"info","message":"Submitted rollup block 7 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:17:07.835Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:08.602Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:08.602Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:08.603Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:08.603Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-15T04:17:08.604Z"} +{"level":"debug","message":"Synched block 7","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:17:08.606Z"} +{"level":"debug","message":"Synched block 7","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:17:08.607Z"} +{"level":"debug","message":"Synched block 7","namespace":"aztec:note_processor","timestamp":"2023-12-15T04:17:08.608Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.611Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.612Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:08.612Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 7","namespace":"aztec:l2_block","timestamp":"2023-12-15T04:17:08.612Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '084dae07786b97e93d8f48f7a4171a3c20ebd92453426edb00cbc0a92afc306f',\n status: 'mined',\n error: '',\n blockHash: 'c9df2df396caade8cbdd7e7ee7d40c243bdab9c14b57dfc70fe216322a0c5564',\n blockNumber: 7,\n contractAddress: '0x08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb2'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.623Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.627Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.627Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 7,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 7,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 7,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 7\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.628Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb2'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.631Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.631Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb200000000000000000000000000000000000000000000000013d97867f41aeda579478df24080c2e8afacb7ea09176a85dd16dcf83282689d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.631Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb2'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.637Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.637Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb200000000000000000000000000000000000000000000000013d97867f41aeda579478df24080c2e8afacb7ea09176a85dd16dcf83282689d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.637Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c37889ba10001001f1a94d478a235927406b563628898eaf1c99a4cd2eb04c752356d045e06caaf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008b81f61c08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011405f58ea85e61ae05d066c252a70e0a996d0e34a4730920733899ee6ce0f9041f1a94d478a235927406b563628898eaf1c99a4cd2eb04c752356d045e06caaf00000001180ac5d886ee514e3f26a52d2d2a228e807177356e35e18206a7db0113dedd6c000000400000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000f4000000000000000000000000000000000000000000000000000000000000003d000000000000000000000000000000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000c3000000000000000000000000000000000000000000000000000000000000006e00000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000f300000000000000000000000000000000000000000000000000000000000000c900000000000000000000000000000000000000000000000000000000000000e900000000000000000000000000000000000000000000000000000000000000b1000000000000000000000000000000000000000000000000000000000000006c00000000000000000000000000000000000000000000000000000000000000f1000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000ab0000000000000000000000000000000000000000000000000000000000000086000000000000000000000000000000000000000000000000000000000000005700000000000000000000000000000000000000000000000000000000000000e800000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000054000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000005f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000e2000000000000000000000000000000000000000000000000000000000000006d0000000000000000000000000000000000000000000000000000000000000029000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000d200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000068000000000000000000000000000000000000000000000000000000000000003d000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000b900000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000089000000000000000000000000000000000000000000000000000000000000007200000000000000000000000000000000000000000000000000000000000000e900000000000000000000000000000000000000000000000000000000000000d700000000000000000000000000000000000000000000000000000000000000ea000000000000000000000000000000000000000000000000000000000000004d000000000000000000000000000000000000000000000000000000000000009400000000000000000000000000000000000000000000000000000000000000cd000000000000000000000000000000000000000000000000000000000000007500000000000000000000000000000000000000000000000000000000000000c600000000000000000000000000000000000000000000000000000000000000ba000000000000000000000000000000000000000000000000000000000000001500000000000000000000000000000000000000000000000000000000000000b4000000000000000000000000000000000000000000000000000000000000007b00000000000000000000000000000000000000000000000000000000000000c20000000000000000000000000000000000000000000000000000000000000086000000000000000000000000000000000000000000000000000000000000006f000000000000000000000000000000000000000000000000000000000000006900000000000000000000000000000000000000000000000000000000000000e0'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.649Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-15T04:17:08.650Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:17:08.650Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-15T04:17:08.651Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:17:08.652Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:17:08.669Z"} +{"level":"debug","message":"Returning 1 notes for 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1935a42b87d052c51d6609ddc545231a2c918802eb7abaa20398e7d58490390a:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:17:08.670Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:17:08.680Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:17:08.711Z"} +{"level":"debug","message":"Calling private function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:8b81f61c from 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:17:08.711Z"} +{"level":"debug","message":"Executing external function 0x08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb2:8b81f61c","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-15T04:17:08.722Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:17:08.727Z"} +{"level":"debug","message":"Returning 0 notes for 0x08245b50f5c2d34f5fe2cfd21fd9ed470f9efcf44d8135740559da11e18eceb2 at 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43: ","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-15T04:17:08.727Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-15T04:17:08.729Z"} +{"level":"debug","message":"No new blocks to process, current block number: 32","namespace":"aztec:archiver","timestamp":"2023-12-15T04:17:08.734Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-15T04:17:08.835Z"} diff --git a/log/aztec-sandbox-2023-12-15.debug.log b/log/aztec-sandbox-2023-12-15.debug.log new file mode 100644 index 00000000000..700b7e86abc --- /dev/null +++ b/log/aztec-sandbox-2023-12-15.debug.log @@ -0,0 +1,2157 @@ +{"level":"info","message":"Debug logs will be written to /home/jpag/Workground/aztec/aztec-packages/log/aztec-sandbox.debug.log","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:32.495Z"} +{"level":"info","message":"Setting up Aztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c), please stand by...","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:32.497Z"} +{"level":"debug","message":"Deploying contracts...","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:32.665Z"} +{"level":"debug","message":"Deployed Registry at 0x5fbdb2315678afecb367f032d93f642f64180aa3","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:32.700Z"} +{"level":"debug","message":"Deployed Inbox at 0xe7f1725e7734ce288f8367e1bb143e90bb3f0512","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:32.726Z"} +{"level":"debug","message":"Deployed Outbox at 0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:32.744Z"} +{"level":"debug","message":"Deployed Rollup at 0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:32.765Z"} +{"level":"debug","message":"Deployed contract deployment emitter at 0x5fc8d32690cc91d4c39d9d3abcbd16989f875707","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:32.786Z"} +{"level":"debug","message":"Opening temporary databases","namespace":"aztec:node","timestamp":"2023-12-16T00:57:32.787Z"} +{"level":"debug","message":"Rollup contract address has changed, clearing databases","namespace":"aztec:node","timestamp":"2023-12-16T00:57:32.791Z"} +{"level":"debug","message":"Performing initial chain sync...","namespace":"aztec:archiver","timestamp":"2023-12-16T00:57:32.799Z"} +{"level":"debug","message":"No current L2 block number found in db, starting from 0","namespace":"aztec:world_state","timestamp":"2023-12-16T00:57:33.305Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:p2p","timestamp":"2023-12-16T00:57:33.305Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:world_state","timestamp":"2023-12-16T00:57:33.305Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:world_state","timestamp":"2023-12-16T00:57:33.306Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:world_state","timestamp":"2023-12-16T00:57:33.306Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:p2p","timestamp":"2023-12-16T00:57:33.306Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:p2p","timestamp":"2023-12-16T00:57:33.306Z"} +{"level":"debug","message":"Initialized sequencer with 1-32 txs per block.","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:33.310Z"} +{"level":"debug","message":"Sequencer started","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:33.311Z"} +{"level":"debug","message":"Started Aztec Node against chain 0x7a69 with contracts - \nRollup: 0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9\nRegistry: 0x5fbdb2315678afecb367f032d93f642f64180aa3\nInbox: 0xe7f1725e7734ce288f8367e1bb143e90bb3f0512\nOutbox: 0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0\nContract Emitter: 0x5fc8d32690cc91d4c39d9d3abcbd16989f875707","namespace":"aztec:node","timestamp":"2023-12-16T00:57:33.312Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-16T00:57:33.312Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-16T00:57:33.315Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-16T00:57:33.318Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-16T00:57:33.318Z"} +{"level":"debug","message":"Started","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T00:57:33.319Z"} +{"level":"info","message":"Started PXE connected to chain 31337 version 1","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.320Z"} +{"level":"info","message":"Setting up test accounts...","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:33.320Z"} +{"level":"info","message":"Registered account 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.479Z"} +{"level":"debug","message":"Registered account\n Address: 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n Partial Address: 0x284e333701fbf6b040cdd45feeaadc23505e90e4714af8471387b20fee13e541\n","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.480Z"} +{"level":"info","message":"Registered account 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.480Z"} +{"level":"debug","message":"Registered account\n Address: 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n Partial Address: 0x0bdef5c62eaf9c17bbf24fd1f2e469c6fe96ccea0513931287f758e0234d249b\n","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.480Z"} +{"level":"info","message":"Registered account 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.480Z"} +{"level":"debug","message":"Registered account\n Address: 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n Partial Address: 0x0c8ef4391be038949491a6f64cf0e3c66f0e8517d62be4abf3432cf6061ea2a9\n","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.480Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.604Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.604Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.604Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.608Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.609Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.609Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.614Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.615Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.615Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T00:57:33.615Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T00:57:33.617Z"} +{"level":"debug","message":"Executing external function 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T00:57:33.618Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:33.696Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:33.701Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:33.707Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:33.707Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:33.707Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:33.708Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:33.709Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:33.712Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:33.714Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T00:57:33.727Z"} +{"level":"debug","message":"Returning from call to 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T00:57:33.730Z"} +{"level":"debug","message":"Returning from call to 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T00:57:33.733Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.733Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.733Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.733Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.733Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.735Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:33.736Z"} +{"circuitName":"private-kernel-init","duration":489.20218402147293,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T00:57:34.229Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T00:57:34.230Z"} +{"circuitName":"private-kernel-init","duration":469.74951499700546,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T00:57:34.232Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T00:57:34.232Z"} +{"circuitName":"private-kernel-init","duration":455.0814580321312,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T00:57:34.234Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T00:57:34.234Z"} +{"circuitName":"private-kernel-ordering","duration":330.78004199266434,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T00:57:34.594Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T00:57:34.594Z"} +{"circuitName":"private-kernel-ordering","duration":321.338840007782,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T00:57:34.596Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T00:57:34.596Z"} +{"circuitName":"private-kernel-ordering","duration":313.623439013958,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T00:57:34.597Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T00:57:34.597Z"} +{"level":"info","message":"Simulating tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-16T00:57:34.599Z"} +{"level":"info","message":"Simulating tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-16T00:57:34.599Z"} +{"level":"info","message":"Simulating tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-16T00:57:34.599Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T00:57:34.619Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T00:57:34.619Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T00:57:34.620Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T00:57:34.620Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T00:57:34.648Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T00:57:34.648Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T00:57:34.943Z"} +{"level":"info","message":"Simulated tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T00:57:34.943Z"} +{"level":"info","message":"Executed local simulation for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:34.944Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T00:57:34.946Z"} +{"level":"info","message":"Simulated tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe succeeds","namespace":"aztec:node","timestamp":"2023-12-16T00:57:34.946Z"} +{"level":"info","message":"Executed local simulation for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:34.946Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T00:57:34.948Z"} +{"level":"info","message":"Simulated tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T00:57:34.948Z"} +{"level":"info","message":"Executed local simulation for 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:34.948Z"} +{"level":"info","message":"Sending transaction 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:34.949Z"} +{"level":"info","message":"Sending transaction 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:34.949Z"} +{"level":"info","message":"Sending transaction 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-16T00:57:34.949Z"} +{"level":"info","message":"Received tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-16T00:57:34.949Z"} +{"level":"info","message":"Received tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-16T00:57:34.949Z"} +{"level":"info","message":"Received tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-16T00:57:34.949Z"} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-16T00:57:34.950Z","txHash":"0x1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-16T00:57:34.951Z","txHash":"0x2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-16T00:57:34.951Z","txHash":"0x1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"info","message":"Retrieved 3 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:35.608Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T00:57:35.615Z"} +{"level":"info","message":"Building block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:35.617Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T00:57:35.617Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T00:57:35.620Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T00:57:35.620Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T00:57:35.620Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:35.621Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:35.622Z"} +{"level":"debug","message":"Assembling block with txs 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09, 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61, 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:35.622Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000001","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:35.623Z"} +{"level":"debug","message":"Running base rollup for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T00:57:35.623Z"} +{"circuitName":"base-rollup","duration":1865.714593052864,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T00:57:38.012Z"} +{"level":"debug","message":"Running base rollup for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T00:57:38.012Z"} +{"circuitName":"base-rollup","duration":1859.3078039884567,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T00:57:40.273Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T00:57:40.273Z"} +{"circuitName":"root-rollup","duration":101.8940309882164,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T00:57:40.409Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T00:57:40.409Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:40.431Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:40.432Z"} +{"blockNumber":1,"duration":4841.6903629899025,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-built","level":"debug","message":"Assembled block 1","namespace":"aztec:sequencer","publicProcessDuration":2.4568939805030823,"rollupCircuitsDuration":4823.062394976616,"timestamp":"2023-12-16T00:57:40.446Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Publishing extended contract data with block hash ed3953550d130e6a4a6b8de396c5bda338783bb4d3aa8d0099ba7afae0ef6a14","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:40.447Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T00:57:40.448Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T00:57:40.476Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T00:57:40.502Z"} +{"level":"debug","message":"Successfully published new contract data for block 1","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:40.530Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:41.312Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:41.313Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T00:57:41.322Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-16T00:57:41.323Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-16T00:57:41.324Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-16T00:57:41.324Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T00:57:41.324Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T00:57:41.347Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T00:57:41.349Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T00:57:41.351Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:41.418Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:41.418Z"} +{"level":"debug","message":"Block 1 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T00:57:41.419Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:41.422Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:41.422Z"} +{"level":"debug","message":"Synched to block 1","namespace":"aztec:p2p","timestamp":"2023-12-16T00:57:41.462Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 4 root 0x033dd64d21ae6a218161988396dea39a578ebd0876230b5a50b6d9fe594902fb","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T00:57:41.480Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 384 root 0x124183fff44e3f32d100260e8dd469ddc74d7463349b2f8f679fc7896212dc9e","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T00:57:41.480Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 256 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T00:57:41.480Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 96 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T00:57:41.480Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 16 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T00:57:41.480Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 2 root 0x1286435510bed8e37738413f6eaf29460d908bc7adffae01dcdae22ed20a5215","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T00:57:41.481Z"} +{"blockNumber":1,"calldataGas":110940,"calldataSize":22596,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"rollup-published-to-l1","gasPrice":"1816098681","gasUsed":"434999","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T00:57:41.610Z","transactionHash":"0x0c25b442757c6203a4774bdbe8163b8318db381a44de23768c6ec6fe8d516961","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Successfully published block 1","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:41.610Z"} +{"level":"info","message":"Submitted rollup block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:41.610Z"} +{"blockNumber":1,"duration":200.19807302951813,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T00:57:41.619Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:42.276Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:42.276Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:42.278Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:42.278Z"} +{"level":"debug","message":"Forwarding 3 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T00:57:42.280Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T00:57:42.296Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:42.308Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:42.310Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:42.330Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:42.330Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:42.346Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:42.347Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:42.364Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:42.364Z"} +{"level":"debug","message":"No new blocks to process, current block number: 10","namespace":"aztec:archiver","timestamp":"2023-12-16T00:57:42.386Z"} +{"level":"debug","message":"Added note for contract 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x09b9ace7b2beea90afef773bbd468b98233a468d1ebe0f087b8a703ff861d500","namespace":"aztec:note_processor","timestamp":"2023-12-16T00:57:42.387Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-16T00:57:42.390Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T00:57:42.397Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:42.416Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:42.419Z"} +{"level":"debug","message":"Added note for contract 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2f7fcae3f4b95db8ae047af7219fc01130ca5f432379b128f219320cb309000e","namespace":"aztec:note_processor","timestamp":"2023-12-16T00:57:42.431Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-16T00:57:42.433Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T00:57:42.442Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:42.462Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T00:57:42.465Z"} +{"level":"debug","message":"Added note for contract 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2126b7cc255081f654a397c8b0abdcfc2220ff72f3cadf33781414fb7ced4d8a","namespace":"aztec:note_processor","timestamp":"2023-12-16T00:57:42.473Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-16T00:57:42.475Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T00:57:42.611Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:43.347Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:43.348Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:43.364Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:43.364Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:43.384Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T00:57:43.384Z"} +{"level":"info","message":"Aztec Node JSON-RPC Server listening on port 8079","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:43.402Z"} +{"level":"info","message":"PXE JSON-RPC Server listening on port 8080","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:43.403Z"} +{"level":"info","message":"\n _\n /\\ | |\n / \\ ___| |_ ___ ___ \n / /\\ \\ |_ / __/ _ \\/ __|\n / ____ \\ / /| || __/ (__ \n/_/___ \\_\\/___|\\__\\___|\\___|\n\nhttps://github.com/AztecProtocol\n\nInitial Accounts:\n\n Address: 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c\n Partial Address: 0x284e333701fbf6b040cdd45feeaadc23505e90e4714af8471387b20fee13e541\n Private Key: 0x2153536ff6628eee01cf4024889ff977a18d9fa61d0e414422f7681cf085c281\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n\n Address: 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9\n Partial Address: 0x0bdef5c62eaf9c17bbf24fd1f2e469c6fe96ccea0513931287f758e0234d249b\n Private Key: 0x00aebd1b4be76efa44f5ee655c20bf9ea60f7ae44b9a7fd1fd9f189c7a0b0cda\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n\n Address: 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea\n Partial Address: 0x0c8ef4391be038949491a6f64cf0e3c66f0e8517d62be4abf3432cf6061ea2a9\n Private Key: 0x0f6addf0da06c33293df974a565b03d1ab096090d907d98055a8b7f4954e120c\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n\nAztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c) is now ready for use!","namespace":"aztec:sandbox","timestamp":"2023-12-16T00:57:43.405Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.594Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.594Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.596Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.602Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.602Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.603Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.604Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.605Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.605Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.773Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.773Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.773Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.818Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.819Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d46","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:02:29.824Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.824Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d4690fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce08a1668777615c1a355d52851c928353cecac26fe1bb0831364e621a72b465a101ff2aaed133e2337f70a6993044c51e877c37a30d2a81f942129706bee1aa6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.828Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:29.829Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:02:29.832Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:02:29.838Z"} +{"level":"debug","message":"Executing external function 0x00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d46:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:02:29.838Z"} +{"level":"debug","message":"Returning from call to 0x00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d46:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:02:29.844Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:02:29.844Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:02:29.845Z"} +{"circuitName":"private-kernel-init","duration":135.56311601400375,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T01:02:29.983Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:02:29.984Z"} +{"circuitName":"private-kernel-ordering","duration":108.78590804338455,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T01:02:30.103Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:02:30.103Z"} +{"level":"info","message":"Simulating tx 2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048","namespace":"aztec:node","timestamp":"2023-12-16T01:02:30.103Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000002: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000002, 0x00000000000000000000000000000000000000000000000000000000657cf607)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T01:02:30.118Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:30.121Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:30.121Z"} +{"level":"debug","message":"Processing tx 2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T01:02:30.236Z"} +{"level":"info","message":"Simulated tx 2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T01:02:30.237Z"} +{"level":"info","message":"Executed local simulation for 2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:02:30.237Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f220482348316c0a97f423bad67d823c88b67bd8d1f514c54abb739e9872dcc28bd62a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d460000000000000000000000000000000000000000000000002a691fefc40b627e57bef9eb6e5d08d07435cf0f244dd1f168979eb57873ce6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:30.238Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f220482348316c0a97f423bad67d823c88b67bd8d1f514c54abb739e9872dcc28bd62a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:30.252Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:30.253Z"} +{"level":"info","message":"Sending transaction 2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:02:30.253Z"} +{"level":"info","message":"Received tx 2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048","namespace":"aztec:node","timestamp":"2023-12-16T01:02:30.253Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-16T01:02:30.254Z","txHash":"0x2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:30.254Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:30.257Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:30.257Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:30.258Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:02:30.697Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000002: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000002, 0x00000000000000000000000000000000000000000000000000000000657cf607)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T01:02:30.704Z"} +{"level":"info","message":"Building block 2 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:02:30.704Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:30.705Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:30.706Z"} +{"level":"debug","message":"Processing tx 2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T01:02:30.708Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:02:30.708Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:02:30.709Z"} +{"level":"debug","message":"Assembling block with txs 2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:02:30.709Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000002","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:02:30.709Z"} +{"level":"debug","message":"Running base rollup for 2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:02:30.710Z"} +{"circuitName":"base-rollup","duration":1763.4770969748497,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T01:02:32.849Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:02:32.849Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:32.852Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:32.852Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:32.854Z"} +{"circuitName":"base-rollup","duration":1606.3015210032463,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T01:02:34.819Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:02:34.819Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:34.822Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:34.822Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:34.823Z"} +{"circuitName":"root-rollup","duration":88.58860903978348,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T01:02:34.936Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:02:34.936Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:34.953Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:34.954Z"} +{"blockNumber":2,"duration":4263.731785953045,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 2","namespace":"aztec:sequencer","publicProcessDuration":1.065602958202362,"rollupCircuitsDuration":4250.437678992748,"timestamp":"2023-12-16T01:02:34.960Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash fe08b40f763c72da1ef5094e0f14c7b59d807e3218c43b08702c80599f932189","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:02:34.962Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T01:02:34.962Z"} +{"level":"debug","message":"Successfully published new contract data for block 2","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:02:34.983Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:35.828Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:35.828Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:35.829Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:35.840Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:35.840Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T01:02:35.846Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 2","namespace":"aztec:archiver","timestamp":"2023-12-16T01:02:35.847Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 2","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T01:02:35.847Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T01:02:35.848Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:35.943Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:35.943Z"} +{"level":"debug","message":"Block 2 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:02:35.944Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:35.945Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:35.945Z"} +{"level":"debug","message":"Synched to block 2","namespace":"aztec:p2p","timestamp":"2023-12-16T01:02:35.967Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 8 root 0x0529ad64151fba39a9a5a4cfeafba0036c044df11b716c570edde47edb3fa9fa","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:02:35.995Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 640 root 0x0875e07fb3776c1436def9421811ce4d823cc462a4b5c3ba56fe5e790d9e2efe","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:02:35.995Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 512 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:02:35.995Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 160 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:02:35.995Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 32 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:02:35.996Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 3 root 0x2f7b36f63e32ae9d5f1eaa1b9b3f6d759f9e48081c70cd6249a9987c3a02ad37","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:02:35.996Z"} +{"blockNumber":2,"duration":61.979063987731934,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T01:02:36.006Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"blockNumber":2,"calldataGas":94004,"calldataSize":21860,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1743080735","gasUsed":"370806","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T01:02:36.052Z","transactionHash":"0xf43f9100782c4064e1e11295a4a805e0f9f9dd8cffef518e9fa078858171213f","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 2","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:02:36.052Z"} +{"level":"info","message":"Submitted rollup block 2 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:02:36.052Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:36.822Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:36.822Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:36.823Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:36.823Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T01:02:36.825Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:02:36.827Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:02:36.828Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:02:36.829Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.833Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.834Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:36.835Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:02:36.835Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2adacd12aace93551c2dfb6bb9832f3ca24d0a2e8f00abc5bb90fbb819f22048',\n status: 'mined',\n error: '',\n blockHash: '6ad55546b579dc68e30451247267ac24144e658c502e630cb18d86ee6313c234',\n blockNumber: 2,\n contractAddress: '0x00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d46'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.856Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.859Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.860Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 2,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 2,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 2,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 2\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.860Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d46'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.863Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.863Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d460000000000000000000000000000000000000000000000002a691fefc40b627e57bef9eb6e5d08d07435cf0f244dd1f168979eb57873ce6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.863Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d46'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.868Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.869Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d460000000000000000000000000000000000000000000000002a691fefc40b627e57bef9eb6e5d08d07435cf0f244dd1f168979eb57873ce6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.869Z"} +{"level":"debug","message":"No new blocks to process, current block number: 12","namespace":"aztec:archiver","timestamp":"2023-12-16T01:02:36.873Z"} +{"level":"debug","message":"JsonProxy:call proveInit [\n {\n type: 'TxExecutionRequest',\n data: '26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c37889ba10001000714f20dea8ed3cdac0a67e4219efe3e08e7f896ddce4e7b7b041c1d9aa8822f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000050000000126fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c048087fa6f786dffc982a89868d25f5cd9dfae666fa008f57f46a392f8f0024b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011048087fa6f786dffc982a89868d25f5cd9dfae666fa008f57f46a392f8f0024b0000000000000000000000000000000000000000000000000000000016cf6ba900e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001065f8fd7b5d12372111544ebd959f4a69d96dbcff11c3dbf64c8e3b317f61a1d0714f20dea8ed3cdac0a67e4219efe3e08e7f896ddce4e7b7b041c1d9aa8822f000000011031aa300d8f077c779efe6a8c6c22b5459808986fedcf5773829ae3c67ee46000000040000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000e7000000000000000000000000000000000000000000000000000000000000001300000000000000000000000000000000000000000000000000000000000000cd00000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000c6000000000000000000000000000000000000000000000000000000000000002300000000000000000000000000000000000000000000000000000000000000a700000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000b6000000000000000000000000000000000000000000000000000000000000009b000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000ab00000000000000000000000000000000000000000000000000000000000000e8000000000000000000000000000000000000000000000000000000000000006f0000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000009800000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000000039000000000000000000000000000000000000000000000000000000000000006b000000000000000000000000000000000000000000000000000000000000004700000000000000000000000000000000000000000000000000000000000000730000000000000000000000000000000000000000000000000000000000000097000000000000000000000000000000000000000000000000000000000000006f00000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000a500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f800000000000000000000000000000000000000000000000000000000000000e7000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000003d00000000000000000000000000000000000000000000000000000000000000da000000000000000000000000000000000000000000000000000000000000006e00000000000000000000000000000000000000000000000000000000000000b100000000000000000000000000000000000000000000000000000000000000bb000000000000000000000000000000000000000000000000000000000000003500000000000000000000000000000000000000000000000000000000000000130000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000002b0000000000000000000000000000000000000000000000000000000000000058000000000000000000000000000000000000000000000000000000000000007900000000000000000000000000000000000000000000000000000000000000310000000000000000000000000000000000000000000000000000000000000054000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000000000000000000000000000000000000000005e000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000d4000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000c7000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000004100000000000000000000000000000000000000000000000000000000000000f200000000000000000000000000000000000000000000000000000000000000a1000000000000000000000000000000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000e2'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.909Z"} +{"level":"debug","message":"JsonProxy:call proveInit <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:02:36.910Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:02:36.910Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:02:36.919Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:02:36.919Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:02:36.938Z"} +{"level":"debug","message":"Returning 1 notes for 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1935a42b87d052c51d6609ddc545231a2c918802eb7abaa20398e7d58490390a:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:02:36.939Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:02:36.949Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:02:36.990Z"} +{"level":"debug","message":"Calling private function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:16cf6ba9 from 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:02:36.991Z"} +{"level":"debug","message":"Executing external function 0x00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d46:16cf6ba9","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:02:37.012Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:02:37.018Z"} +{"level":"debug","message":"Returning 0 notes for 0x00e77229b2421df31fa8dbf3ee4d2db8b146c1699bf02e55ea31da6f1b6a9d46 at 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43: ","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:02:37.019Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:02:37.020Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:02:37.051Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:39.922Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:39.922Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:39.923Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:39.925Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:39.925Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:39.925Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:39.925Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:39.925Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:39.926Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.102Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.102Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.102Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.145Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.146Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c6","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:50:40.151Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.151Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c690fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce08a1668777615c1a355d52851c928353cecac26fe1bb0831364e621a72b465a11ec0d9c06a279b51ed8cdb894371781ff55fb17de924c3881753d4ec26bde2c500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.155Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.156Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:50:40.159Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:50:40.163Z"} +{"level":"debug","message":"Executing external function 0x19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c6:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:50:40.164Z"} +{"level":"debug","message":"Returning from call to 0x19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c6:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:50:40.171Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:50:40.171Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:50:40.171Z"} +{"circuitName":"private-kernel-init","duration":136.91745400428772,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T01:50:40.311Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:50:40.311Z"} +{"circuitName":"private-kernel-ordering","duration":106.6652860045433,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T01:50:40.428Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:50:40.429Z"} +{"level":"info","message":"Simulating tx 2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8","namespace":"aztec:node","timestamp":"2023-12-16T01:50:40.429Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000003: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000003, 0x00000000000000000000000000000000000000000000000000000000657cf72b)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T01:50:40.438Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:40.439Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:40.439Z"} +{"level":"debug","message":"Processing tx 2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T01:50:40.548Z"} +{"level":"info","message":"Simulated tx 2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T01:50:40.549Z"} +{"level":"info","message":"Executed local simulation for 2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:50:40.549Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee809996f3c90244b80e1c358c3d86882d291775e3ece6abb9f3f3fa03a8b6266a10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c6000000000000000000000000000000000000000000000000037fcee5e1d0f6e202521bb6b01bf8ab9cb55caa814b48dd7c22afbb80cbef0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.550Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee809996f3c90244b80e1c358c3d86882d291775e3ece6abb9f3f3fa03a8b6266a10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.564Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.565Z"} +{"level":"info","message":"Sending transaction 2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:50:40.565Z"} +{"level":"info","message":"Received tx 2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8","namespace":"aztec:node","timestamp":"2023-12-16T01:50:40.565Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-16T01:50:40.566Z","txHash":"0x2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.566Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.569Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.569Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:40.570Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:50:40.767Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000003: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000003, 0x00000000000000000000000000000000000000000000000000000000657cf72b)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T01:50:40.774Z"} +{"level":"info","message":"Building block 3 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:50:40.775Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:40.778Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:40.778Z"} +{"level":"debug","message":"Processing tx 2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T01:50:40.783Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:50:40.784Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:50:40.785Z"} +{"level":"debug","message":"Assembling block with txs 2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:50:40.785Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000003","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:50:40.786Z"} +{"level":"debug","message":"Running base rollup for 2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:50:40.786Z"} +{"circuitName":"base-rollup","duration":1710.8049889802933,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T01:50:42.960Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:50:42.961Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:42.963Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:42.963Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:42.965Z"} +{"circuitName":"base-rollup","duration":1606.6657549738884,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T01:50:44.914Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:50:44.915Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:44.917Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:44.917Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:44.918Z"} +{"circuitName":"root-rollup","duration":89.93461298942566,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T01:50:45.031Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:50:45.031Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:45.050Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:45.050Z"} +{"blockNumber":3,"duration":4291.1251819729805,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 3","namespace":"aztec:sequencer","publicProcessDuration":2.483062982559204,"rollupCircuitsDuration":4270.837377011776,"timestamp":"2023-12-16T01:50:45.057Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash 56f9edbd3df36d9009a490cf5e9cde77454538201f47ecaffe05c20432bc07a4","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:50:45.058Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T01:50:45.058Z"} +{"level":"debug","message":"Successfully published new contract data for block 3","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:50:45.073Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:45.921Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:45.922Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:45.922Z"} +{"blockNumber":3,"calldataGas":94040,"calldataSize":21860,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1686815950","gasUsed":"370842","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T01:50:46.141Z","transactionHash":"0x759e22c8a5588a80262276b423da87885e33c057357acf5bf0c178a65d9901fe","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 3","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:50:46.142Z"} +{"level":"info","message":"Submitted rollup block 3 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:50:46.142Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:46.927Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:46.927Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:46.928Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:46.935Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:46.935Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T01:50:46.939Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 3","namespace":"aztec:archiver","timestamp":"2023-12-16T01:50:46.941Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 3","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T01:50:46.941Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T01:50:46.942Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:47.041Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:47.041Z"} +{"level":"debug","message":"Block 3 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:50:47.041Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:47.042Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:47.043Z"} +{"level":"debug","message":"Synched to block 3","namespace":"aztec:p2p","timestamp":"2023-12-16T01:50:47.061Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 12 root 0x2be7ae272768bfd00f2eaec02c82f403949465b0a285da0d69c51f9cf76de8a7","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:50:47.074Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 896 root 0x207d21bf2967495c4fa536fd6ca55125f6b814fc68319f522f7d8811fbeb9a15","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:50:47.074Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 768 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:50:47.074Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 224 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:50:47.074Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 48 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:50:47.074Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 4 root 0x164e11847b26ee8b6d09faae8836896774b501fb317aafd4925dd46fb0e6820e","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:50:47.074Z"} +{"blockNumber":3,"duration":39.47031497955322,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T01:50:47.081Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:50:47.142Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:47.918Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:47.918Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:47.919Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:47.919Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T01:50:47.921Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:50:47.923Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:50:47.924Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:50:47.925Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.932Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.932Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:47.933Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:50:47.934Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2cf6cac4c0ee9b9d037439bca8c5ddf35012bc2b9f1267de26e517321ff30ee8',\n status: 'mined',\n error: '',\n blockHash: '0f69b16b8c8d57c7133d58bd9edfa320e27a4c2c4fd2957fcc05f8799e7260c1',\n blockNumber: 3,\n contractAddress: '0x19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c6'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.944Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.948Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.948Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 3,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 3,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 3,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 3\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.948Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c6'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.951Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.952Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c6000000000000000000000000000000000000000000000000037fcee5e1d0f6e202521bb6b01bf8ab9cb55caa814b48dd7c22afbb80cbef0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.952Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c6'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.957Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.957Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c6000000000000000000000000000000000000000000000000037fcee5e1d0f6e202521bb6b01bf8ab9cb55caa814b48dd7c22afbb80cbef0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.957Z"} +{"level":"debug","message":"No new blocks to process, current block number: 14","namespace":"aztec:archiver","timestamp":"2023-12-16T01:50:47.972Z"} +{"level":"debug","message":"JsonProxy:call proveInit [\n {\n type: 'TxExecutionRequest',\n data: '26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c37889ba10001000cc9558930e8886e9247bc364fa5dd495b0e9e16d314ec9bf7e33ee6e8e425d90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000050000000126fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c048087fa6f786dffc982a89868d25f5cd9dfae666fa008f57f46a392f8f0024b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011048087fa6f786dffc982a89868d25f5cd9dfae666fa008f57f46a392f8f0024b0000000000000000000000000000000000000000000000000000000016cf6ba919c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011e806a40c50fef20f9237b1c527439ac70f12b98a7c2ead7d9a367e52712cb930cc9558930e8886e9247bc364fa5dd495b0e9e16d314ec9bf7e33ee6e8e425d9000000012bfd55f702063d2ef1c52dcf4dc3ffda1a965ed60838b4325fcd52cc099b8755000000400000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000003f00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000b500000000000000000000000000000000000000000000000000000000000000e40000000000000000000000000000000000000000000000000000000000000025000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000009d00000000000000000000000000000000000000000000000000000000000000e10000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000027000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000007300000000000000000000000000000000000000000000000000000000000000b5000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000093000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000003b00000000000000000000000000000000000000000000000000000000000000c20000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000005b000000000000000000000000000000000000000000000000000000000000003600000000000000000000000000000000000000000000000000000000000000af000000000000000000000000000000000000000000000000000000000000003700000000000000000000000000000000000000000000000000000000000000c3000000000000000000000000000000000000000000000000000000000000005a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007600000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000077000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000008e000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000031000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000001f00000000000000000000000000000000000000000000000000000000000000e700000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000077000000000000000000000000000000000000000000000000000000000000009b00000000000000000000000000000000000000000000000000000000000000bb000000000000000000000000000000000000000000000000000000000000009f00000000000000000000000000000000000000000000000000000000000000ba00000000000000000000000000000000000000000000000000000000000000a3000000000000000000000000000000000000000000000000000000000000002b000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000005400000000000000000000000000000000000000000000000000000000000000d100000000000000000000000000000000000000000000000000000000000000f20000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000002d00000000000000000000000000000000000000000000000000000000000000a300000000000000000000000000000000000000000000000000000000000000aa0000000000000000000000000000000000000000000000000000000000000052'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.993Z"} +{"level":"debug","message":"JsonProxy:call proveInit <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:50:47.994Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:50:47.994Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:50:47.995Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:50:47.996Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:50:48.014Z"} +{"level":"debug","message":"Returning 1 notes for 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1935a42b87d052c51d6609ddc545231a2c918802eb7abaa20398e7d58490390a:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:50:48.014Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:50:48.025Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:50:48.051Z"} +{"level":"debug","message":"Calling private function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:16cf6ba9 from 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:50:48.051Z"} +{"level":"debug","message":"Executing external function 0x19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c6:16cf6ba9","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:50:48.061Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:50:48.067Z"} +{"level":"debug","message":"Returning 0 notes for 0x19c0675537bd7d5f107432c192b0933a02a59f01ea650acef824d6944da5b5c6 at 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43: ","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:50:48.068Z"} +{"level":"error","message":"Error in oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:50:48.069Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.476Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.476Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.477Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.479Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.480Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.480Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.480Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.480Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.481Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.651Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.651Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0xcf7ed3acca5a467e9e704c703e8d87f634fb0fc9'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x5fbdb2315678afecb367f032d93f642f64180aa3'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xe7f1725e7734ce288f8367e1bb143e90bb3f0512'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x9fe46736679d2d9a65f0992f2272de9f3c7fa6e0'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x5fc8d32690cc91d4c39d9d3abcbd16989f875707'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.651Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.693Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.693Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:36.698Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.698Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a90fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce0fea81d0a2d0e7afa826e13e84a9644453109d0b00201319df90bb1d61522da70a3dbe62e59af967d366c3ce0e8456e211225b8c88c0622c22c9688266fb34fc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.703Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:36.703Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:36.706Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:36.710Z"} +{"level":"debug","message":"Executing external function 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:57:36.711Z"} +{"level":"debug","message":"Returning from call to 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:57:36.717Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:36.717Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:36.717Z"} +{"circuitName":"private-kernel-init","duration":139.96205699443817,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T01:57:36.860Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:57:36.860Z"} +{"circuitName":"private-kernel-ordering","duration":105.63217103481293,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T01:57:36.977Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:57:36.977Z"} +{"level":"info","message":"Simulating tx 122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e","namespace":"aztec:node","timestamp":"2023-12-16T01:57:36.978Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000004: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000004, 0x00000000000000000000000000000000000000000000000000000000657d0276)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T01:57:36.989Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:36.990Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:36.991Z"} +{"level":"debug","message":"Processing tx 122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T01:57:37.102Z"} +{"level":"info","message":"Simulated tx 122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e succeeds","namespace":"aztec:node","timestamp":"2023-12-16T01:57:37.103Z"} +{"level":"info","message":"Executed local simulation for 122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:37.103Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e12d75a792ae506aed0249e7808f009863a466c814c929b2c47801f019975f0520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a00000000000000000000000000000000000000000000000020bfd4ee5f1443a9a94d3cc151851291e50f8fb8579b0f539475050a9e51416c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:37.103Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e12d75a792ae506aed0249e7808f009863a466c814c929b2c47801f019975f0520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:37.117Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:37.118Z"} +{"level":"info","message":"Sending transaction 122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:37.118Z"} +{"level":"info","message":"Received tx 122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e","namespace":"aztec:node","timestamp":"2023-12-16T01:57:37.118Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-16T01:57:37.119Z","txHash":"0x122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:37.119Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:37.121Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:37.121Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:37.122Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:37.258Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000004: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000004, 0x00000000000000000000000000000000000000000000000000000000657d0276)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T01:57:37.265Z"} +{"level":"info","message":"Building block 4 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:37.266Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:37.267Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:37.267Z"} +{"level":"debug","message":"Processing tx 122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T01:57:37.270Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:37.270Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:37.271Z"} +{"level":"debug","message":"Assembling block with txs 122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:37.271Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000004","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:37.271Z"} +{"level":"debug","message":"Running base rollup for 122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:37.272Z"} +{"circuitName":"base-rollup","duration":1715.851311981678,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T01:57:39.390Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:39.391Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:39.394Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:39.394Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:39.395Z"} +{"circuitName":"base-rollup","duration":1704.1873039603233,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T01:57:41.448Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:41.448Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:41.450Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:41.451Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:41.452Z"} +{"circuitName":"root-rollup","duration":85.45917302370071,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T01:57:41.563Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:41.563Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:41.580Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:41.580Z"} +{"blockNumber":4,"duration":4330.338159024715,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 4","namespace":"aztec:sequencer","publicProcessDuration":1.0570510029792786,"rollupCircuitsDuration":4315.47972202301,"timestamp":"2023-12-16T01:57:41.587Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash f63b5a6efb2649dac58760605ab5e8f25af23bd1be519c0fff0602c46e7e0c73","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:41.589Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T01:57:41.589Z"} +{"level":"debug","message":"Successfully published new contract data for block 4","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:41.604Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:42.457Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:42.457Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:42.458Z"} +{"blockNumber":4,"calldataGas":94040,"calldataSize":21860,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1643574566","gasUsed":"370842","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T01:57:42.668Z","transactionHash":"0xa805a499246592782c685bc283969055ab592403fd1da7fd4aa392e429456cd5","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 4","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:42.668Z"} +{"level":"info","message":"Submitted rollup block 4 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:42.668Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:43.463Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:43.463Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:43.465Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:43.469Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:43.469Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T01:57:43.473Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 4","namespace":"aztec:archiver","timestamp":"2023-12-16T01:57:43.476Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 4","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T01:57:43.477Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T01:57:43.477Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:43.572Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:43.572Z"} +{"level":"debug","message":"Block 4 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:43.572Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:43.574Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:43.574Z"} +{"level":"debug","message":"Synched to block 4","namespace":"aztec:p2p","timestamp":"2023-12-16T01:57:43.591Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 16 root 0x252301ae6e5312ba94e19bfbb9fa43ab7cb538b6a19ab8da4dd7f12863a022d0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:43.604Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1152 root 0x2ca48faafdd84e00461a634b2d41e5d8031670f6b39faca4af43484488ca6eee","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:43.605Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1024 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:43.605Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 288 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:43.605Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 64 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:43.605Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 5 root 0x160d19e8ec15a35eb91355a37c648400edd125450aae450dc39b4ffb03ea18ce","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:43.605Z"} +{"blockNumber":4,"duration":39.41323697566986,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T01:57:43.612Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:43.668Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:44.451Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:44.451Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:44.452Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:44.452Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T01:57:44.455Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:57:44.457Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:57:44.458Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:57:44.459Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.470Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.470Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:44.471Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:44.471Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '122d97401c1df271ceee6ddec47813f96fb03f533b0e9c97131508d98181a59e',\n status: 'mined',\n error: '',\n blockHash: 'f2522b3e351c14fee8ef06cab23848a2c35a2c5d71a2a30a64e9a33fffd98d4b',\n blockNumber: 4,\n contractAddress: '0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.481Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.485Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.485Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 4,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 4,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 4,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 4\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.485Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.488Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.488Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a00000000000000000000000000000000000000000000000020bfd4ee5f1443a9a94d3cc151851291e50f8fb8579b0f539475050a9e51416c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.489Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.493Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.493Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a00000000000000000000000000000000000000000000000020bfd4ee5f1443a9a94d3cc151851291e50f8fb8579b0f539475050a9e51416c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.494Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c37889ba1000100098b7979af4707b3df03460f7d0173b2e03a9ef9cecddd15fe8eb5efd9e86f560000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000226fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c251b98366c4027425c5225bb2eb14ef04a9d492b1783ebcc6e64bf3c9c087c2800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011251b98366c4027425c5225bb2eb14ef04a9d492b1783ebcc6e64bf3c9c087c280000000000000000000000000000000000000000000000000000000042eb947f0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000117412bc9ba80dba30d357933fb5b0f5af083def5352fa338f3a88cfc5b9ca438098b7979af4707b3df03460f7d0173b2e03a9ef9cecddd15fe8eb5efd9e86f5600000001029a3fcd7eee08dff4c0e59c7d74f6df51660689dcc44e75cdcdc8b568903f5a00000040000000000000000000000000000000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000df00000000000000000000000000000000000000000000000000000000000000ee000000000000000000000000000000000000000000000000000000000000003f00000000000000000000000000000000000000000000000000000000000000a8000000000000000000000000000000000000000000000000000000000000008d000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000e9000000000000000000000000000000000000000000000000000000000000008a00000000000000000000000000000000000000000000000000000000000000f100000000000000000000000000000000000000000000000000000000000000bf00000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000068000000000000000000000000000000000000000000000000000000000000008300000000000000000000000000000000000000000000000000000000000000dc000000000000000000000000000000000000000000000000000000000000004b00000000000000000000000000000000000000000000000000000000000000f500000000000000000000000000000000000000000000000000000000000000a20000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000008e00000000000000000000000000000000000000000000000000000000000000b5000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000b400000000000000000000000000000000000000000000000000000000000000e2000000000000000000000000000000000000000000000000000000000000006d000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000ec000000000000000000000000000000000000000000000000000000000000005f000000000000000000000000000000000000000000000000000000000000002d00000000000000000000000000000000000000000000000000000000000000d6000000000000000000000000000000000000000000000000000000000000009b000000000000000000000000000000000000000000000000000000000000005300000000000000000000000000000000000000000000000000000000000000a100000000000000000000000000000000000000000000000000000000000000b300000000000000000000000000000000000000000000000000000000000000fe000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000009b00000000000000000000000000000000000000000000000000000000000000c9000000000000000000000000000000000000000000000000000000000000007b00000000000000000000000000000000000000000000000000000000000000470000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000003d000000000000000000000000000000000000000000000000000000000000008b000000000000000000000000000000000000000000000000000000000000002100000000000000000000000000000000000000000000000000000000000000950000000000000000000000000000000000000000000000000000000000000054000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000f4000000000000000000000000000000000000000000000000000000000000009c00000000000000000000000000000000000000000000000000000000000000a200000000000000000000000000000000000000000000000000000000000000560000000000000000000000000000000000000000000000000000000000000094000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000e8000000000000000000000000000000000000000000000000000000000000007a0000000000000000000000000000000000000000000000000000000000000067000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cb00000000000000000000000000000000000000000000000000000000000000dc000000000000000000000000000000000000000000000000000000000000001d'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.507Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:44.508Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:44.508Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:44.509Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:57:44.510Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:44.531Z"} +{"level":"debug","message":"Returning 1 notes for 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1935a42b87d052c51d6609ddc545231a2c918802eb7abaa20398e7d58490390a:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:57:44.531Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:44.541Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:44.565Z"} +{"level":"debug","message":"Calling private function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:42eb947f from 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:57:44.565Z"} +{"level":"debug","message":"Executing external function 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:57:44.567Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:44.570Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:44.572Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:44.575Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:44.576Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:44.577Z"} +{"level":"debug","message":"Returning from call to 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:57:44.582Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:57:44.696Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:44.696Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:44.696Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-16T01:57:44.736Z"} +{"level":"debug","message":"No new blocks to process, current block number: 16","namespace":"aztec:archiver","timestamp":"2023-12-16T01:57:44.737Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-16T01:57:44.748Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-16T01:57:44.749Z"} +{"circuitName":"private-kernel-init","duration":175.2409890294075,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T01:57:44.931Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:57:44.931Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-16T01:57:44.948Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-16T01:57:44.948Z"} +{"circuitName":"private-kernel-inner","duration":251.5430690050125,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T01:57:45.209Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:57:45.209Z"} +{"circuitName":"private-kernel-ordering","duration":106.8078870177269,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T01:57:45.326Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:57:45.326Z"} +{"level":"info","message":"Simulating tx 0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82","namespace":"aztec:node","timestamp":"2023-12-16T01:57:45.326Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000005: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000005, 0x00000000000000000000000000000000000000000000000000000000657d0416)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T01:57:45.335Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:45.336Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:45.336Z"} +{"level":"debug","message":"Processing tx 0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T01:57:45.442Z"} +{"level":"info","message":"Simulated tx 0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T01:57:45.442Z"} +{"level":"info","message":"Executed local simulation for 0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:45.443Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2001f603e53857cee140a1663898e694a39acb66d659d1b5d54895319e60e69b4290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb820981ebc24b933649768c3662dc629a99cdea633b7f7251fc24d49dd3a7af146d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f08d67805c3f197c4328dc389d48130b7b7f1287b8affdcc78d5034a07b758e11d966d3e77f5f88ad572920c5af28f4233a7eb526d8ef41c10442ca7b5e9d362482be5f4354824f9fbd11cada317a7a926767ee214920c18a92ebc7f531c72b664bc1835dcc0d45d6f2c23eb6419a4964b80b24f1cc4ff5d62c8e93c1b5ed2cd7ed1d2a768859e1081ac6ebad49bee778db6b7b8988c89da416244331a661a8695cf5b45d373a0339ed54353308cef79842486d6a51be0b07eaac1ede1304a0c0518606e9be6d91d703101906afe7a3bd12f140782ed66752622d3f2e3f3ae3d916d5ba0b6b838e864b2a986d7b258c254',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:45.443Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2001f603e53857cee140a1663898e694a39acb66d659d1b5d54895319e60e69b4290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb820981ebc24b933649768c3662dc629a99cdea633b7f7251fc24d49dd3a7af146d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f08d67805c3f197c4328dc389d48130b7b7f1287b8affdcc78d5034a07b758e11d966d3e77f5f88ad572920c5af28f4233a7eb526d8ef41c10442ca7b5e9d362482be5f4354824f9fbd11cada317a7a926767ee214920c18a92ebc7f531c72b664bc1835dcc0d45d6f2c23eb6419a4964b80b24f1cc4ff5d62c8e93c1b5ed2cd7ed1d2a768859e1081ac6ebad49bee778db6b7b8988c89da416244331a661a8695cf5b45d373a0339ed54353308cef79842486d6a51be0b07eaac1ede1304a0c0518606e9be6d91d703101906afe7a3bd12f140782ed66752622d3f2e3f3ae3d916d5ba0b6b838e864b2a986d7b258c254',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:45.451Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:45.452Z"} +{"level":"info","message":"Sending transaction 0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:45.452Z"} +{"level":"info","message":"Received tx 0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82","namespace":"aztec:node","timestamp":"2023-12-16T01:57:45.452Z"} +{"encryptedLogCount":1,"encryptedLogSize":256,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10113,"timestamp":"2023-12-16T01:57:45.452Z","txHash":"0x0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:45.452Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:45.456Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:45.456Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:45.457Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:45.738Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000005: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000005, 0x00000000000000000000000000000000000000000000000000000000657d0416)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T01:57:45.747Z"} +{"level":"info","message":"Building block 5 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:45.748Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:45.749Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:45.749Z"} +{"level":"debug","message":"Processing tx 0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T01:57:45.751Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:45.751Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:45.752Z"} +{"level":"debug","message":"Assembling block with txs 0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:45.752Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000005","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:45.752Z"} +{"level":"debug","message":"Running base rollup for 0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:45.752Z"} +{"circuitName":"base-rollup","duration":1667.3467919826508,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T01:57:47.786Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:47.786Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:47.788Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:47.788Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:47.789Z"} +{"circuitName":"base-rollup","duration":1566.972226023674,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T01:57:49.678Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:49.679Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:49.680Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:49.681Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:49.682Z"} +{"circuitName":"root-rollup","duration":87.47139698266983,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T01:57:49.792Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:49.792Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:49.809Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:49.809Z"} +{"blockNumber":5,"duration":4073.779464006424,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-built","level":"debug","message":"Assembled block 5","namespace":"aztec:sequencer","publicProcessDuration":0.9003639817237854,"rollupCircuitsDuration":4059.0234810113907,"timestamp":"2023-12-16T01:57:49.811Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash 61f178b94696468b3765292eaa6b0523cd406f3c063aab495ba5eede60941d3f","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:49.812Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T01:57:49.812Z"} +{"level":"debug","message":"Successfully published new contract data for block 5","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:49.826Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:50.687Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:50.687Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:50.688Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:50.696Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:50.696Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T01:57:50.700Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 5","namespace":"aztec:archiver","timestamp":"2023-12-16T01:57:50.700Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 5","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T01:57:50.700Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T01:57:50.701Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:50.800Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:50.800Z"} +{"level":"debug","message":"Block 5 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:50.800Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:50.802Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:50.802Z"} +{"level":"debug","message":"Synched to block 5","namespace":"aztec:p2p","timestamp":"2023-12-16T01:57:50.818Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 20 root 0x252301ae6e5312ba94e19bfbb9fa43ab7cb538b6a19ab8da4dd7f12863a022d0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:50.833Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1408 root 0x0e6cb7826e3b06833943c47edbaafd80abc4698713e1fd7ed2a247b888fb0c55","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:50.833Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1280 root 0x051a356be084ce35d737acd442baa097bde8698b14ebe73f50b1e4d746afa0c1","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:50.833Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 352 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:50.833Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 80 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:50.834Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 6 root 0x2679d95ebb2c564f080426eafc78270aba2142f76186a032d1a2c78d0eeb96ba","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:50.834Z"} +{"blockNumber":5,"duration":60.919532001018524,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T01:57:50.861Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":5,"calldataGas":97608,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"rollup-published-to-l1","gasPrice":"1610341249","gasUsed":"380615","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T01:57:50.897Z","transactionHash":"0x449b3373d4085dcfcbeb79ca029b3685e0f84a81c1c7df42b4c8009beeedd299","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 5","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:50.898Z"} +{"level":"info","message":"Submitted rollup block 5 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:50.898Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:51.682Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:51.682Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:51.682Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:51.683Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T01:57:51.685Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T01:57:51.712Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:51.725Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:51.727Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:51.754Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:51.754Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:51.755Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:51.755Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82',\n status: 'mined',\n error: '',\n blockHash: '7117de7f8ae6f638419834f150ae557c9ffbf339c4ba6e04a75afb79069a61b2',\n blockNumber: 5,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:51.773Z"} +{"level":"debug","message":"No new blocks to process, current block number: 18","namespace":"aztec:archiver","timestamp":"2023-12-16T01:57:51.775Z"} +{"level":"debug","message":"Added note for contract 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a at slot 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43 with nullifier 0x2c3de6c0c07940beae6f1b748c6df2e2989e0c14bcdb08d4eb22758d8b3daae0","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:57:51.775Z"} +{"level":"debug","message":"Synched block 5","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:57:51.776Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:51.778Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:51.778Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 4,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 5,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 4,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 4\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:51.778Z"} +{"level":"debug","message":"Synched block 5","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:57:51.778Z"} +{"level":"debug","message":"Synched block 5","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:57:51.780Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:51.898Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:52.780Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:52.780Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:52.781Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:52.781Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0de2b49832a77f1848a99181f2376c4f2c6877339d5b8a3343561094afbdfb82',\n status: 'mined',\n error: '',\n blockHash: '7117de7f8ae6f638419834f150ae557c9ffbf339c4ba6e04a75afb79069a61b2',\n blockNumber: 5,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:52.793Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:52.795Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:52.795Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 5,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 5,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 5,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 5\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:52.795Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:52.797Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:52.797Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a00000000000000000000000000000000000000000000000020bfd4ee5f1443a9a94d3cc151851291e50f8fb8579b0f539475050a9e51416c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:52.798Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b937889ba10001001fee1c9fd0a5a544cf56c354610e154fd5530c45152ecd803adf401caf1d0cb80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000500000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9208bb4d339d69f6ec4da9c284ce2dff08b3406cb2acd4aa75b49917e2a6b4a1800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011208bb4d339d69f6ec4da9c284ce2dff08b3406cb2acd4aa75b49917e2a6b4a180000000000000000000000000000000000000000000000000000000042eb947f0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080a41cbb927abe1422d41c8b9de03df4ec9d0414430e8e2670fafb64676c6f31fee1c9fd0a5a544cf56c354610e154fd5530c45152ecd803adf401caf1d0cb8000000010f3403302d59e8203d07f5397b8178c5a0bafe974c5c95ba22716c1eeb31d95600000040000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000004100000000000000000000000000000000000000000000000000000000000000ee000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000c300000000000000000000000000000000000000000000000000000000000000ea0000000000000000000000000000000000000000000000000000000000000077000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000000000000000000000000000000000000000001d0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000e200000000000000000000000000000000000000000000000000000000000000de000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000000000000000000000000000000000000000007900000000000000000000000000000000000000000000000000000000000000370000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000008a000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000bf000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000005d000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000000000000000000000000000000000000000c500000000000000000000000000000000000000000000000000000000000000f3000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000f1000000000000000000000000000000000000000000000000000000000000003a00000000000000000000000000000000000000000000000000000000000000a8000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000b6000000000000000000000000000000000000000000000000000000000000006d000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000a900000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000000087000000000000000000000000000000000000000000000000000000000000005400000000000000000000000000000000000000000000000000000000000000ef00000000000000000000000000000000000000000000000000000000000000b800000000000000000000000000000000000000000000000000000000000000d700000000000000000000000000000000000000000000000000000000000000ee000000000000000000000000000000000000000000000000000000000000009700000000000000000000000000000000000000000000000000000000000000cb0000000000000000000000000000000000000000000000000000000000000069000000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000000000ef000000000000000000000000000000000000000000000000000000000000008200000000000000000000000000000000000000000000000000000000000000a30000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000003600000000000000000000000000000000000000000000000000000000000000a5000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000da000000000000000000000000000000000000000000000000000000000000008d0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008b000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000b6'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:52.810Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:52.810Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:52.810Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:52.811Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:57:52.811Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:52.829Z"} +{"level":"debug","message":"Returning 1 notes for 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x2777464fe2efe81140b375ef09ccf63b7ee5b136897294e8a9ead5b585ba4a57:[0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a8,0x1570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257,0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:57:52.830Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:52.840Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:52.864Z"} +{"level":"debug","message":"Calling private function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:42eb947f from 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:57:52.864Z"} +{"level":"debug","message":"Executing external function 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:57:52.866Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:52.870Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:52.871Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:52.874Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:52.875Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:57:52.876Z"} +{"level":"debug","message":"Returning from call to 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:57:52.880Z"} +{"level":"debug","message":"Returning from call to 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:57:52.982Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:52.982Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:52.982Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 5","namespace":"aztec:node","timestamp":"2023-12-16T01:57:52.990Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 5","namespace":"aztec:node","timestamp":"2023-12-16T01:57:53.000Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 5","namespace":"aztec:node","timestamp":"2023-12-16T01:57:53.000Z"} +{"circuitName":"private-kernel-init","duration":168.22878503799438,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T01:57:53.175Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:57:53.175Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 5","namespace":"aztec:node","timestamp":"2023-12-16T01:57:53.184Z"} +{"circuitName":"private-kernel-inner","duration":210.23876702785492,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T01:57:53.397Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:57:53.397Z"} +{"circuitName":"private-kernel-ordering","duration":109.05813300609589,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T01:57:53.516Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:57:53.516Z"} +{"level":"info","message":"Simulating tx 2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b","namespace":"aztec:node","timestamp":"2023-12-16T01:57:53.517Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000006: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000006, 0x00000000000000000000000000000000000000000000000000000000657d041e)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T01:57:53.522Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:53.523Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:53.523Z"} +{"level":"debug","message":"Processing tx 2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T01:57:53.628Z"} +{"level":"info","message":"Simulated tx 2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b succeeds","namespace":"aztec:node","timestamp":"2023-12-16T01:57:53.628Z"} +{"level":"info","message":"Executed local simulation for 2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:53.629Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2001a3a58db3381bb922aa332ea21c0bb3a911d0b326fe951a57ee3b7df472105420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b2672be0113ac92ad1b60c0fdff7cf022ba0147acfcb9c7f779b65eaa76d2fa960000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f097afd54fbbb9449eef5afffcd4f4647a909f673d25d0f5272016e03a3f66f68d93f976602dee7fba8c082b16452afaece9ed41918d81569d9ab4c28ee4b7a8e88e956e95b326998dc4ae8419df07e168fdb9254ba3a9a47d9bf69712cfbc4a79e8a85a11c1e453caf5b26586232f1a417efea51a52dab67c459862a2c01f9cad310f6261a363cc71638805932dae4d71312a0f615c2cf0687d4ebfa8d2d64ff781a843ae0d00b83b2cffff4328fce44708ceb1b5546832d255cd89f658b3aafd24f0c227f3490e75049ee13bc3b872fb265cbbf6914db8f4fb26bdd71034d2d031d142594066511322e275a3a5ca7003',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:53.629Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2001a3a58db3381bb922aa332ea21c0bb3a911d0b326fe951a57ee3b7df472105420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b2672be0113ac92ad1b60c0fdff7cf022ba0147acfcb9c7f779b65eaa76d2fa960000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f097afd54fbbb9449eef5afffcd4f4647a909f673d25d0f5272016e03a3f66f68d93f976602dee7fba8c082b16452afaece9ed41918d81569d9ab4c28ee4b7a8e88e956e95b326998dc4ae8419df07e168fdb9254ba3a9a47d9bf69712cfbc4a79e8a85a11c1e453caf5b26586232f1a417efea51a52dab67c459862a2c01f9cad310f6261a363cc71638805932dae4d71312a0f615c2cf0687d4ebfa8d2d64ff781a843ae0d00b83b2cffff4328fce44708ceb1b5546832d255cd89f658b3aafd24f0c227f3490e75049ee13bc3b872fb265cbbf6914db8f4fb26bdd71034d2d031d142594066511322e275a3a5ca7003',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:53.636Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:53.636Z"} +{"level":"info","message":"Sending transaction 2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:57:53.637Z"} +{"level":"info","message":"Received tx 2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b","namespace":"aztec:node","timestamp":"2023-12-16T01:57:53.637Z"} +{"encryptedLogCount":1,"encryptedLogSize":256,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10113,"timestamp":"2023-12-16T01:57:53.637Z","txHash":"0x2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:53.637Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:53.639Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:53.639Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:53.641Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:53.992Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000006: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000006, 0x00000000000000000000000000000000000000000000000000000000657d041e)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T01:57:53.997Z"} +{"level":"info","message":"Building block 6 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:53.998Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:53.998Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 5","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:53.998Z"} +{"level":"debug","message":"Processing tx 2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T01:57:54.001Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:54.001Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:54.002Z"} +{"level":"debug","message":"Assembling block with txs 2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:54.002Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000006","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:54.002Z"} +{"level":"debug","message":"Running base rollup for 2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:54.002Z"} +{"circuitName":"base-rollup","duration":1622.4178050160408,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T01:57:55.972Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:55.973Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:55.974Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:55.974Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:55.975Z"} +{"circuitName":"base-rollup","duration":1755.224525988102,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T01:57:58.051Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:58.052Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:58.053Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:58.053Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:58.054Z"} +{"circuitName":"root-rollup","duration":87.43138802051544,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T01:57:58.165Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T01:57:58.165Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:58.181Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:58.181Z"} +{"blockNumber":6,"duration":4191.844829976559,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-built","level":"debug","message":"Assembled block 6","namespace":"aztec:sequencer","publicProcessDuration":1.058903992176056,"rollupCircuitsDuration":4180.799116015434,"timestamp":"2023-12-16T01:57:58.183Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash c1eae400c935c6ee815f0404404d15d0eeab33844ba1974d5e7ada32eb61174f","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:58.184Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T01:57:58.184Z"} +{"level":"debug","message":"Successfully published new contract data for block 6","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:58.197Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:59.058Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:59.059Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:57:59.061Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:59.070Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:59.070Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T01:57:59.074Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 6","namespace":"aztec:archiver","timestamp":"2023-12-16T01:57:59.074Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 6","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T01:57:59.075Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T01:57:59.075Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:59.174Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:59.174Z"} +{"level":"debug","message":"Block 6 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:59.174Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:59.175Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:57:59.175Z"} +{"level":"debug","message":"Synched to block 6","namespace":"aztec:p2p","timestamp":"2023-12-16T01:57:59.188Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 24 root 0x252301ae6e5312ba94e19bfbb9fa43ab7cb538b6a19ab8da4dd7f12863a022d0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:59.200Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1664 root 0x1fcf23182bb98e92ec496b59bfbdda0fba5fa2ddd8a535c4bdcfaa3fa63ee9c0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:59.200Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1536 root 0x0ca61e84452bb32b6c35994d56f93496e5b925f920ca7ede67649d787fbb4e83","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:59.200Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 416 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:59.200Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 96 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:59.200Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 7 root 0x1f7c112db76b900836a7354db358dcde88aeb648c162eb2a9e718d498457a601","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T01:57:59.200Z"} +{"blockNumber":6,"duration":50.853862047195435,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T01:57:59.225Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":6,"calldataGas":97620,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"rollup-published-to-l1","gasPrice":"1584808330","gasUsed":"380627","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T01:57:59.262Z","transactionHash":"0xe6c8330cb127607e6cf8b6380411fe1ac248168cbd6eb3f79971bd8de67411f7","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 6","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:59.262Z"} +{"level":"info","message":"Submitted rollup block 6 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:57:59.262Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:58:00.052Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:58:00.053Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:58:00.053Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:58:00.053Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T01:58:00.055Z"} +{"level":"debug","message":"Synched block 6","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:58:00.060Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T01:58:00.077Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:00.087Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:00.088Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:00.107Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:00.107Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:58:00.108Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:58:00.108Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b',\n status: 'mined',\n error: '',\n blockHash: 'fc83e02adcc831e28921a01f058b3cb14c60d8488fbd51b3eeb7a1f1183a1a8b',\n blockNumber: 6,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:00.139Z"} +{"level":"debug","message":"No new blocks to process, current block number: 20","namespace":"aztec:archiver","timestamp":"2023-12-16T01:58:00.144Z"} +{"level":"debug","message":"Added note for contract 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a at slot 0x2d2bf38578928178a0053c369926cae62dc58e54a5e92a5922f73c3094c148d0 with nullifier 0x0c6f8021835ff47b97c2294a13093c02fb746ce020f0a6ededdba810e615a8a1","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:58:00.145Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:00.148Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:00.148Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 5,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 6,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 5,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 5\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:00.148Z"} +{"level":"debug","message":"Synched block 6","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:58:00.149Z"} +{"level":"debug","message":"Synched block 6","namespace":"aztec:note_processor","timestamp":"2023-12-16T01:58:00.151Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T01:58:00.262Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:01.152Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:01.152Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:58:01.153Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 6","namespace":"aztec:l2_block","timestamp":"2023-12-16T01:58:01.153Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2c851d535296a0d06028a7e6b5481e64500e7285103a67b85446872b963c2d7b',\n status: 'mined',\n error: '',\n blockHash: 'fc83e02adcc831e28921a01f058b3cb14c60d8488fbd51b3eeb7a1f1183a1a8b',\n blockNumber: 6,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:01.167Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:01.170Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:01.170Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 6,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 6,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 6,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 6\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:01.170Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:01.174Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:01.174Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a00000000000000000000000000000000000000000000000020bfd4ee5f1443a9a94d3cc151851291e50f8fb8579b0f539475050a9e51416c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:01.175Z"} +{"level":"debug","message":"JsonProxy:call proveInit [\n {\n type: 'TxExecutionRequest',\n data: '26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c37889ba10001001286fd5b492417444b1f4365f6b80b96da384771592b9280e533d4cf3ee6f8960000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000050000000126fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c048087fa6f786dffc982a89868d25f5cd9dfae666fa008f57f46a392f8f0024b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011048087fa6f786dffc982a89868d25f5cd9dfae666fa008f57f46a392f8f0024b0000000000000000000000000000000000000000000000000000000016cf6ba90780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001112974de74ffb30f152c78ecb6bce0df49596bb2a38b2a89cf37f24b7c08c8821286fd5b492417444b1f4365f6b80b96da384771592b9280e533d4cf3ee6f896000000010da7505d7744c66d89b4b9348aa516658aebc344a746c1f8f474fb492ff37fc100000040000000000000000000000000000000000000000000000000000000000000002b000000000000000000000000000000000000000000000000000000000000003b000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000580000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000f4000000000000000000000000000000000000000000000000000000000000005300000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000000000068000000000000000000000000000000000000000000000000000000000000003f00000000000000000000000000000000000000000000000000000000000000d4000000000000000000000000000000000000000000000000000000000000005200000000000000000000000000000000000000000000000000000000000000cf000000000000000000000000000000000000000000000000000000000000002b00000000000000000000000000000000000000000000000000000000000000bf00000000000000000000000000000000000000000000000000000000000000690000000000000000000000000000000000000000000000000000000000000088000000000000000000000000000000000000000000000000000000000000006d000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000098000000000000000000000000000000000000000000000000000000000000007300000000000000000000000000000000000000000000000000000000000000b2000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000003600000000000000000000000000000000000000000000000000000000000000d4000000000000000000000000000000000000000000000000000000000000009d00000000000000000000000000000000000000000000000000000000000000c6000000000000000000000000000000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000be000000000000000000000000000000000000000000000000000000000000009a00000000000000000000000000000000000000000000000000000000000000e700000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000df00000000000000000000000000000000000000000000000000000000000000dd0000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000005f000000000000000000000000000000000000000000000000000000000000002500000000000000000000000000000000000000000000000000000000000000fd000000000000000000000000000000000000000000000000000000000000005b00000000000000000000000000000000000000000000000000000000000000bc00000000000000000000000000000000000000000000000000000000000000b800000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000db00000000000000000000000000000000000000000000000000000000000000870000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000002d00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000d5000000000000000000000000000000000000000000000000000000000000009c00000000000000000000000000000000000000000000000000000000000000a1000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000000000000000073000000000000000000000000000000000000000000000000000000000000004d00000000000000000000000000000000000000000000000000000000000000de00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000006c0000000000000000000000000000000000000000000000000000000000000017000000000000000000000000000000000000000000000000000000000000004900000000000000000000000000000000000000000000000000000000000000b1000000000000000000000000000000000000000000000000000000000000009f'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:01.193Z"} +{"level":"debug","message":"JsonProxy:call proveInit <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T01:58:01.193Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:58:01.193Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:58:01.194Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:58:01.194Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.212Z"} +{"level":"debug","message":"Returning 1 notes for 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1935a42b87d052c51d6609ddc545231a2c918802eb7abaa20398e7d58490390a:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:58:01.212Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.222Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.246Z"} +{"level":"debug","message":"Calling private function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:16cf6ba9 from 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:58:01.247Z"} +{"level":"debug","message":"Executing external function 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a:16cf6ba9","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:58:01.251Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.257Z"} +{"level":"debug","message":"Returning 1 notes for 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a at 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43: 0x1d8d7ec3271cf8cf283f64cc289ad6f900cb2c866250c69ba13a1b45a517e305:[0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000000000000000000000000002]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:58:01.258Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.273Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.274Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.278Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.280Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.281Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.282Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.283Z"} +{"level":"debug","message":"Returning 1 notes for 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a at 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43: 0x0000000000000000000000000000000000000000000000000000000000000000:[0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000000000000000000000000002]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T01:58:01.283Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.297Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.298Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.302Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.305Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.305Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T01:58:01.306Z"} +{"level":"debug","message":"Returning from call to 0x0780abb9ff1bad6483924aa1ec9fb492e8024fd8760358cf05a9ee42925b098a:16cf6ba9","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:58:01.313Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T01:58:01.416Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:58:01.416Z"} +{"level":"debug","message":"Executing kernel prover for single init proof...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:58:01.416Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 6","namespace":"aztec:node","timestamp":"2023-12-16T01:58:01.427Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 6","namespace":"aztec:node","timestamp":"2023-12-16T01:58:01.429Z"} +{"circuitName":"private-kernel-init","duration":172.97231996059418,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T01:58:01.604Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T01:58:01.604Z"} +{"level":"debug","message":"Successfully executed and proved Kernel init proof iteration","namespace":"aztec:pxe_service","timestamp":"2023-12-16T01:58:01.613Z"} +{"level":"info","message":"Shutting down...","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:08.024Z"} +{"level":"debug","message":"Stopped","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T02:15:08.041Z"} +{"level":"info","message":"Stopped","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:08.042Z"} +{"level":"info","message":"Stopping","namespace":"aztec:node","timestamp":"2023-12-16T02:15:08.042Z"} +{"level":"debug","message":"Stopped sequencer","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:08.054Z"} +{"level":"debug","message":"Stopping p2p client...","namespace":"aztec:p2p","timestamp":"2023-12-16T02:15:08.054Z"} +{"level":"debug","message":"Moved to state STOPPED","namespace":"aztec:p2p","timestamp":"2023-12-16T02:15:08.126Z"} +{"level":"debug","message":"Stopping world state...","namespace":"aztec:world_state","timestamp":"2023-12-16T02:15:08.126Z"} +{"level":"info","message":"Debug logs will be written to /home/jpag/Workground/aztec/aztec-packages/log/aztec-sandbox.debug.log","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:31.439Z"} +{"level":"info","message":"Setting up Aztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c), please stand by...","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:31.441Z"} +{"level":"debug","message":"Deploying contracts...","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:31.617Z"} +{"level":"debug","message":"Deployed Registry at 0xc6e7df5e7b4f2a278906862b61205850344d4e7d","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:31.665Z"} +{"level":"debug","message":"Deployed Inbox at 0x59b670e9fa9d0a427751af201d676719a970857b","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:31.693Z"} +{"level":"debug","message":"Deployed Outbox at 0x4ed7c70f96b99c776995fb64377f0d4ab3b0e1c1","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:31.714Z"} +{"level":"debug","message":"Deployed Rollup at 0x322813fd9a801c5507c9de605d63cea4f2ce6c44","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:31.739Z"} +{"level":"debug","message":"Deployed contract deployment emitter at 0x4a679253410272dd5232b3ff7cf5dbb88f295319","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:31.760Z"} +{"level":"debug","message":"Opening temporary databases","namespace":"aztec:node","timestamp":"2023-12-16T02:15:31.760Z"} +{"level":"debug","message":"Rollup contract address has changed, clearing databases","namespace":"aztec:node","timestamp":"2023-12-16T02:15:31.765Z"} +{"level":"debug","message":"Performing initial chain sync...","namespace":"aztec:archiver","timestamp":"2023-12-16T02:15:31.769Z"} +{"level":"debug","message":"No current L2 block number found in db, starting from 0","namespace":"aztec:world_state","timestamp":"2023-12-16T02:15:32.273Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:p2p","timestamp":"2023-12-16T02:15:32.273Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:world_state","timestamp":"2023-12-16T02:15:32.273Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:world_state","timestamp":"2023-12-16T02:15:32.273Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:world_state","timestamp":"2023-12-16T02:15:32.274Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:p2p","timestamp":"2023-12-16T02:15:32.274Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:p2p","timestamp":"2023-12-16T02:15:32.274Z"} +{"level":"debug","message":"Initialized sequencer with 1-32 txs per block.","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:32.278Z"} +{"level":"debug","message":"Sequencer started","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:32.278Z"} +{"level":"debug","message":"Started Aztec Node against chain 0x7a69 with contracts - \nRollup: 0x322813fd9a801c5507c9de605d63cea4f2ce6c44\nRegistry: 0xc6e7df5e7b4f2a278906862b61205850344d4e7d\nInbox: 0x59b670e9fa9d0a427751af201d676719a970857b\nOutbox: 0x4ed7c70f96b99c776995fb64377f0d4ab3b0e1c1\nContract Emitter: 0x4a679253410272dd5232b3ff7cf5dbb88f295319","namespace":"aztec:node","timestamp":"2023-12-16T02:15:32.279Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-16T02:15:32.280Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-16T02:15:32.282Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-16T02:15:32.286Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-16T02:15:32.286Z"} +{"level":"debug","message":"Started","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T02:15:32.287Z"} +{"level":"info","message":"Started PXE connected to chain 31337 version 1","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.287Z"} +{"level":"info","message":"Setting up test accounts...","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:32.288Z"} +{"level":"info","message":"Registered account 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.440Z"} +{"level":"debug","message":"Registered account\n Address: 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n Partial Address: 0x284e333701fbf6b040cdd45feeaadc23505e90e4714af8471387b20fee13e541\n","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.440Z"} +{"level":"info","message":"Registered account 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.440Z"} +{"level":"debug","message":"Registered account\n Address: 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n Partial Address: 0x0bdef5c62eaf9c17bbf24fd1f2e469c6fe96ccea0513931287f758e0234d249b\n","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.441Z"} +{"level":"info","message":"Registered account 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.441Z"} +{"level":"debug","message":"Registered account\n Address: 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n Partial Address: 0x0c8ef4391be038949491a6f64cf0e3c66f0e8517d62be4abf3432cf6061ea2a9\n","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.441Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.567Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.568Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.568Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.571Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.573Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.573Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.577Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.578Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.578Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:32.578Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:32.580Z"} +{"level":"debug","message":"Executing external function 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:32.580Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:32.667Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:32.672Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:32.678Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:32.678Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:32.679Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:32.679Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:32.681Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:32.684Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:32.686Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:32.706Z"} +{"level":"debug","message":"Returning from call to 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:32.710Z"} +{"level":"debug","message":"Returning from call to 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:32.714Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.714Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.714Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.714Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.714Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.716Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:32.717Z"} +{"circuitName":"private-kernel-init","duration":485.2997089624405,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T02:15:33.208Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:15:33.208Z"} +{"circuitName":"private-kernel-init","duration":462.70369404554367,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T02:15:33.210Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:15:33.210Z"} +{"circuitName":"private-kernel-init","duration":450.20100796222687,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T02:15:33.213Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:15:33.213Z"} +{"circuitName":"private-kernel-ordering","duration":325.6179389953613,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T02:15:33.569Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:15:33.569Z"} +{"circuitName":"private-kernel-ordering","duration":317.6045899987221,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T02:15:33.570Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:15:33.571Z"} +{"circuitName":"private-kernel-ordering","duration":311.15380799770355,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T02:15:33.571Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:15:33.572Z"} +{"level":"info","message":"Simulating tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-16T02:15:33.574Z"} +{"level":"info","message":"Simulating tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-16T02:15:33.574Z"} +{"level":"info","message":"Simulating tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-16T02:15:33.574Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T02:15:33.594Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T02:15:33.594Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T02:15:33.609Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T02:15:33.610Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T02:15:33.643Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T02:15:33.643Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:15:33.930Z"} +{"level":"info","message":"Simulated tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T02:15:33.931Z"} +{"level":"info","message":"Executed local simulation for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:33.931Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:15:33.933Z"} +{"level":"info","message":"Simulated tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe succeeds","namespace":"aztec:node","timestamp":"2023-12-16T02:15:33.933Z"} +{"level":"info","message":"Executed local simulation for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:33.933Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:15:33.935Z"} +{"level":"info","message":"Simulated tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T02:15:33.935Z"} +{"level":"info","message":"Executed local simulation for 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:33.935Z"} +{"level":"info","message":"Sending transaction 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:33.936Z"} +{"level":"info","message":"Sending transaction 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:33.936Z"} +{"level":"info","message":"Sending transaction 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:33.936Z"} +{"level":"info","message":"Received tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-16T02:15:33.936Z"} +{"level":"info","message":"Received tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-16T02:15:33.936Z"} +{"level":"info","message":"Received tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-16T02:15:33.936Z"} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-16T02:15:33.937Z","txHash":"0x1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-16T02:15:33.938Z","txHash":"0x2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-16T02:15:33.938Z","txHash":"0x1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"info","message":"Retrieved 3 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:34.581Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T02:15:34.587Z"} +{"level":"info","message":"Building block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:34.589Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T02:15:34.590Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:15:34.593Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:15:34.594Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:15:34.594Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:34.596Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:34.596Z"} +{"level":"debug","message":"Assembling block with txs 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09, 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61, 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:34.596Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000001","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:34.597Z"} +{"level":"debug","message":"Running base rollup for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:15:34.598Z"} +{"circuitName":"base-rollup","duration":1840.37805300951,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T02:15:36.898Z"} +{"level":"debug","message":"Running base rollup for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:15:36.899Z"} +{"circuitName":"base-rollup","duration":1680.1509619951248,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T02:15:38.966Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:15:38.967Z"} +{"circuitName":"root-rollup","duration":87.59226095676422,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T02:15:39.086Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:15:39.086Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:39.106Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:39.106Z"} +{"blockNumber":1,"duration":4538.490374982357,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-built","level":"debug","message":"Assembled block 1","namespace":"aztec:sequencer","publicProcessDuration":3.7425790429115295,"rollupCircuitsDuration":4519.754000008106,"timestamp":"2023-12-16T02:15:39.117Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Publishing extended contract data with block hash f4bc7c6af068d84e33c95b8fe50e0cd547dd0402a60c4e315e57252af6f6e2de","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:39.118Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T02:15:39.119Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T02:15:39.146Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T02:15:39.172Z"} +{"level":"debug","message":"Successfully published new contract data for block 1","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:39.199Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.015Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.015Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T02:15:40.024Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-16T02:15:40.025Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-16T02:15:40.025Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-16T02:15:40.025Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T02:15:40.025Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T02:15:40.048Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T02:15:40.049Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T02:15:40.050Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.096Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.096Z"} +{"level":"debug","message":"Block 1 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:40.097Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.101Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.101Z"} +{"level":"debug","message":"Synched to block 1","namespace":"aztec:p2p","timestamp":"2023-12-16T02:15:40.129Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 4 root 0x033dd64d21ae6a218161988396dea39a578ebd0876230b5a50b6d9fe594902fb","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:40.138Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 384 root 0x124183fff44e3f32d100260e8dd469ddc74d7463349b2f8f679fc7896212dc9e","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:40.139Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 256 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:40.139Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 96 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:40.139Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 16 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:40.139Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 2 root 0x1286435510bed8e37738413f6eaf29460d908bc7adffae01dcdae22ed20a5215","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:40.139Z"} +{"blockNumber":1,"duration":137.31780302524567,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T02:15:40.234Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"blockNumber":1,"calldataGas":110964,"calldataSize":22596,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"rollup-published-to-l1","gasPrice":"1523541868","gasUsed":"435023","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T02:15:40.274Z","transactionHash":"0x0fe37d1b405fbc0bec45b1fc9ba5ba61876132d88a7e85814aec40fed65279c0","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Successfully published block 1","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:40.274Z"} +{"level":"info","message":"Submitted rollup block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:40.274Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.970Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.970Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.972Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.972Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.977Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.977Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.998Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:40.998Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:41.009Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:41.009Z"} +{"level":"debug","message":"Forwarding 3 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T02:15:41.018Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T02:15:41.023Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:41.033Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:41.034Z"} +{"level":"debug","message":"Added note for contract 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x09b9ace7b2beea90afef773bbd468b98233a468d1ebe0f087b8a703ff861d500","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:15:41.051Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:15:41.053Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T02:15:41.057Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:41.067Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:41.068Z"} +{"level":"debug","message":"No new blocks to process, current block number: 30","namespace":"aztec:archiver","timestamp":"2023-12-16T02:15:41.076Z"} +{"level":"debug","message":"Added note for contract 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2f7fcae3f4b95db8ae047af7219fc01130ca5f432379b128f219320cb309000e","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:15:41.076Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:15:41.077Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T02:15:41.081Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:41.092Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:41.093Z"} +{"level":"debug","message":"Added note for contract 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2126b7cc255081f654a397c8b0abdcfc2220ff72f3cadf33781414fb7ced4d8a","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:15:41.099Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:15:41.099Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:41.275Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:41.998Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:41.998Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:42.019Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:42.019Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:42.031Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:42.031Z"} +{"level":"info","message":"Aztec Node JSON-RPC Server listening on port 8079","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:42.045Z"} +{"level":"info","message":"PXE JSON-RPC Server listening on port 8080","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:42.046Z"} +{"level":"info","message":"\n _\n /\\ | |\n / \\ ___| |_ ___ ___ \n / /\\ \\ |_ / __/ _ \\/ __|\n / ____ \\ / /| || __/ (__ \n/_/___ \\_\\/___|\\__\\___|\\___|\n\nhttps://github.com/AztecProtocol\n\nInitial Accounts:\n\n Address: 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c\n Partial Address: 0x284e333701fbf6b040cdd45feeaadc23505e90e4714af8471387b20fee13e541\n Private Key: 0x2153536ff6628eee01cf4024889ff977a18d9fa61d0e414422f7681cf085c281\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n\n Address: 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9\n Partial Address: 0x0bdef5c62eaf9c17bbf24fd1f2e469c6fe96ccea0513931287f758e0234d249b\n Private Key: 0x00aebd1b4be76efa44f5ee655c20bf9ea60f7ae44b9a7fd1fd9f189c7a0b0cda\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n\n Address: 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea\n Partial Address: 0x0c8ef4391be038949491a6f64cf0e3c66f0e8517d62be4abf3432cf6061ea2a9\n Private Key: 0x0f6addf0da06c33293df974a565b03d1ab096090d907d98055a8b7f4954e120c\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n\nAztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c) is now ready for use!","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:15:42.047Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.226Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.226Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x322813fd9a801c5507c9de605d63cea4f2ce6c44'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0xc6e7df5e7b4f2a278906862b61205850344d4e7d'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0x59b670e9fa9d0a427751af201d676719a970857b'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x4ed7c70f96b99c776995fb64377f0d4ab3b0e1c1'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x4a679253410272dd5232b3ff7cf5dbb88f295319'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.228Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.233Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.233Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x322813fd9a801c5507c9de605d63cea4f2ce6c44'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0xc6e7df5e7b4f2a278906862b61205850344d4e7d'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0x59b670e9fa9d0a427751af201d676719a970857b'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x4ed7c70f96b99c776995fb64377f0d4ab3b0e1c1'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x4a679253410272dd5232b3ff7cf5dbb88f295319'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.234Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.236Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.236Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x322813fd9a801c5507c9de605d63cea4f2ce6c44'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0xc6e7df5e7b4f2a278906862b61205850344d4e7d'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0x59b670e9fa9d0a427751af201d676719a970857b'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x4ed7c70f96b99c776995fb64377f0d4ab3b0e1c1'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x4a679253410272dd5232b3ff7cf5dbb88f295319'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.237Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.469Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.469Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x322813fd9a801c5507c9de605d63cea4f2ce6c44'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0xc6e7df5e7b4f2a278906862b61205850344d4e7d'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0x59b670e9fa9d0a427751af201d676719a970857b'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x4ed7c70f96b99c776995fb64377f0d4ab3b0e1c1'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x4a679253410272dd5232b3ff7cf5dbb88f295319'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.469Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.528Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.530Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:51.536Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.537Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b7490fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce0fea81d0a2d0e7afa826e13e84a9644453109d0b00201319df90bb1d61522da711d0e0c90d808c1947b5d1741079236e3e04621ce17595a56be9a25fbe35cc9a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.542Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.543Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:51.547Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:51.553Z"} +{"level":"debug","message":"Executing external function 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:51.554Z"} +{"level":"debug","message":"Returning from call to 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:51.560Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:51.560Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:51.560Z"} +{"circuitName":"private-kernel-init","duration":145.4251389503479,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T02:15:51.709Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:15:51.709Z"} +{"circuitName":"private-kernel-ordering","duration":108.35238200426102,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T02:15:51.829Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:15:51.829Z"} +{"level":"info","message":"Simulating tx 2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3","namespace":"aztec:node","timestamp":"2023-12-16T02:15:51.829Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000002: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000002, 0x00000000000000000000000000000000000000000000000000000000657d084e)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T02:15:51.836Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:51.837Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:51.837Z"} +{"level":"debug","message":"Processing tx 2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:15:51.959Z"} +{"level":"info","message":"Simulated tx 2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T02:15:51.960Z"} +{"level":"info","message":"Executed local simulation for 2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:51.960Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c31ceb9bdf7100c610a1719973dcab1abd91c1fe3406978e2db651d8ba4bdcd3180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b740000000000000000000000000000000000000000000000001fb6c2a28a801aefddad56e2ec9d6b757aef08ed583f92390d4ea9c046eaa60600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.963Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c31ceb9bdf7100c610a1719973dcab1abd91c1fe3406978e2db651d8ba4bdcd3180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.988Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.989Z"} +{"level":"info","message":"Sending transaction 2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:51.989Z"} +{"level":"info","message":"Received tx 2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3","namespace":"aztec:node","timestamp":"2023-12-16T02:15:51.989Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-16T02:15:51.989Z","txHash":"0x2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.990Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.992Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.993Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:51.994Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:52.283Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000002: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000002, 0x00000000000000000000000000000000000000000000000000000000657d084e)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T02:15:52.290Z"} +{"level":"info","message":"Building block 2 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:52.290Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:52.291Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:52.291Z"} +{"level":"debug","message":"Processing tx 2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:15:52.293Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:52.295Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:52.295Z"} +{"level":"debug","message":"Assembling block with txs 2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:52.295Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000002","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:52.295Z"} +{"level":"debug","message":"Running base rollup for 2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:15:52.296Z"} +{"circuitName":"base-rollup","duration":1685.2275149822235,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T02:15:54.380Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:15:54.380Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:54.384Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:54.384Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:54.385Z"} +{"circuitName":"base-rollup","duration":1581.8057619929314,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T02:15:56.301Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:15:56.301Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:56.303Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:56.303Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:56.304Z"} +{"circuitName":"root-rollup","duration":87.8945090174675,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T02:15:56.417Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:15:56.417Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:56.435Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:56.435Z"} +{"blockNumber":2,"duration":4160.0873259902,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 2","namespace":"aztec:sequencer","publicProcessDuration":1.0682969689369202,"rollupCircuitsDuration":4146.492651998997,"timestamp":"2023-12-16T02:15:56.442Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash 73ee2f6fefde64716d2ced9cd390da0c03ee05f199dc5de2237a9ce7222c4d4e","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:56.444Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T02:15:56.444Z"} +{"level":"debug","message":"Successfully published new contract data for block 2","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:56.461Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:57.311Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:57.311Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:57.312Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:57.327Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:57.327Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T02:15:57.333Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 2","namespace":"aztec:archiver","timestamp":"2023-12-16T02:15:57.333Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 2","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T02:15:57.334Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T02:15:57.334Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:57.435Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:57.435Z"} +{"level":"debug","message":"Block 2 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:57.435Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:57.436Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:57.436Z"} +{"level":"debug","message":"Synched to block 2","namespace":"aztec:p2p","timestamp":"2023-12-16T02:15:57.458Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 8 root 0x047258edc86e6713d32760f7abfc2c3642539dcbda486e6bad6911cd98462792","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:57.484Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 640 root 0x13af4754b8b11b5bc48f316c452bd02d4ba15a0ed16697040c0fbf2bd0ed14b4","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:57.484Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 512 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:57.484Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 160 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:57.484Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 32 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:57.484Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 3 root 0x224f82f44846f73823d839550537b6294f7d69ea5383f22deeb80bbbbcff28bb","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:15:57.484Z"} +{"blockNumber":2,"duration":54.97587901353836,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T02:15:57.490Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"blockNumber":2,"calldataGas":94028,"calldataSize":21860,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1518103767","gasUsed":"370830","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T02:15:57.543Z","transactionHash":"0x5d327fa2d01ea7dce6d1824b67c90fff3465b5dcc36ef53e739ff78e7dc7412e","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 2","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:57.544Z"} +{"level":"info","message":"Submitted rollup block 2 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:57.544Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:58.305Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:58.306Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:58.306Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:58.307Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T02:15:58.311Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:15:58.314Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.316Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.317Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:58.318Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:58.318Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '2a16eb679e4a83adfa234dc23751b3f6e2ecef3ddf106c211804b38cdc1ac4c3',\n status: 'mined',\n error: '',\n blockHash: '70d468cb6602525a9dafef638f120ad6b3f01a89edf017e80eb0a0b3d57b2b62',\n blockNumber: 2,\n contractAddress: '0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.342Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:15:58.343Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:15:58.344Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.346Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.346Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 2,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 2,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 2,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 2\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.346Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.349Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.349Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b740000000000000000000000000000000000000000000000001fb6c2a28a801aefddad56e2ec9d6b757aef08ed583f92390d4ea9c046eaa60600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.350Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.354Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.355Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b740000000000000000000000000000000000000000000000001fb6c2a28a801aefddad56e2ec9d6b757aef08ed583f92390d4ea9c046eaa60600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.355Z"} +{"level":"debug","message":"No new blocks to process, current block number: 32","namespace":"aztec:archiver","timestamp":"2023-12-16T02:15:58.357Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c37889ba10001000f7eaada3709e9b1ff0a6242fd33ef52eb20594cc1e3bb18e3e7c359f93026bd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000226fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c251b98366c4027425c5225bb2eb14ef04a9d492b1783ebcc6e64bf3c9c087c2800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011251b98366c4027425c5225bb2eb14ef04a9d492b1783ebcc6e64bf3c9c087c280000000000000000000000000000000000000000000000000000000042eb947f07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000128fa6713ad7bb189627e761a827fd6b8a7ce8233fece9314c75967547748899b0f7eaada3709e9b1ff0a6242fd33ef52eb20594cc1e3bb18e3e7c359f93026bd0000000117eca2003d3fbee4a42f899f10db16dad29463d45038561653364bd2ec9972e400000040000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000fb00000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006e00000000000000000000000000000000000000000000000000000000000000a900000000000000000000000000000000000000000000000000000000000000be0000000000000000000000000000000000000000000000000000000000000039000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000085000000000000000000000000000000000000000000000000000000000000002500000000000000000000000000000000000000000000000000000000000000f9000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000fd00000000000000000000000000000000000000000000000000000000000000be000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000f4000000000000000000000000000000000000000000000000000000000000004f00000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000004300000000000000000000000000000000000000000000000000000000000000720000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000000007e0000000000000000000000000000000000000000000000000000000000000031000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000ef00000000000000000000000000000000000000000000000000000000000000bb0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004300000000000000000000000000000000000000000000000000000000000000d60000000000000000000000000000000000000000000000000000000000000035000000000000000000000000000000000000000000000000000000000000009a00000000000000000000000000000000000000000000000000000000000000370000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000e3000000000000000000000000000000000000000000000000000000000000008600000000000000000000000000000000000000000000000000000000000000e30000000000000000000000000000000000000000000000000000000000000065000000000000000000000000000000000000000000000000000000000000005500000000000000000000000000000000000000000000000000000000000000f3000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000760000000000000000000000000000000000000000000000000000000000000087000000000000000000000000000000000000000000000000000000000000004500000000000000000000000000000000000000000000000000000000000000b700000000000000000000000000000000000000000000000000000000000000a2000000000000000000000000000000000000000000000000000000000000009b000000000000000000000000000000000000000000000000000000000000009700000000000000000000000000000000000000000000000000000000000000c1000000000000000000000000000000000000000000000000000000000000008d00000000000000000000000000000000000000000000000000000000000000d700000000000000000000000000000000000000000000000000000000000000e5000000000000000000000000000000000000000000000000000000000000008200000000000000000000000000000000000000000000000000000000000000a3000000000000000000000000000000000000000000000000000000000000008500000000000000000000000000000000000000000000000000000000000000ca00000000000000000000000000000000000000000000000000000000000000bf00000000000000000000000000000000000000000000000000000000000000d1'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.369Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:58.370Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:58.370Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:58.379Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:58.379Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:58.397Z"} +{"level":"debug","message":"Returning 1 notes for 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1935a42b87d052c51d6609ddc545231a2c918802eb7abaa20398e7d58490390a:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T02:15:58.398Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:58.408Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:58.448Z"} +{"level":"debug","message":"Calling private function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:42eb947f from 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T02:15:58.448Z"} +{"level":"debug","message":"Executing external function 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:58.451Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:58.455Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:58.456Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:58.460Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:58.460Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:15:58.461Z"} +{"level":"debug","message":"Returning from call to 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:58.466Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:15:58.582Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:58.582Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:58.582Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-16T02:15:58.622Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:58.622Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-16T02:15:58.632Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-16T02:15:58.632Z"} +{"circuitName":"private-kernel-init","duration":178.6923549771309,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T02:15:58.818Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:15:58.818Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-16T02:15:58.836Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-16T02:15:58.837Z"} +{"circuitName":"private-kernel-inner","duration":262.28326201438904,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T02:15:59.107Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:15:59.107Z"} +{"circuitName":"private-kernel-ordering","duration":108.43182897567749,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T02:15:59.226Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:15:59.226Z"} +{"level":"info","message":"Simulating tx 0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308","namespace":"aztec:node","timestamp":"2023-12-16T02:15:59.226Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000003: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000003, 0x00000000000000000000000000000000000000000000000000000000657d085d)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T02:15:59.235Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:59.236Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:59.236Z"} +{"level":"debug","message":"Processing tx 0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:15:59.341Z"} +{"level":"info","message":"Simulated tx 0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T02:15:59.342Z"} +{"level":"info","message":"Executed local simulation for 0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:59.342Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2002ff0ac3986c22009848e6986c55209b5917c45f3742e26ceb5d219efca53ac250000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab3081044a6ed0525594f442e6a8eec44617d79559b18ffe7202deb3d05db40577c600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f01dec7e1853f47d75cb95db37014732e788383523c67d90ac1844c4eb07b738b6fc5d7bdcf28053df5a4ea18486422825688fe2e5348ddd7477e6dec23767caa05b07d83dc8d6086fe26426ee6975fe1232f320c567d4897c2bc4551ef6ad4e2119aa7ef1cebbe5a79865aec13d926e83a7043aa7dada4f7d699613e3382c2d945e805ae7f8c9f46d13a62a391f11fcc81b5a91fa8bacc7ffd08680d632731a1f205f5498bd6928f425be2799c967c75b01bdffa7a7e24c672a5f20996662a97ecdbe9db8f0dad14891f401e5fe46446d1da7042cc83e7170a7c0f4eebf744ca001c68cb28b4837d24ecb26d99c38b11b',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:59.342Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2002ff0ac3986c22009848e6986c55209b5917c45f3742e26ceb5d219efca53ac250000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab3081044a6ed0525594f442e6a8eec44617d79559b18ffe7202deb3d05db40577c600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f01dec7e1853f47d75cb95db37014732e788383523c67d90ac1844c4eb07b738b6fc5d7bdcf28053df5a4ea18486422825688fe2e5348ddd7477e6dec23767caa05b07d83dc8d6086fe26426ee6975fe1232f320c567d4897c2bc4551ef6ad4e2119aa7ef1cebbe5a79865aec13d926e83a7043aa7dada4f7d699613e3382c2d945e805ae7f8c9f46d13a62a391f11fcc81b5a91fa8bacc7ffd08680d632731a1f205f5498bd6928f425be2799c967c75b01bdffa7a7e24c672a5f20996662a97ecdbe9db8f0dad14891f401e5fe46446d1da7042cc83e7170a7c0f4eebf744ca001c68cb28b4837d24ecb26d99c38b11b',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:59.349Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:59.350Z"} +{"level":"info","message":"Sending transaction 0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:15:59.350Z"} +{"level":"info","message":"Received tx 0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308","namespace":"aztec:node","timestamp":"2023-12-16T02:15:59.351Z"} +{"encryptedLogCount":1,"encryptedLogSize":256,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10113,"timestamp":"2023-12-16T02:15:59.351Z","txHash":"0x0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:59.351Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:59.354Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:59.354Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:15:59.355Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:59.624Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000003: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000003, 0x00000000000000000000000000000000000000000000000000000000657d085d)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T02:15:59.630Z"} +{"level":"info","message":"Building block 3 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:59.630Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:59.631Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:15:59.632Z"} +{"level":"debug","message":"Processing tx 0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:15:59.634Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:59.634Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:59.634Z"} +{"level":"debug","message":"Assembling block with txs 0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:59.634Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000003","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:15:59.635Z"} +{"level":"debug","message":"Running base rollup for 0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:15:59.635Z"} +{"circuitName":"base-rollup","duration":1658.6174319982529,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T02:16:01.640Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:16:01.640Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:01.642Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:01.642Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:01.643Z"} +{"circuitName":"base-rollup","duration":1592.8579950332642,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T02:16:03.546Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:16:03.546Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:03.548Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:03.548Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:03.549Z"} +{"circuitName":"root-rollup","duration":88.23934400081635,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T02:16:03.658Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:16:03.659Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:03.676Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:03.676Z"} +{"blockNumber":3,"duration":4053.8294069767,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-built","level":"debug","message":"Assembled block 3","namespace":"aztec:sequencer","publicProcessDuration":0.9527770280838013,"rollupCircuitsDuration":4042.4167790412903,"timestamp":"2023-12-16T02:16:03.677Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash 13e32623ce314612a5478de9edd0490a7477ba370695e71febd0862f330f4bc3","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:03.679Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T02:16:03.679Z"} +{"level":"debug","message":"Successfully published new contract data for block 3","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:03.693Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:04.554Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:04.554Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:04.555Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:04.562Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:04.562Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T02:16:04.566Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 3","namespace":"aztec:archiver","timestamp":"2023-12-16T02:16:04.567Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 3","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T02:16:04.567Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T02:16:04.567Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:04.666Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:04.666Z"} +{"level":"debug","message":"Block 3 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:04.666Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:04.667Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:04.667Z"} +{"level":"debug","message":"Synched to block 3","namespace":"aztec:p2p","timestamp":"2023-12-16T02:16:04.677Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 12 root 0x047258edc86e6713d32760f7abfc2c3642539dcbda486e6bad6911cd98462792","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:04.687Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 896 root 0x2942edcae8f27432505f31727c306315030b6cabb6be2dd205ad4b2cbdd64a9b","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:04.687Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 768 root 0x0c92790a511be6281e3f0f207221fb11022916cbba4078897f1ee86309287607","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:04.687Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 224 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:04.687Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 48 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:04.687Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 4 root 0x203ba88471757b77ef424267f158f563712e380279da752f4c7c30bc2c2e8651","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:04.687Z"} +{"blockNumber":3,"duration":48.66670000553131,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T02:16:04.715Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":3,"calldataGas":97608,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"rollup-published-to-l1","gasPrice":"1513913273","gasUsed":"380615","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T02:16:04.761Z","transactionHash":"0xec75c74542ae20765901851db31831362a88f47f17a7dac343d30e86dc2e01f3","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 3","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:04.761Z"} +{"level":"info","message":"Submitted rollup block 3 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:04.761Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:05.548Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:05.549Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:05.549Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:05.549Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T02:16:05.550Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T02:16:05.577Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:05.590Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:05.591Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:05.610Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:05.610Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:05.611Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:05.611Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308',\n status: 'mined',\n error: '',\n blockHash: 'bd6d47e658b4ec0ed80cb970bfbec97ecb08e221a5cc57670efcc4dbc6e8b9f7',\n blockNumber: 3,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:05.631Z"} +{"level":"debug","message":"No new blocks to process, current block number: 34","namespace":"aztec:archiver","timestamp":"2023-12-16T02:16:05.637Z"} +{"level":"debug","message":"Added note for contract 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74 at slot 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43 with nullifier 0x2ebcc313dd89f8af96efef067cf385db615e2919dd87b8786d955a3ffb4a8fcc","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:16:05.638Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:05.639Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:05.639Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 2,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 2,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 2,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 2\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:05.639Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:16:05.640Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:16:05.642Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:16:05.643Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:05.762Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:06.642Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:06.643Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:06.646Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:06.647Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '0edaf5ed450aac6cf57bfca401cb4ae9351e16ef979d976c7f38e56b12aab308',\n status: 'mined',\n error: '',\n blockHash: 'bd6d47e658b4ec0ed80cb970bfbec97ecb08e221a5cc57670efcc4dbc6e8b9f7',\n blockNumber: 3,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:06.658Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:06.663Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:06.664Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 3,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 3,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 3,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 3\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:06.664Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:06.667Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:06.667Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b740000000000000000000000000000000000000000000000001fb6c2a28a801aefddad56e2ec9d6b757aef08ed583f92390d4ea9c046eaa60600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:06.667Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b937889ba10001002142ae495d1ace237fac91551cd95f45024bd4a94bc1969771b0a587cfb0a3280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000500000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9208bb4d339d69f6ec4da9c284ce2dff08b3406cb2acd4aa75b49917e2a6b4a1800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011208bb4d339d69f6ec4da9c284ce2dff08b3406cb2acd4aa75b49917e2a6b4a180000000000000000000000000000000000000000000000000000000042eb947f07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001211f7b33ed39495552c2b80d2bc69b7827c267698a597f5e6fcfb991898c5c952142ae495d1ace237fac91551cd95f45024bd4a94bc1969771b0a587cfb0a328000000012f6810997f8459a8ef869b610dd31f66d802abcc6f86aacd969f8f2dfab9842d00000040000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000042000000000000000000000000000000000000000000000000000000000000009c0000000000000000000000000000000000000000000000000000000000000017000000000000000000000000000000000000000000000000000000000000009800000000000000000000000000000000000000000000000000000000000000a200000000000000000000000000000000000000000000000000000000000000a200000000000000000000000000000000000000000000000000000000000000d7000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000008300000000000000000000000000000000000000000000000000000000000000de000000000000000000000000000000000000000000000000000000000000008900000000000000000000000000000000000000000000000000000000000000c100000000000000000000000000000000000000000000000000000000000000ba000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000003d00000000000000000000000000000000000000000000000000000000000000f10000000000000000000000000000000000000000000000000000000000000027000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000f2000000000000000000000000000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000d9000000000000000000000000000000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000a300000000000000000000000000000000000000000000000000000000000000ce00000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d7000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000005800000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000005400000000000000000000000000000000000000000000000000000000000000e9000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000fd00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000008800000000000000000000000000000000000000000000000000000000000000f200000000000000000000000000000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000000000008d0000000000000000000000000000000000000000000000000000000000000071000000000000000000000000000000000000000000000000000000000000008800000000000000000000000000000000000000000000000000000000000000ec000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000002f00000000000000000000000000000000000000000000000000000000000000e40000000000000000000000000000000000000000000000000000000000000049000000000000000000000000000000000000000000000000000000000000006900000000000000000000000000000000000000000000000000000000000000fd00000000000000000000000000000000000000000000000000000000000000dd00000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000067000000000000000000000000000000000000000000000000000000000000008700000000000000000000000000000000000000000000000000000000000000ad0000000000000000000000000000000000000000000000000000000000000092000000000000000000000000000000000000000000000000000000000000007b00000000000000000000000000000000000000000000000000000000000000d700000000000000000000000000000000000000000000000000000000000000df0000000000000000000000000000000000000000000000000000000000000043'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:06.684Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:06.685Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:16:06.685Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:16:06.687Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:16:06.688Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:06.705Z"} +{"level":"debug","message":"Returning 1 notes for 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x2777464fe2efe81140b375ef09ccf63b7ee5b136897294e8a9ead5b585ba4a57:[0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a8,0x1570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257,0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T02:16:06.705Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:06.719Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:06.744Z"} +{"level":"debug","message":"Calling private function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:42eb947f from 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T02:16:06.744Z"} +{"level":"debug","message":"Executing external function 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:16:06.746Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:06.749Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:06.751Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:06.754Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:06.755Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:06.756Z"} +{"level":"debug","message":"Returning from call to 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:16:06.761Z"} +{"level":"debug","message":"Returning from call to 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:16:06.860Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:16:06.860Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:16:06.861Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-16T02:16:06.869Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-16T02:16:06.878Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-16T02:16:06.878Z"} +{"circuitName":"private-kernel-init","duration":171.25151497125626,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T02:16:07.056Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:16:07.056Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-16T02:16:07.065Z"} +{"circuitName":"private-kernel-inner","duration":211.7875189781189,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T02:16:07.280Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:16:07.280Z"} +{"circuitName":"private-kernel-ordering","duration":107.35548394918442,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T02:16:07.397Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:16:07.397Z"} +{"level":"info","message":"Simulating tx 20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae","namespace":"aztec:node","timestamp":"2023-12-16T02:16:07.397Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000004: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000004, 0x00000000000000000000000000000000000000000000000000000000657d0864)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T02:16:07.403Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:07.404Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:07.404Z"} +{"level":"debug","message":"Processing tx 20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:16:07.510Z"} +{"level":"info","message":"Simulated tx 20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae succeeds","namespace":"aztec:node","timestamp":"2023-12-16T02:16:07.511Z"} +{"level":"info","message":"Executed local simulation for 20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:16:07.511Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2002ae6a7f82b1d55737a7238f46b61928c0973e56f005518fbcd805d9a33698f3300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae25e4263786649236cdf2cf51f65abe388fa2bb2c63f2102a6497afa58cafbaec0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f02355b0d5fabd658ff2828c24cb320409d73f131add7811f0f99ebe642fcfab6280347d3c87f2a16cf93193a1bcefaaaa4aba4682ca6064ecc432957c1730e82404331691d9b7179fa023cc829b5186585df33eb35717b85120b100e482317c2591d8569da0d5e04e8bfb91b4224e031e7f258df376cd119950e188e803e48bc672cbd41388b009683cb4fa544dbd750b286456462419c1c37581969d2c9e54b6e1c3cb8a5613ea4c9406d63464881b0f1928a366088b4e45819cdf475979419a9e024b3885692677e2b3e37cd8fc63731b09403f158436f4916b3f14349dfabc21117c7c1944befa24ae1cb6283eb822',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:07.511Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2002ae6a7f82b1d55737a7238f46b61928c0973e56f005518fbcd805d9a33698f3300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae25e4263786649236cdf2cf51f65abe388fa2bb2c63f2102a6497afa58cafbaec0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f02355b0d5fabd658ff2828c24cb320409d73f131add7811f0f99ebe642fcfab6280347d3c87f2a16cf93193a1bcefaaaa4aba4682ca6064ecc432957c1730e82404331691d9b7179fa023cc829b5186585df33eb35717b85120b100e482317c2591d8569da0d5e04e8bfb91b4224e031e7f258df376cd119950e188e803e48bc672cbd41388b009683cb4fa544dbd750b286456462419c1c37581969d2c9e54b6e1c3cb8a5613ea4c9406d63464881b0f1928a366088b4e45819cdf475979419a9e024b3885692677e2b3e37cd8fc63731b09403f158436f4916b3f14349dfabc21117c7c1944befa24ae1cb6283eb822',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:07.520Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:07.521Z"} +{"level":"info","message":"Sending transaction 20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:16:07.521Z"} +{"level":"info","message":"Received tx 20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae","namespace":"aztec:node","timestamp":"2023-12-16T02:16:07.521Z"} +{"encryptedLogCount":1,"encryptedLogSize":256,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10113,"timestamp":"2023-12-16T02:16:07.521Z","txHash":"0x20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:07.522Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:07.524Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:07.524Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:07.525Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:07.871Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000004: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000004, 0x00000000000000000000000000000000000000000000000000000000657d0864)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T02:16:07.878Z"} +{"level":"info","message":"Building block 4 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:07.879Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:07.880Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:07.880Z"} +{"level":"debug","message":"Processing tx 20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T02:16:07.882Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:07.883Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:07.883Z"} +{"level":"debug","message":"Assembling block with txs 20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:07.883Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000004","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:07.884Z"} +{"level":"debug","message":"Running base rollup for 20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:16:07.884Z"} +{"circuitName":"base-rollup","duration":1679.8846989870071,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T02:16:09.921Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:16:09.921Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:09.923Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:09.923Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:09.924Z"} +{"circuitName":"base-rollup","duration":1554.6396880149841,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T02:16:11.796Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:16:11.797Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:11.798Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:11.798Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:11.799Z"} +{"circuitName":"root-rollup","duration":87.94791799783707,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T02:16:11.912Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T02:16:11.912Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:11.929Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:11.929Z"} +{"blockNumber":4,"duration":4060.651835978031,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-built","level":"debug","message":"Assembled block 4","namespace":"aztec:sequencer","publicProcessDuration":0.9721450209617615,"rollupCircuitsDuration":4046.7725589871407,"timestamp":"2023-12-16T02:16:11.931Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash 2ed6024d15d3ece9d790fb30169c112d8da60450adfc529c34412b9a8ba4565e","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:11.932Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T02:16:11.932Z"} +{"level":"debug","message":"Successfully published new contract data for block 4","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:11.946Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:12.804Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:12.804Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:12.805Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:12.814Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:12.814Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T02:16:12.818Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 4","namespace":"aztec:archiver","timestamp":"2023-12-16T02:16:12.818Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 4","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T02:16:12.819Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T02:16:12.819Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:12.931Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:12.931Z"} +{"level":"debug","message":"Block 4 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:12.931Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:12.932Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:12.932Z"} +{"level":"debug","message":"Synched to block 4","namespace":"aztec:p2p","timestamp":"2023-12-16T02:16:12.942Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 16 root 0x047258edc86e6713d32760f7abfc2c3642539dcbda486e6bad6911cd98462792","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:12.953Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1152 root 0x26cb0c3998aa00deb5bb2e1d72a746ff6a6acc84fa04487d73a614f6cece1546","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:12.953Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1024 root 0x24f00b98ae8a30af1be498b1df86d5a1209f6b238506fbbfe0f4989f8fb18677","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:12.953Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 288 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:12.953Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 64 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:12.953Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 5 root 0x20176ae4ca087c6597e6b4eab1bb11d1939304fcde92f1e4668682f2bfd79a10","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T02:16:12.953Z"} +{"blockNumber":4,"duration":47.39914298057556,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T02:16:12.978Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":4,"calldataGas":97572,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"rollup-published-to-l1","gasPrice":"1510693749","gasUsed":"380579","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T02:16:13.011Z","transactionHash":"0x7d42dc09c855e9b23ac6cdd920b0bb20a6c33d1e3e0c000a0d88a1097a67cd9d","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 4","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:13.011Z"} +{"level":"info","message":"Submitted rollup block 4 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:13.011Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:13.797Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:13.797Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:13.798Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:13.798Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T02:16:13.799Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:16:13.801Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T02:16:13.811Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:13.821Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:13.822Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:13.838Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:13.838Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:13.839Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:13.839Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae',\n status: 'mined',\n error: '',\n blockHash: '92bba6e336558d43484dead6ee83de3bdd62a4a33f75a129f6150e3ae535d6c9',\n blockNumber: 4,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:13.849Z"} +{"level":"debug","message":"No new blocks to process, current block number: 36","namespace":"aztec:archiver","timestamp":"2023-12-16T02:16:13.851Z"} +{"level":"debug","message":"Added note for contract 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74 at slot 0x2d2bf38578928178a0053c369926cae62dc58e54a5e92a5922f73c3094c148d0 with nullifier 0x2843fdf0e7a5a70461f5a1390154a34584749227450038a2c82047451e4c08d6","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:16:13.852Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:16:13.853Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:13.854Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:13.854Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 3,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 4,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 4,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 3\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:13.854Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-16T02:16:13.855Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:16:14.012Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:14.857Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:14.858Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:14.861Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T02:16:14.861Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '20c111ae113a47c1800c00d970c9d759b6ddbd8c8bc149ae5112a2e5d79321ae',\n status: 'mined',\n error: '',\n blockHash: '92bba6e336558d43484dead6ee83de3bdd62a4a33f75a129f6150e3ae535d6c9',\n blockNumber: 4,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:14.875Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:14.877Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:14.877Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 4,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 4,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 4,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 4\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:14.877Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:14.880Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:14.880Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b740000000000000000000000000000000000000000000000001fb6c2a28a801aefddad56e2ec9d6b757aef08ed583f92390d4ea9c046eaa60600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:14.881Z"} +{"level":"debug","message":"JsonProxy:call proveInit [\n {\n type: 'TxExecutionRequest',\n data: '26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c37889ba100010005d0e0d04d271951f3f7d9e770aa000245b95b08185e2c680a4e618bc236797c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000050000000126fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c048087fa6f786dffc982a89868d25f5cd9dfae666fa008f57f46a392f8f0024b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011048087fa6f786dffc982a89868d25f5cd9dfae666fa008f57f46a392f8f0024b0000000000000000000000000000000000000000000000000000000016cf6ba907d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012f2163677f8b3379947ecc154d92e245ec77702cd7df064b573a509c9c8cf60b05d0e0d04d271951f3f7d9e770aa000245b95b08185e2c680a4e618bc236797c00000001206b0a491654692ab810444085de378fec82882797efe33fd46de5db76650e5200000040000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000071000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000f500000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000a9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a70000000000000000000000000000000000000000000000000000000000000066000000000000000000000000000000000000000000000000000000000000008f000000000000000000000000000000000000000000000000000000000000004d00000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000054000000000000000000000000000000000000000000000000000000000000006100000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000005500000000000000000000000000000000000000000000000000000000000000cf00000000000000000000000000000000000000000000000000000000000000a10000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000cf0000000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000003f00000000000000000000000000000000000000000000000000000000000000b200000000000000000000000000000000000000000000000000000000000000c500000000000000000000000000000000000000000000000000000000000000df00000000000000000000000000000000000000000000000000000000000000cf0000000000000000000000000000000000000000000000000000000000000025000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000d10000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000007c00000000000000000000000000000000000000000000000000000000000000b200000000000000000000000000000000000000000000000000000000000000f9000000000000000000000000000000000000000000000000000000000000005700000000000000000000000000000000000000000000000000000000000000c900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000092000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000f5000000000000000000000000000000000000000000000000000000000000009d000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000006a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000df00000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000a900000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000003b00000000000000000000000000000000000000000000000000000000000000850000000000000000000000000000000000000000000000000000000000000068000000000000000000000000000000000000000000000000000000000000007200000000000000000000000000000000000000000000000000000000000000f300000000000000000000000000000000000000000000000000000000000000f600000000000000000000000000000000000000000000000000000000000000dd000000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000000000e900000000000000000000000000000000000000000000000000000000000000d500000000000000000000000000000000000000000000000000000000000000bf000000000000000000000000000000000000000000000000000000000000004a'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:14.896Z"} +{"level":"debug","message":"JsonProxy:call proveInit <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T02:16:14.897Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:16:14.897Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:16:14.898Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:16:14.898Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:14.916Z"} +{"level":"debug","message":"Returning 1 notes for 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1935a42b87d052c51d6609ddc545231a2c918802eb7abaa20398e7d58490390a:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T02:16:14.916Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:14.927Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:14.951Z"} +{"level":"debug","message":"Calling private function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:16cf6ba9 from 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T02:16:14.951Z"} +{"level":"debug","message":"Executing external function 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74:16cf6ba9","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:16:14.955Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:14.961Z"} +{"level":"debug","message":"Returning 1 notes for 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74 at 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43: 0x2c7d65b049c250702b868d996e13eee32210c3678ddb9691803da4d66950bc10:[0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000000000000000000000000002]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T02:16:14.962Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:14.978Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:14.980Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:14.983Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:14.986Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:14.986Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:14.987Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:14.988Z"} +{"level":"debug","message":"Returning 1 notes for 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74 at 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43: 0x0000000000000000000000000000000000000000000000000000000000000000:[0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000000000000000000000000002]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T02:16:14.989Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:15.002Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:15.004Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:15.007Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:15.010Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:15.010Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T02:16:15.011Z"} +{"level":"debug","message":"Returning from call to 0x07d65843817b29cfec8f356ca2be81a9f3f43b5097e6c7aa6529312974533b74:16cf6ba9","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:16:15.018Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T02:16:15.118Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:16:15.118Z"} +{"level":"debug","message":"Executing kernel prover for single init proof...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:16:15.118Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-16T02:16:15.128Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-16T02:16:15.133Z"} +{"circuitName":"private-kernel-init","duration":178.47276997566223,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T02:16:15.315Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T02:16:15.315Z"} +{"level":"debug","message":"Successfully executed and proved Kernel init proof iteration","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:16:15.324Z"} +{"level":"info","message":"Shutting down...","namespace":"aztec:sandbox","timestamp":"2023-12-16T02:26:47.776Z"} +{"level":"debug","message":"Stopped","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T02:26:47.778Z"} +{"level":"info","message":"Stopped","namespace":"aztec:pxe_service","timestamp":"2023-12-16T02:26:47.778Z"} +{"level":"info","message":"Stopping","namespace":"aztec:node","timestamp":"2023-12-16T02:26:47.778Z"} +{"level":"debug","message":"Stopped sequencer","namespace":"aztec:sequencer","timestamp":"2023-12-16T02:26:47.780Z"} +{"level":"debug","message":"Stopping p2p client...","namespace":"aztec:p2p","timestamp":"2023-12-16T02:26:47.780Z"} +{"level":"debug","message":"Moved to state STOPPED","namespace":"aztec:p2p","timestamp":"2023-12-16T02:26:47.795Z"} +{"level":"debug","message":"Stopping world state...","namespace":"aztec:world_state","timestamp":"2023-12-16T02:26:47.795Z"} +{"level":"info","message":"Debug logs will be written to /home/jpag/Workground/aztec/aztec-packages/log/aztec-sandbox.debug.log","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:01:55.242Z"} +{"level":"info","message":"Setting up Aztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c), please stand by...","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:01:55.243Z"} +{"level":"debug","message":"Deploying contracts...","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:01:55.415Z"} +{"level":"debug","message":"Deployed Registry at 0x851356ae760d987e095750cceb3bc6014560891c","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:01:55.456Z"} +{"level":"debug","message":"Deployed Inbox at 0xf5059a5d33d5853360d16c683c16e67980206f36","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:01:55.485Z"} +{"level":"debug","message":"Deployed Outbox at 0x95401dc811bb5740090279ba06cfa8fcf6113778","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:01:55.504Z"} +{"level":"debug","message":"Deployed Rollup at 0x998abeb3e57409262ae5b751f60747921b33613e","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:01:55.525Z"} +{"level":"debug","message":"Deployed contract deployment emitter at 0x4826533b4897376654bb4d4ad88b7fafd0c98528","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:01:55.546Z"} +{"level":"debug","message":"Opening temporary databases","namespace":"aztec:node","timestamp":"2023-12-16T03:01:55.546Z"} +{"level":"debug","message":"Rollup contract address has changed, clearing databases","namespace":"aztec:node","timestamp":"2023-12-16T03:01:55.551Z"} +{"level":"debug","message":"Performing initial chain sync...","namespace":"aztec:archiver","timestamp":"2023-12-16T03:01:55.555Z"} +{"level":"debug","message":"No current L2 block number found in db, starting from 0","namespace":"aztec:world_state","timestamp":"2023-12-16T03:01:56.075Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:p2p","timestamp":"2023-12-16T03:01:56.076Z"} +{"level":"debug","message":"Moved to state RUNNING","namespace":"aztec:world_state","timestamp":"2023-12-16T03:01:56.076Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:world_state","timestamp":"2023-12-16T03:01:56.076Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:world_state","timestamp":"2023-12-16T03:01:56.077Z"} +{"level":"debug","message":"Next block 1 already beyond latest block at 0","namespace":"aztec:p2p","timestamp":"2023-12-16T03:01:56.077Z"} +{"level":"debug","message":"Started block downloader from block 1","namespace":"aztec:p2p","timestamp":"2023-12-16T03:01:56.077Z"} +{"level":"debug","message":"Initialized sequencer with 1-32 txs per block.","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:01:56.081Z"} +{"level":"debug","message":"Sequencer started","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:01:56.081Z"} +{"level":"debug","message":"Started Aztec Node against chain 0x7a69 with contracts - \nRollup: 0x998abeb3e57409262ae5b751f60747921b33613e\nRegistry: 0x851356ae760d987e095750cceb3bc6014560891c\nInbox: 0xf5059a5d33d5853360d16c683c16e67980206f36\nOutbox: 0x95401dc811bb5740090279ba06cfa8fcf6113778\nContract Emitter: 0x4826533b4897376654bb4d4ad88b7fafd0c98528","namespace":"aztec:node","timestamp":"2023-12-16T03:01:56.082Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-16T03:01:56.083Z"} +{"level":"info","message":"Opening LMDB database at temporary location","namespace":"aztec:kv-store:lmdb","timestamp":"2023-12-16T03:01:56.085Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-16T03:01:56.089Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 0","namespace":"aztec:node","timestamp":"2023-12-16T03:01:56.089Z"} +{"level":"debug","message":"Started","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T03:01:56.090Z"} +{"level":"info","message":"Started PXE connected to chain 31337 version 1","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.090Z"} +{"level":"info","message":"Setting up test accounts...","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:01:56.090Z"} +{"level":"info","message":"Registered account 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.240Z"} +{"level":"debug","message":"Registered account\n Address: 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n Partial Address: 0x284e333701fbf6b040cdd45feeaadc23505e90e4714af8471387b20fee13e541\n","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.240Z"} +{"level":"info","message":"Registered account 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.240Z"} +{"level":"debug","message":"Registered account\n Address: 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n Partial Address: 0x0bdef5c62eaf9c17bbf24fd1f2e469c6fe96ccea0513931287f758e0234d249b\n","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.240Z"} +{"level":"info","message":"Registered account 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.240Z"} +{"level":"debug","message":"Registered account\n Address: 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n Partial Address: 0x0c8ef4391be038949491a6f64cf0e3c66f0e8517d62be4abf3432cf6061ea2a9\n","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.241Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.366Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.366Z"} +{"level":"info","message":"Added contract SchnorrAccount at 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.366Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.369Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.370Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.371Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.375Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.376Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.376Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:01:56.377Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:01:56.379Z"} +{"level":"debug","message":"Executing external function 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:01:56.379Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:01:56.483Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:01:56.489Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:01:56.494Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:01:56.495Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:01:56.495Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:01:56.496Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:01:56.497Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:01:56.501Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:01:56.503Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:01:56.522Z"} +{"level":"debug","message":"Returning from call to 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:01:56.526Z"} +{"level":"debug","message":"Returning from call to 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea:af9f8c44","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:01:56.529Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.529Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.529Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.529Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.529Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.532Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:56.532Z"} +{"circuitName":"private-kernel-init","duration":488.5629180073738,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T03:01:57.025Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:01:57.025Z"} +{"circuitName":"private-kernel-init","duration":466.58838695287704,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T03:01:57.029Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:01:57.029Z"} +{"circuitName":"private-kernel-init","duration":452.0129960179329,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T03:01:57.033Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:01:57.033Z"} +{"circuitName":"private-kernel-ordering","duration":334.6841899752617,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T03:01:57.402Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:01:57.402Z"} +{"circuitName":"private-kernel-ordering","duration":325.4523710012436,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T03:01:57.403Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:01:57.403Z"} +{"circuitName":"private-kernel-ordering","duration":317.8100769519806,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T03:01:57.404Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:01:57.404Z"} +{"level":"info","message":"Simulating tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-16T03:01:57.406Z"} +{"level":"info","message":"Simulating tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-16T03:01:57.406Z"} +{"level":"info","message":"Simulating tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-16T03:01:57.406Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T03:01:57.429Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T03:01:57.429Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T03:01:57.447Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T03:01:57.447Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T03:01:57.448Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T03:01:57.448Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:01:57.749Z"} +{"level":"info","message":"Simulated tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe succeeds","namespace":"aztec:node","timestamp":"2023-12-16T03:01:57.749Z"} +{"level":"info","message":"Executed local simulation for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:57.749Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:01:57.751Z"} +{"level":"info","message":"Simulated tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T03:01:57.751Z"} +{"level":"info","message":"Executed local simulation for 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:57.751Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:01:57.753Z"} +{"level":"info","message":"Simulated tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T03:01:57.753Z"} +{"level":"info","message":"Executed local simulation for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:57.753Z"} +{"level":"info","message":"Sending transaction 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:57.754Z"} +{"level":"info","message":"Sending transaction 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:57.754Z"} +{"level":"info","message":"Sending transaction 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:01:57.754Z"} +{"level":"info","message":"Received tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:node","timestamp":"2023-12-16T03:01:57.754Z"} +{"level":"info","message":"Received tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:node","timestamp":"2023-12-16T03:01:57.754Z"} +{"level":"info","message":"Received tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:node","timestamp":"2023-12-16T03:01:57.754Z"} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-16T03:01:57.755Z","txHash":"0x1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-16T03:01:57.755Z","txHash":"0x2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","unencryptedLogCount":0,"unencryptedLogSize":8} +{"encryptedLogCount":1,"encryptedLogSize":252,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":15690,"proofSize":0,"size":25643,"timestamp":"2023-12-16T03:01:57.756Z","txHash":"0x1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"info","message":"Retrieved 3 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:01:58.415Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000001: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T03:01:58.422Z"} +{"level":"info","message":"Building block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:01:58.423Z"} +{"level":"debug","message":"Clamping start block 0 to 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T03:01:58.424Z"} +{"level":"debug","message":"Processing tx 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:01:58.426Z"} +{"level":"debug","message":"Processing tx 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:01:58.426Z"} +{"level":"debug","message":"Processing tx 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:01:58.427Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:01:58.428Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:01:58.429Z"} +{"level":"debug","message":"Assembling block with txs 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09, 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61, 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:01:58.429Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000001","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:01:58.429Z"} +{"level":"debug","message":"Running base rollup for 1871394bc98623fdfc2d6e8a88f176a185eddcb60322d081d3038f8305eb7a09 2da8ebe05007a2c6506e72a361938c356310dde0c0b61061a1dbc5bc21abdf61","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:01:58.430Z"} +{"circuitName":"base-rollup","duration":1870.0929499864578,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T03:02:00.761Z"} +{"level":"debug","message":"Running base rollup for 1c0cf41a49a7d56ea5ab8ce7a7dbea82f420e2e4b047661316c6d5eb7f0b6cfe 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:00.762Z"} +{"circuitName":"base-rollup","duration":1730.1239230036736,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T03:02:02.950Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:02.950Z"} +{"circuitName":"root-rollup","duration":88.95917701721191,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T03:02:03.084Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:03.084Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:03.104Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:03.104Z"} +{"blockNumber":1,"duration":4706.511353969574,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-built","level":"debug","message":"Assembled block 1","namespace":"aztec:sequencer","publicProcessDuration":2.4330480098724365,"rollupCircuitsDuration":4688.5811930298805,"timestamp":"2023-12-16T03:02:03.118Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Publishing extended contract data with block hash ca490bb729514ac17643b44045e4b1137bc0bc7627d66ca42cf226464b8ae6d5","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:03.120Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T03:02:03.120Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T03:02:03.148Z"} +{"level":"debug","message":"Bytecode is 15542 bytes and require 0.12240108366935484 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T03:02:03.172Z"} +{"level":"debug","message":"Successfully published new contract data for block 1","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:03.198Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.118Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.118Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:04.134Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:04.135Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:04.135Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 1","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:04.135Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T03:02:04.136Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T03:02:04.154Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 1","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T03:02:04.157Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:04.158Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.195Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.195Z"} +{"level":"debug","message":"Block 1 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:04.196Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.197Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.197Z"} +{"level":"debug","message":"Synched to block 1","namespace":"aztec:p2p","timestamp":"2023-12-16T03:02:04.225Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 4 root 0x033dd64d21ae6a218161988396dea39a578ebd0876230b5a50b6d9fe594902fb","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:04.239Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 384 root 0x124183fff44e3f32d100260e8dd469ddc74d7463349b2f8f679fc7896212dc9e","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:04.239Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 256 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:04.239Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 96 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:04.239Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 16 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:04.240Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 2 root 0x1286435510bed8e37738413f6eaf29460d908bc7adffae01dcdae22ed20a5215","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:04.240Z"} +{"blockNumber":1,"calldataGas":110964,"calldataSize":22596,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"rollup-published-to-l1","gasPrice":"1502968470","gasUsed":"435023","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T03:02:04.267Z","transactionHash":"0x9544a1f5485fc2722c6ed19b88e27367a298a6958a28a72d2e24bf6623fb27cb","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Successfully published block 1","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:04.268Z"} +{"level":"info","message":"Submitted rollup block 1 with 3 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:04.268Z"} +{"blockNumber":1,"duration":150.21545696258545,"encryptedLogCount":3,"encryptedLogSize":764,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T03:02:04.346Z","txCount":3,"unencryptedLogCount":0,"unencryptedLogSize":32} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.952Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.952Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.954Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.955Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.961Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.962Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.981Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.981Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.995Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:04.995Z"} +{"level":"debug","message":"Forwarding 3 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T03:02:05.007Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T03:02:05.011Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:05.021Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:05.022Z"} +{"level":"debug","message":"Added note for contract 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x09b9ace7b2beea90afef773bbd468b98233a468d1ebe0f087b8a703ff861d500","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:05.043Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:05.045Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T03:02:05.048Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:05.059Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:05.060Z"} +{"level":"debug","message":"Added note for contract 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2f7fcae3f4b95db8ae047af7219fc01130ca5f432379b128f219320cb309000e","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:05.066Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:05.067Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T03:02:05.072Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:05.082Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:05.084Z"} +{"level":"debug","message":"Added note for contract 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea at slot 0x0000000000000000000000000000000000000000000000000000000000000001 with nullifier 0x2126b7cc255081f654a397c8b0abdcfc2220ff72f3cadf33781414fb7ced4d8a","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:05.089Z"} +{"level":"debug","message":"Synched block 1","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:05.090Z"} +{"level":"debug","message":"No new blocks to process, current block number: 46","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:05.183Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:05.268Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:05.982Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:05.982Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:06.020Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:06.020Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:06.056Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:06.056Z"} +{"level":"info","message":"Aztec Node JSON-RPC Server listening on port 8079","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:02:06.094Z"} +{"level":"info","message":"PXE JSON-RPC Server listening on port 8080","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:02:06.096Z"} +{"level":"info","message":"\n _\n /\\ | |\n / \\ ___| |_ ___ ___ \n / /\\ \\ |_ / __/ _ \\/ __|\n / ____ \\ / /| || __/ (__ \n/_/___ \\_\\/___|\\__\\___|\\___|\n\nhttps://github.com/AztecProtocol\n\nInitial Accounts:\n\n Address: 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c\n Partial Address: 0x284e333701fbf6b040cdd45feeaadc23505e90e4714af8471387b20fee13e541\n Private Key: 0x2153536ff6628eee01cf4024889ff977a18d9fa61d0e414422f7681cf085c281\n Public Key: 0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9\n\n Address: 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9\n Partial Address: 0x0bdef5c62eaf9c17bbf24fd1f2e469c6fe96ccea0513931287f758e0234d249b\n Private Key: 0x00aebd1b4be76efa44f5ee655c20bf9ea60f7ae44b9a7fd1fd9f189c7a0b0cda\n Public Key: 0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257\n\n Address: 0x1a2e5bdc75aa23952bbc559118de5fc9861f643410f57c89eb0f6c6ece47a8ea\n Partial Address: 0x0c8ef4391be038949491a6f64cf0e3c66f0e8517d62be4abf3432cf6061ea2a9\n Private Key: 0x0f6addf0da06c33293df974a565b03d1ab096090d907d98055a8b7f4954e120c\n Public Key: 0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd\n\nAztec Sandbox v0.1.0 (noir 6ca33a223ccce6a295414a3ce078180e8a22b68c) is now ready for use!","namespace":"aztec:sandbox","timestamp":"2023-12-16T03:02:06.097Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.674Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.674Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x998abeb3e57409262ae5b751f60747921b33613e'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x851356ae760d987e095750cceb3bc6014560891c'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xf5059a5d33d5853360d16c683c16e67980206f36'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x95401dc811bb5740090279ba06cfa8fcf6113778'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x4826533b4897376654bb4d4ad88b7fafd0c98528'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.676Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.680Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.681Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x998abeb3e57409262ae5b751f60747921b33613e'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x851356ae760d987e095750cceb3bc6014560891c'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xf5059a5d33d5853360d16c683c16e67980206f36'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x95401dc811bb5740090279ba06cfa8fcf6113778'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x4826533b4897376654bb4d4ad88b7fafd0c98528'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.681Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.682Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.682Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x998abeb3e57409262ae5b751f60747921b33613e'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x851356ae760d987e095750cceb3bc6014560891c'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xf5059a5d33d5853360d16c683c16e67980206f36'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x95401dc811bb5740090279ba06cfa8fcf6113778'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x4826533b4897376654bb4d4ad88b7fafd0c98528'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.683Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.855Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.855Z"} +{"level":"debug","message":"JsonProxy:call getNodeInfo -> {\n sandboxVersion: '0.1.0',\n compatibleNargoVersion: 'portal:../../noir/packages/noir_wasm',\n chainId: 31337,\n protocolVersion: 1,\n l1ContractAddresses: {\n rollupAddress: {\n type: 'EthAddress',\n data: '0x998abeb3e57409262ae5b751f60747921b33613e'\n },\n registryAddress: {\n type: 'EthAddress',\n data: '0x851356ae760d987e095750cceb3bc6014560891c'\n },\n inboxAddress: {\n type: 'EthAddress',\n data: '0xf5059a5d33d5853360d16c683c16e67980206f36'\n },\n outboxAddress: {\n type: 'EthAddress',\n data: '0x95401dc811bb5740090279ba06cfa8fcf6113778'\n },\n contractDeploymentEmitterAddress: {\n type: 'EthAddress',\n data: '0x4826533b4897376654bb4d4ad88b7fafd0c98528'\n },\n decoderHelperAddress: {\n type: 'EthAddress',\n data: '0x0000000000000000000000000000000000000000'\n }\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.855Z"} +{"level":"debug","message":"JsonProxy:call addContracts [\n [\n {\n artifact: [Object],\n completeAddress: [Object],\n portalContract: [Object]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.898Z"} +{"level":"debug","message":"JsonProxy:call addContracts <- [\n [\n {\n artifact: [Object],\n completeAddress: [CompleteAddress],\n portalContract: [EthAddress]\n }\n ]\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.899Z"} +{"level":"info","message":"Added contract CounterStateChannel at 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:29.903Z"} +{"level":"debug","message":"JsonProxy:call addContracts -> undefined","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.903Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c45090fa17bb000101000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038021824fbd98bb0e388b0efe18f72e9350f7456481714539ba583de37113ce0fea81d0a2d0e7afa826e13e84a9644453109d0b00201319df90bb1d61522da703a45b020cb58928bea36a418006eb212cdb4b37f67f5d54d557c9f86622bba700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.907Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: true\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: true,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [ [PackedArguments] ],\n authWitnesses: []\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:29.908Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:29.910Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:29.916Z"} +{"level":"debug","message":"Executing external function 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:29.917Z"} +{"level":"debug","message":"Returning from call to 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450:90fa17bb","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:29.923Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:29.923Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:29.923Z"} +{"circuitName":"private-kernel-init","duration":134.4735409617424,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T03:02:30.061Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:02:30.061Z"} +{"circuitName":"private-kernel-ordering","duration":107.2409890294075,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T03:02:30.178Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:02:30.178Z"} +{"level":"info","message":"Simulating tx 15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4","namespace":"aztec:node","timestamp":"2023-12-16T03:02:30.179Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000002: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000002, 0x00000000000000000000000000000000000000000000000000000000657d132e)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T03:02:30.186Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:30.188Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:30.188Z"} +{"level":"debug","message":"Processing tx 15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:02:30.299Z"} +{"level":"info","message":"Simulated tx 15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T03:02:30.300Z"} +{"level":"info","message":"Executed local simulation for 15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:30.300Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c42c99833338af8d1e4eb7e0b5c20ed02c81475b5889be5db23705a6295a65f5410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c45000000000000000000000000000000000000000000000000025641569c0b5ce2b4bfe5a62c8f87c7ff6d5b48ee8e3d4b63765ef13e17eca0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:30.300Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c42c99833338af8d1e4eb7e0b5c20ed02c81475b5889be5db23705a6295a65f5410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '0000000400000000',\n unencryptedLogs: '0000000400000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:30.314Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:30.315Z"} +{"level":"info","message":"Sending transaction 15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:30.315Z"} +{"level":"info","message":"Received tx 15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4","namespace":"aztec:node","timestamp":"2023-12-16T03:02:30.315Z"} +{"encryptedLogCount":0,"encryptedLogSize":8,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4","namespace":"aztec:tx_pool","newContractCount":1,"newContractDataSize":152,"proofSize":0,"size":9861,"timestamp":"2023-12-16T03:02:30.316Z","txHash":"0x15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4","unencryptedLogCount":0,"unencryptedLogSize":8} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:30.316Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:30.319Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:30.319Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:30.320Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:31.286Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000002: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000002, 0x00000000000000000000000000000000000000000000000000000000657d132e)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T03:02:31.293Z"} +{"level":"info","message":"Building block 2 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:31.293Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 3 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:31.294Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 1","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:31.295Z"} +{"level":"debug","message":"Processing tx 15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:02:31.296Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:31.299Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:31.300Z"} +{"level":"debug","message":"Assembling block with txs 15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:31.300Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000002","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:31.301Z"} +{"level":"debug","message":"Running base rollup for 15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:31.301Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:31.326Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:31.326Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:31.327Z"} +{"circuitName":"base-rollup","duration":1642.1477349996567,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T03:02:33.339Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:33.339Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:33.343Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:33.343Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:33.345Z"} +{"circuitName":"base-rollup","duration":1603.9234120249748,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T03:02:35.281Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:35.281Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:35.283Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:35.283Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:35.284Z"} +{"circuitName":"root-rollup","duration":89.67038196325302,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T03:02:35.400Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:35.400Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:35.418Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:35.418Z"} +{"blockNumber":2,"duration":4139.56744402647,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-built","level":"debug","message":"Assembled block 2","namespace":"aztec:sequencer","publicProcessDuration":0.9211910367012024,"rollupCircuitsDuration":4124.260770022869,"timestamp":"2023-12-16T03:02:35.425Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Publishing extended contract data with block hash 997d9e435958c5f4ce61dad63d6a5258b03f3df65942a4a1353d793c0e32a177","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:35.427Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T03:02:35.427Z"} +{"level":"debug","message":"Successfully published new contract data for block 2","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:35.446Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:36.288Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:36.288Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:36.289Z"} +{"blockNumber":2,"calldataGas":94016,"calldataSize":21860,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"rollup-published-to-l1","gasPrice":"1502282763","gasUsed":"370818","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T03:02:36.513Z","transactionHash":"0x816b186fbfac6ef485f2f1b34d5dec7898ae521178ab1fbf914218db24cc98d9","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Successfully published block 2","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:36.513Z"} +{"level":"info","message":"Submitted rollup block 2 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:36.513Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:37.296Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:37.296Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:37.297Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:37.302Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:37.302Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:37.309Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 2","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:37.310Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 2","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T03:02:37.312Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:37.312Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:37.411Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:37.412Z"} +{"level":"debug","message":"Block 2 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:37.412Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:37.414Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:37.414Z"} +{"level":"debug","message":"Synched to block 2","namespace":"aztec:p2p","timestamp":"2023-12-16T03:02:37.439Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 8 root 0x0f414d9e509c26a200a228d7a5fc95c2f5fc13615b6a4f9de5fb6474a6b215a0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:37.471Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 640 root 0x14a920cbcdd52ad17581074344d014afe291a1afef71cbef60d179bac55751d9","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:37.471Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 512 root 0x07b5bddd106d4d7c9afde50a41dcc4fc833572565ca155290f6c0911f1bd362b","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:37.471Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 160 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:37.471Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 32 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:37.471Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 3 root 0x15f3868dcb56aeb7f64f1f8924c3f97d2d6abfb17ecaaef8466f6d8066ee4168","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:37.471Z"} +{"blockNumber":2,"duration":65.32957595586777,"encryptedLogCount":0,"encryptedLogSize":24,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T03:02:37.477Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":24} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:37.514Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:38.284Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:38.284Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:38.285Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:38.285Z"} +{"level":"debug","message":"Forwarding 0 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T03:02:38.287Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:38.289Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:38.290Z"} +{"level":"debug","message":"Synched block 2","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:38.291Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.301Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.302Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:38.302Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:38.303Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '15d2e0b9757bc6a48fb566249675d654221517a95f0957a7aa53b3b825c0c6c4',\n status: 'mined',\n error: '',\n blockHash: '6760b1d38544df4dc4d69d821d87789e3028b8e08c9dc326f30064f622224bdc',\n blockNumber: 2,\n contractAddress: '0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450'\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.322Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.326Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.326Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 2,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 2,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 2,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 2\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.326Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.329Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.329Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c45000000000000000000000000000000000000000000000000025641569c0b5ce2b4bfe5a62c8f87c7ff6d5b48ee8e3d4b63765ef13e17eca0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.330Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.335Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.335Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c45000000000000000000000000000000000000000000000000025641569c0b5ce2b4bfe5a62c8f87c7ff6d5b48ee8e3d4b63765ef13e17eca0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.335Z"} +{"level":"debug","message":"No new blocks to process, current block number: 48","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:38.336Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c37889ba10001000e83a7c505d9c9e69433ae13b6661a381231f8c93d9ef811c191c5adbda0a9d20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a69000000000000000000000000000000000000000000000000000000000000000100000005000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000226fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c251b98366c4027425c5225bb2eb14ef04a9d492b1783ebcc6e64bf3c9c087c2800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011251b98366c4027425c5225bb2eb14ef04a9d492b1783ebcc6e64bf3c9c087c280000000000000000000000000000000000000000000000000000000042eb947f115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011809fe9564efe0d74a749016a0fc94e12bef2bb4bda9248209f8b0fac8332e0c0e83a7c505d9c9e69433ae13b6661a381231f8c93d9ef811c191c5adbda0a9d2000000011f5ab946df9f57b8a27c98e55291fb07d5537fdd6634f682e8e374e91daad97d00000040000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000fc000000000000000000000000000000000000000000000000000000000000006500000000000000000000000000000000000000000000000000000000000000b900000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000c700000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000a3000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000000ef00000000000000000000000000000000000000000000000000000000000000e5000000000000000000000000000000000000000000000000000000000000006d00000000000000000000000000000000000000000000000000000000000000ad000000000000000000000000000000000000000000000000000000000000001f0000000000000000000000000000000000000000000000000000000000000069000000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000000000000000000000000000000000000038000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000005d00000000000000000000000000000000000000000000000000000000000000fe000000000000000000000000000000000000000000000000000000000000009a000000000000000000000000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000c600000000000000000000000000000000000000000000000000000000000000aa00000000000000000000000000000000000000000000000000000000000000b700000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000da0000000000000000000000000000000000000000000000000000000000000088000000000000000000000000000000000000000000000000000000000000004f000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000a50000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000a9000000000000000000000000000000000000000000000000000000000000003600000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000009a00000000000000000000000000000000000000000000000000000000000000cb000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000000000000000000000000000000000000000099000000000000000000000000000000000000000000000000000000000000008f000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000000000000000000000000000000000000000c9000000000000000000000000000000000000000000000000000000000000008f000000000000000000000000000000000000000000000000000000000000008200000000000000000000000000000000000000000000000000000000000000cd000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000f1000000000000000000000000000000000000000000000000000000000000002300000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000b7000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.349Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:38.350Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:38.350Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:38.360Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:38.360Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:38.377Z"} +{"level":"debug","message":"Returning 1 notes for 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1935a42b87d052c51d6609ddc545231a2c918802eb7abaa20398e7d58490390a:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T03:02:38.378Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:38.388Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:38.429Z"} +{"level":"debug","message":"Calling private function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:42eb947f from 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T03:02:38.429Z"} +{"level":"debug","message":"Executing external function 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:38.432Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:38.436Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:38.437Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:38.441Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:38.441Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:38.443Z"} +{"level":"debug","message":"Returning from call to 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:38.448Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:38.563Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:38.563Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:38.563Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-16T03:02:38.602Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-16T03:02:38.612Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-16T03:02:38.613Z"} +{"circuitName":"private-kernel-init","duration":171.6207890510559,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T03:02:38.792Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:02:38.792Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-16T03:02:38.809Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 2","namespace":"aztec:node","timestamp":"2023-12-16T03:02:38.810Z"} +{"circuitName":"private-kernel-inner","duration":256.2738010287285,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T03:02:39.074Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:02:39.074Z"} +{"circuitName":"private-kernel-ordering","duration":120.84396702051163,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T03:02:39.205Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:02:39.205Z"} +{"level":"info","message":"Simulating tx 22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d","namespace":"aztec:node","timestamp":"2023-12-16T03:02:39.205Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000003: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000003, 0x00000000000000000000000000000000000000000000000000000000657d134c)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T03:02:39.215Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:39.215Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:39.216Z"} +{"level":"debug","message":"Processing tx 22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:02:39.321Z"} +{"level":"info","message":"Simulated tx 22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d succeeds","namespace":"aztec:node","timestamp":"2023-12-16T03:02:39.321Z"} +{"level":"info","message":"Executed local simulation for 22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:39.321Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200028a79bff25483a82cbd4aa34dc94354cb760f21a145aaa6ae9c04fc2134d16200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d1b4981918501d9ac170870e6691d82fbe6c65b3fa70c1fa8edf708ec4c7b63af0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f07721a2d34292c868cf08aceae3a49746bde1c78d4c8f1917c30efb7a6e72fbd4ec2059c075124038cf5529a82632361a3586a2686d2838525f50771136bff9aa6418430f07f888e3c639abc6e8549291ab0cc13c0ec4dd6ee4b704757842a11bf5291fe617f4020349b73ab31d553bf4ade13bf67ca4bf255f3905da4bd75ae329882a2c2563575ee6cf8aa6c549cf562332c8dc0771e5c7ffcd69f79d4e906ada49d3a91e6523a607df2c21f6d7b6341d1b1876ceb31be58a8f5778f2fac258847a6079f937d5ba26ed9ef2c23d517011e32b29555fc3c74bd3a10486d1edaa8e510d6aa379af677eb03d7bf72bfee6',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:39.322Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be200028a79bff25483a82cbd4aa34dc94354cb760f21a145aaa6ae9c04fc2134d16200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d1b4981918501d9ac170870e6691d82fbe6c65b3fa70c1fa8edf708ec4c7b63af0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f07721a2d34292c868cf08aceae3a49746bde1c78d4c8f1917c30efb7a6e72fbd4ec2059c075124038cf5529a82632361a3586a2686d2838525f50771136bff9aa6418430f07f888e3c639abc6e8549291ab0cc13c0ec4dd6ee4b704757842a11bf5291fe617f4020349b73ab31d553bf4ade13bf67ca4bf255f3905da4bd75ae329882a2c2563575ee6cf8aa6c549cf562332c8dc0771e5c7ffcd69f79d4e906ada49d3a91e6523a607df2c21f6d7b6341d1b1876ceb31be58a8f5778f2fac258847a6079f937d5ba26ed9ef2c23d517011e32b29555fc3c74bd3a10486d1edaa8e510d6aa379af677eb03d7bf72bfee6',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:39.329Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:39.330Z"} +{"level":"info","message":"Sending transaction 22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:39.330Z"} +{"level":"info","message":"Received tx 22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d","namespace":"aztec:node","timestamp":"2023-12-16T03:02:39.330Z"} +{"encryptedLogCount":1,"encryptedLogSize":256,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10113,"timestamp":"2023-12-16T03:02:39.331Z","txHash":"0x22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:39.331Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:39.334Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:39.334Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:39.335Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:39.604Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000003: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000003, 0x00000000000000000000000000000000000000000000000000000000657d134c)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T03:02:39.610Z"} +{"level":"info","message":"Building block 3 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:39.611Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:39.612Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 2","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:39.612Z"} +{"level":"debug","message":"Processing tx 22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:02:39.614Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:39.615Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:39.615Z"} +{"level":"debug","message":"Assembling block with txs 22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:39.615Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000003","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:39.615Z"} +{"level":"debug","message":"Running base rollup for 22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:39.616Z"} +{"circuitName":"base-rollup","duration":1629.4886789917946,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T03:02:41.594Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:41.594Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:41.596Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:41.596Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:41.597Z"} +{"circuitName":"base-rollup","duration":1594.139832019806,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T03:02:43.511Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:43.511Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:43.512Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:43.513Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:43.513Z"} +{"circuitName":"root-rollup","duration":87.66205900907516,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T03:02:43.623Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:43.623Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:43.640Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:43.640Z"} +{"blockNumber":3,"duration":4038.1794689893723,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-built","level":"debug","message":"Assembled block 3","namespace":"aztec:sequencer","publicProcessDuration":1.1010609865188599,"rollupCircuitsDuration":4026.1344590187073,"timestamp":"2023-12-16T03:02:43.642Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash a47ce6f25117154331bbd3acc6e507872f748371c77eb1b744692eed5c294546","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:43.643Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T03:02:43.643Z"} +{"level":"debug","message":"Successfully published new contract data for block 3","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:43.657Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:44.516Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:44.517Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:44.517Z"} +{"blockNumber":3,"calldataGas":97584,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"rollup-published-to-l1","gasPrice":"1501754370","gasUsed":"380591","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T03:02:44.723Z","transactionHash":"0x8e03b3a2f48b98aeac1ddac7bd2172e44fcbe92f38180ff655a455dbeb5c5e81","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 3","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:44.724Z"} +{"level":"info","message":"Submitted rollup block 3 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:44.724Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:45.520Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:45.521Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:45.522Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:45.529Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:45.529Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:45.537Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 3","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:45.538Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 3","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T03:02:45.538Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:45.539Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:45.637Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:45.637Z"} +{"level":"debug","message":"Block 3 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:45.638Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:45.638Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:45.639Z"} +{"level":"debug","message":"Synched to block 3","namespace":"aztec:p2p","timestamp":"2023-12-16T03:02:45.648Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 12 root 0x0f414d9e509c26a200a228d7a5fc95c2f5fc13615b6a4f9de5fb6474a6b215a0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:45.662Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 896 root 0x07dc3de20aefd8d2abf5686805bcb10e6fbbbfd7f76f016ca3523fe436a5955c","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:45.662Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 768 root 0x23112d7e5215dcf1c76669c498609c6e11ce9f775757f6e39fa2311df692cb30","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:45.662Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 224 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:45.662Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 48 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:45.662Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 4 root 0x2ba78ebbad19fee1a455088f114b5c81ae632c411a8a47325671d9d55d6a56a3","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:45.662Z"} +{"blockNumber":3,"duration":65.14826095104218,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T03:02:45.703Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:45.724Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:46.513Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:46.513Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:46.514Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:46.514Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T03:02:46.515Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T03:02:46.539Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:46.549Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:46.551Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:46.570Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:46.570Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:46.572Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:46.572Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d',\n status: 'mined',\n error: '',\n blockHash: 'b58cd784fc79a27bc2766da11375aca214db22f2d00c15340fb8c50110fd4666',\n blockNumber: 3,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:46.593Z"} +{"level":"debug","message":"No new blocks to process, current block number: 50","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:46.598Z"} +{"level":"debug","message":"Added note for contract 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450 at slot 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43 with nullifier 0x203696c364d3e815996bd913ad8a73c30ddc3f9c1ca30426c7224278994993cd","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:46.599Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:46.600Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:46.600Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 2,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 2,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 2,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 2\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:46.601Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:46.602Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:46.605Z"} +{"level":"debug","message":"Synched block 3","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:46.607Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:47.604Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:47.604Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:47.605Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:47.605Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '22140f8738f49e8688e48fa904bb49d8fa20e00a0b045481cd8951cc6dcf672d',\n status: 'mined',\n error: '',\n blockHash: 'b58cd784fc79a27bc2766da11375aca214db22f2d00c15340fb8c50110fd4666',\n blockNumber: 3,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:47.619Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:47.622Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:47.622Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 3,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 3,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 3,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 3\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:47.622Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:47.624Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:47.625Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c45000000000000000000000000000000000000000000000000025641569c0b5ce2b4bfe5a62c8f87c7ff6d5b48ee8e3d4b63765ef13e17eca0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:47.625Z"} +{"level":"debug","message":"JsonProxy:call simulateTx [\n {\n type: 'TxExecutionRequest',\n data: '2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b937889ba10001002204bad4c63fba94418b6e180cb411b06bf3d36d42841b60e561c6689d1f94890000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a6900000000000000000000000000000000000000000000000000000000000000010000000500000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9208bb4d339d69f6ec4da9c284ce2dff08b3406cb2acd4aa75b49917e2a6b4a1800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011208bb4d339d69f6ec4da9c284ce2dff08b3406cb2acd4aa75b49917e2a6b4a180000000000000000000000000000000000000000000000000000000042eb947f115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000107b9ef686f03cef48141e70859d021f747d79e44d8f1204686f83e6833c1107b2204bad4c63fba94418b6e180cb411b06bf3d36d42841b60e561c6689d1f9489000000012e0a483adb0ecd98bbd759727f14ea56462d6e1e515f744638305ee31583ae3200000040000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000009d0000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009b00000000000000000000000000000000000000000000000000000000000000a300000000000000000000000000000000000000000000000000000000000000f60000000000000000000000000000000000000000000000000000000000000021000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000006d0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000ec00000000000000000000000000000000000000000000000000000000000000de00000000000000000000000000000000000000000000000000000000000000c900000000000000000000000000000000000000000000000000000000000000ff000000000000000000000000000000000000000000000000000000000000007100000000000000000000000000000000000000000000000000000000000000fc000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000f7000000000000000000000000000000000000000000000000000000000000007a00000000000000000000000000000000000000000000000000000000000000cf000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000c7000000000000000000000000000000000000000000000000000000000000003f000000000000000000000000000000000000000000000000000000000000005d000000000000000000000000000000000000000000000000000000000000007a00000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000760000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000000000035000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a900000000000000000000000000000000000000000000000000000000000000f50000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000007100000000000000000000000000000000000000000000000000000000000000f60000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000008500000000000000000000000000000000000000000000000000000000000000de000000000000000000000000000000000000000000000000000000000000004f000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000f200000000000000000000000000000000000000000000000000000000000000a700000000000000000000000000000000000000000000000000000000000000770000000000000000000000000000000000000000000000000000000000000043000000000000000000000000000000000000000000000000000000000000008e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000007100000000000000000000000000000000000000000000000000000000000000cd000000000000000000000000000000000000000000000000000000000000002b00000000000000000000000000000000000000000000000000000000000000a1000000000000000000000000000000000000000000000000000000000000001300000000000000000000000000000000000000000000000000000000000000a200000000000000000000000000000000000000000000000000000000000000e3000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000000006b'\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:47.637Z"} +{"level":"debug","message":"JsonProxy:call simulateTx <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n },\n true\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:47.637Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:47.637Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:47.638Z"} +{"level":"debug","message":"Executing external function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:47.639Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:47.658Z"} +{"level":"debug","message":"Returning 1 notes for 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9 at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x2777464fe2efe81140b375ef09ccf63b7ee5b136897294e8a9ead5b585ba4a57:[0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a8,0x1570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257,0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T03:02:47.658Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:47.668Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:47.694Z"} +{"level":"debug","message":"Calling private function 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:42eb947f from 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T03:02:47.694Z"} +{"level":"debug","message":"Executing external function 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:47.697Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:47.700Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:47.702Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:47.706Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:47.706Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:47.708Z"} +{"level":"debug","message":"Returning from call to 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450:42eb947f","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:47.713Z"} +{"level":"debug","message":"Returning from call to 0x2a0f32c34c5b948a7f9766f0c1aad70a86c0ee649f56208e936be4324d49b0b9:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:47.823Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:47.824Z"} +{"level":"debug","message":"Executing kernel prover...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:47.824Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-16T03:02:47.832Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-16T03:02:47.843Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-16T03:02:47.843Z"} +{"circuitName":"private-kernel-init","duration":175.8776850104332,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T03:02:48.025Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:02:48.025Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 3","namespace":"aztec:node","timestamp":"2023-12-16T03:02:48.035Z"} +{"circuitName":"private-kernel-inner","duration":212.47227603197098,"eventName":"circuit-simulation","inputSize":64516,"level":"debug","message":"Simulated private kernel inner","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T03:02:48.250Z"} +{"level":"debug","message":"Skipping private kernel inner proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:02:48.250Z"} +{"circuitName":"private-kernel-ordering","duration":107.04862904548645,"eventName":"circuit-simulation","inputSize":25833,"level":"debug","message":"Simulated private kernel ordering","namespace":"aztec:kernel_proof_creator","outputSize":9689,"timestamp":"2023-12-16T03:02:48.367Z"} +{"level":"debug","message":"Skipping private kernel ordering proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:02:48.367Z"} +{"level":"info","message":"Simulating tx 06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4","namespace":"aztec:node","timestamp":"2023-12-16T03:02:48.368Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000004: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000004, 0x00000000000000000000000000000000000000000000000000000000657d1354)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T03:02:48.373Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:48.374Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:48.374Z"} +{"level":"debug","message":"Processing tx 06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:02:48.479Z"} +{"level":"info","message":"Simulated tx 06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4 succeeds","namespace":"aztec:node","timestamp":"2023-12-16T03:02:48.479Z"} +{"level":"info","message":"Executed local simulation for 06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:48.479Z"} +{"level":"debug","message":"JsonProxy:call simulateTx -> {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2001aa211bdeb150f906da95e38373dc2953e1d176079e942ea2d14241ab1bc6f5b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb41f09c32c655b4ffd402c343020d18a69058dfe7109eeda3bda9d1ab5ff43e8780000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f051045873e9d0be550e5ce1e74699cd1db5852869e587984b140f92d130cdd63f7f18b963af3c1cdddbb378749093d3f66e327ccaafedbd2aa2291df1b83b0d5c87278e89864a0714fa94c8f0d0a784d305f0a4e837e62155d61db382c968b443b5d6d52eeaf3c1cc64c4a120b16be2ad28de2255cbee487f93a3d5aeb7720685eaf31e115d34bfd04357d01b488b1746da770ea151a913fbabcd8a24e39d88ef45b0aa16cfbde4ec784c36420a3b464608e4959dc79f95bdd41bc319773d6506bbe7dc5579630beb6ddf6a3cbb1c859500780804c3003734f48e438b92e77296f9ad19b487e548510c90ba0cafcc62e1',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [\n '0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n ]\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:48.480Z"} +{"level":"debug","message":"JsonProxy:call sendTx [\n {\n type: 'Tx',\n data: {\n data: '0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000001000000bd300000bd400000bd500000bd600000bd700000bd800000bd900000bda00000bdb00000bdc00000bdd00000bde00000bdf00000be000000be100000be2001aa211bdeb150f906da95e38373dc2953e1d176079e942ea2d14241ab1bc6f5b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb41f09c32c655b4ffd402c343020d18a69058dfe7109eeda3bda9d1ab5ff43e8780000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'... 9378 more characters,\n encryptedLogs: '000000fc00000000000000f4000000f051045873e9d0be550e5ce1e74699cd1db5852869e587984b140f92d130cdd63f7f18b963af3c1cdddbb378749093d3f66e327ccaafedbd2aa2291df1b83b0d5c87278e89864a0714fa94c8f0d0a784d305f0a4e837e62155d61db382c968b443b5d6d52eeaf3c1cc64c4a120b16be2ad28de2255cbee487f93a3d5aeb7720685eaf31e115d34bfd04357d01b488b1746da770ea151a913fbabcd8a24e39d88ef45b0aa16cfbde4ec784c36420a3b464608e4959dc79f95bdd41bc319773d6506bbe7dc5579630beb6ddf6a3cbb1c859500780804c3003734f48e438b92e77296f9ad19b487e548510c90ba0cafcc62e1',\n unencryptedLogs: '000000080000000000000000',\n proof: '00000000',\n enqueuedPublicFunctions: [],\n newContracts: [Array]\n }\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:48.488Z"} +{"level":"debug","message":"JsonProxy:call sendTx <- [\n Tx {\n data: KernelCircuitPublicInputsFinal {\n end: [FinalAccumulatedData],\n constants: [CombinedConstantData],\n isPrivate: true\n },\n proof: Proof { buffer: },\n encryptedLogs: TxL2Logs { functionLogs: [Array] },\n unencryptedLogs: TxL2Logs { functionLogs: [Array] },\n enqueuedPublicFunctionCalls: [],\n newContracts: [ [ExtendedContractData] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:48.489Z"} +{"level":"info","message":"Sending transaction 06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:48.489Z"} +{"level":"info","message":"Received tx 06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4","namespace":"aztec:node","timestamp":"2023-12-16T03:02:48.489Z"} +{"encryptedLogCount":1,"encryptedLogSize":256,"eventName":"tx-added-to-pool","level":"debug","message":"Adding tx with id 06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4","namespace":"aztec:tx_pool","newContractCount":0,"newContractDataSize":152,"proofSize":0,"size":10113,"timestamp":"2023-12-16T03:02:48.489Z","txHash":"0x06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4","unencryptedLogCount":0,"unencryptedLogSize":12} +{"level":"debug","message":"JsonProxy:call sendTx -> {\n type: 'TxHash',\n data: '06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:48.490Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:48.492Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:48.492Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:48.493Z"} +{"level":"info","message":"Retrieved 1 txs from P2P pool","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:48.833Z"} +{"level":"debug","message":"Built global variables for block 0x0000000000000000000000000000000000000000000000000000000000000004: (0x0000000000000000000000000000000000000000000000000000000000007a69, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000004, 0x00000000000000000000000000000000000000000000000000000000657d1354)","namespace":"aztec:sequencer:simple_test_global_variable_builder","timestamp":"2023-12-16T03:02:48.839Z"} +{"level":"info","message":"Building block 4 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:48.840Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:48.841Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 3","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:48.841Z"} +{"level":"debug","message":"Processing tx 06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4","namespace":"aztec:sequencer:public-processor","timestamp":"2023-12-16T03:02:48.843Z"} +{"level":"debug","message":"Requesting L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:48.844Z"} +{"level":"debug","message":"Successfully retrieved L1 to L2 messages from contract","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:48.844Z"} +{"level":"debug","message":"Assembling block with txs 06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:48.844Z"} +{"level":"debug","message":"Building block 0x0000000000000000000000000000000000000000000000000000000000000004","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:48.844Z"} +{"level":"debug","message":"Running base rollup for 06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:48.844Z"} +{"circuitName":"base-rollup","duration":1886.094761967659,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T03:02:51.085Z"} +{"level":"debug","message":"Running base rollup for 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:51.085Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:51.087Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:51.087Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:51.088Z"} +{"circuitName":"base-rollup","duration":1706.6051709651947,"eventName":"circuit-simulation","inputSize":244068,"level":"debug","message":"Simulated base rollup circuit","namespace":"aztec:rollup-simulator","outputSize":881,"timestamp":"2023-12-16T03:02:53.105Z"} +{"level":"debug","message":"Running root rollup circuit","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:53.106Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:53.107Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:53.107Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:53.108Z"} +{"circuitName":"root-rollup","duration":129.83378797769547,"eventName":"circuit-simulation","inputSize":4088,"level":"debug","message":"Simulated root rollup circuit","namespace":"aztec:rollup-simulator","outputSize":889,"timestamp":"2023-12-16T03:02:53.272Z"} +{"level":"debug","message":"Updating and validating root trees","namespace":"aztec:sequencer:solo-block-builder","timestamp":"2023-12-16T03:02:53.272Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:53.298Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:53.298Z"} +{"blockNumber":4,"duration":4468.630504012108,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-built","level":"debug","message":"Assembled block 4","namespace":"aztec:sequencer","publicProcessDuration":0.8545609712600708,"rollupCircuitsDuration":4456.894818007946,"timestamp":"2023-12-16T03:02:53.301Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Publishing extended contract data with block hash 580cd9174bc0259835758229b5947937e6967d6d0713d004b583d514c8d2fe39","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:53.305Z"} +{"level":"debug","message":"Bytecode is 4 bytes and require 0.00003150201612903226 blobs","namespace":"aztec:sequencer:viem-tx-sender","timestamp":"2023-12-16T03:02:53.305Z"} +{"level":"debug","message":"Successfully published new contract data for block 4","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:53.335Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:54.117Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:54.117Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4',\n status: 'pending',\n error: '',\n blockHash: undefined,\n blockNumber: undefined,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:54.119Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:54.142Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:54.142Z"} +{"level":"debug","message":"Retrieved 1 block(s) from chain","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:54.151Z"} +{"level":"debug","message":"Retrieved extended contract data for l2 block number: 4","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:54.151Z"} +{"level":"debug","message":"Adding 1 extended contract data to block 4","namespace":"aztec:archiver:lmdb","timestamp":"2023-12-16T03:02:54.152Z"} +{"level":"debug","message":"Confirming l1 to l2 messages in store","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:54.152Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:54.291Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:54.291Z"} +{"level":"debug","message":"Block 4 is ours, committing world state","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:54.291Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:54.293Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:54.293Z"} +{"level":"debug","message":"Synched to block 4","namespace":"aztec:p2p","timestamp":"2023-12-16T03:02:54.313Z"} +{"level":"debug","message":"Tree CONTRACT_TREE synched with size 16 root 0x0f414d9e509c26a200a228d7a5fc95c2f5fc13615b6a4f9de5fb6474a6b215a0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:54.325Z"} +{"level":"debug","message":"Tree NULLIFIER_TREE synched with size 1152 root 0x089e0cb9030c7e8af6f3f441febe59b0cb7b63cf59968b7009d8e97616a15101","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:54.325Z"} +{"level":"debug","message":"Tree NOTE_HASH_TREE synched with size 1024 root 0x1b60827b5dbfb88bddd832088aab2dee5b6c2bd02ed3e856d6ca5cf59fe41e67","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:54.325Z"} +{"level":"debug","message":"Tree PUBLIC_DATA_TREE synched with size 288 root 0x1ed250ed73db6e70805c4efcf0056e8695b79cd3ba418e827c184dee6c6fb0e0","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:54.325Z"} +{"level":"debug","message":"Tree L1_TO_L2_MESSAGES_TREE synched with size 64 root 0x1864fcdaa80ff2719154fa7c8a9050662972707168d69eac9db6fd3110829f80","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:54.325Z"} +{"level":"debug","message":"Tree ARCHIVE synched with size 5 root 0x031d4dc6fa493fde4723faa3873222bd620da08703ff0f132f6289035770f3f1","namespace":"aztec:merkle_trees","timestamp":"2023-12-16T03:02:54.325Z"} +{"blockNumber":4,"duration":59.857722997665405,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"l2-block-handled","isBlockOurs":true,"level":"debug","message":"Handled new L2 block","namespace":"aztec:world_state","timestamp":"2023-12-16T03:02:54.351Z","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"blockNumber":4,"calldataGas":97572,"calldataSize":22116,"encryptedLogCount":1,"encryptedLogSize":272,"eventName":"rollup-published-to-l1","gasPrice":"1501348410","gasUsed":"380579","level":"info","message":"Published L2 block to L1 rollup contract","namespace":"aztec:sequencer:publisher","timestamp":"2023-12-16T03:02:54.412Z","transactionHash":"0xbc34dcb0b38de11ec95114685f470cfcd38caf59f557cc2f098594dd0ef75512","txCount":1,"unencryptedLogCount":0,"unencryptedLogSize":28} +{"level":"debug","message":"Successfully published block 4","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:54.413Z"} +{"level":"info","message":"Submitted rollup block 4 with 1 transactions","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:54.413Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:55.106Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:55.107Z"} +{"level":"debug","message":"newEncryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:55.108Z"} +{"level":"debug","message":"newUnencryptedLogs logs already attached","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:55.108Z"} +{"level":"debug","message":"Forwarding 1 encrypted logs and blocks to 3 note processors","namespace":"aztec:pxe_synchronizer","timestamp":"2023-12-16T03:02:55.111Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:55.113Z"} +{"level":"debug","message":"Executing unconstrained function 0x0000000000000000000000000000000000000000000000000000000000000000:00000000","namespace":"aztec:simulator:unconstrained_execution","timestamp":"2023-12-16T03:02:55.129Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.140Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.142Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt [\n {\n type: 'TxHash',\n data: '06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:55.165Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt <- [\n TxHash {\n buffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:55.166Z"} +{"level":"debug","message":"Attaching newEncryptedLogs 1 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:55.168Z"} +{"level":"debug","message":"Attaching newUnencryptedLogs 0 logs to block 4","namespace":"aztec:l2_block","timestamp":"2023-12-16T03:02:55.168Z"} +{"level":"debug","message":"JsonProxy:call getTxReceipt -> {\n type: 'TxReceipt',\n data: {\n txHash: '06e7a69114e159401c4cc4e6bd35d8b7de64884c34925a10da44343da9256eb4',\n status: 'mined',\n error: '',\n blockHash: 'c797edab1b3534a51733955f13209ae54fbc0540a1d2fbc5fb0f48c0e1bdd3e8',\n blockNumber: 4,\n contractAddress: undefined\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:55.180Z"} +{"level":"debug","message":"Added note for contract 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450 at slot 0x2d2bf38578928178a0053c369926cae62dc58e54a5e92a5922f73c3094c148d0 with nullifier 0x298472398f697b7b0c7a7cafa1982261dbe10c0245b91a0be17ff7fd2651a3f2","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:55.181Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:55.183Z"} +{"level":"debug","message":"Synched block 4","namespace":"aztec:note_processor","timestamp":"2023-12-16T03:02:55.185Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:55.186Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus <- []","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:55.186Z"} +{"level":"debug","message":"JsonProxy:call getSyncStatus -> {\n blocks: 4,\n notes: {\n '0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9': 4,\n '0x08145e8e8d46f51cda8d4c9cad81920236366abeafb8d387002bad879a3e87a81570b04ac829e4c007141d856d5a36d3b9c464e0f3c1c99cdbadaa6bb93f3257': 4,\n '0x13e6151ea8e7386a5e7c4c5221047bf73d0b1b7a2ad14d22b7f73e57c1fa00c614bc6da69da1b581b09ee6cdc195e5d58ae4dce01b63bbb744e58f03855a94dd': 4\n }\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:55.186Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData [\n {\n type: 'AztecAddress',\n data: '0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:55.192Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData <- [\n AztecAddress {\n asBuffer: \n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:55.193Z"} +{"level":"debug","message":"JsonProxy:call getExtendedContractData -> {\n type: 'ExtendedContractData',\n data: '115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c45000000000000000000000000000000000000000000000000025641569c0b5ce2b4bfe5a62c8f87c7ff6d5b48ee8e3d4b63765ef13e17eca0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'\n}","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:55.193Z"} +{"level":"debug","message":"No new blocks to process, current block number: 52","namespace":"aztec:archiver","timestamp":"2023-12-16T03:02:55.195Z"} +{"level":"debug","message":"JsonProxy:call proveInit [\n {\n type: 'TxExecutionRequest',\n data: '26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c37889ba1000100216efd34df0727b45320f50eddb6f97781f3613a14572aee8c36ea4cc8314a350000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a690000000000000000000000000000000000000000000000000000000000000001000000050000000126fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c048087fa6f786dffc982a89868d25f5cd9dfae666fa008f57f46a392f8f0024b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011048087fa6f786dffc982a89868d25f5cd9dfae666fa008f57f46a392f8f0024b0000000000000000000000000000000000000000000000000000000016cf6ba9115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111980150b6468549dee2a5dc1dac312c7587d2708a16720fa7ca406329c682ad216efd34df0727b45320f50eddb6f97781f3613a14572aee8c36ea4cc8314a35000000010d8aa0cf1d7acdd838c0e525ede436af72b64701681f02bcf7a6123828f70c6300000040000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000017000000000000000000000000000000000000000000000000000000000000002900000000000000000000000000000000000000000000000000000000000000a100000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000003c00000000000000000000000000000000000000000000000000000000000000a700000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000e9000000000000000000000000000000000000000000000000000000000000003600000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000087000000000000000000000000000000000000000000000000000000000000006f00000000000000000000000000000000000000000000000000000000000000ee00000000000000000000000000000000000000000000000000000000000000a800000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000350000000000000000000000000000000000000000000000000000000000000053000000000000000000000000000000000000000000000000000000000000006a0000000000000000000000000000000000000000000000000000000000000056000000000000000000000000000000000000000000000000000000000000007a00000000000000000000000000000000000000000000000000000000000000ee00000000000000000000000000000000000000000000000000000000000000f6000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000005700000000000000000000000000000000000000000000000000000000000000ba000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000d9000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000a3000000000000000000000000000000000000000000000000000000000000007900000000000000000000000000000000000000000000000000000000000000fd000000000000000000000000000000000000000000000000000000000000003900000000000000000000000000000000000000000000000000000000000000ff000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000910000000000000000000000000000000000000000000000000000000000000076000000000000000000000000000000000000000000000000000000000000004d000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000df000000000000000000000000000000000000000000000000000000000000005f000000000000000000000000000000000000000000000000000000000000007b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c70000000000000000000000000000000000000000000000000000000000000037000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000dd0000000000000000000000000000000000000000000000000000000000000033000000000000000000000000000000000000000000000000000000000000002b000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000043000000000000000000000000000000000000000000000000000000000000008a00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000047000000000000000000000000000000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000007100000000000000000000000000000000000000000000000000000000000000930000000000000000000000000000000000000000000000000000000000000041'\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:55.211Z"} +{"level":"debug","message":"JsonProxy:call proveInit <- [\n TxExecutionRequest {\n origin: Fr {\n asBuffer: \n },\n functionData: FunctionData {\n selector: [FunctionSelector],\n isInternal: false,\n isPrivate: true,\n isConstructor: false\n },\n argsHash: Fr {\n asBuffer: \n },\n txContext: TxContext {\n isFeePaymentTx: false,\n isRebatePaymentTx: false,\n isContractDeploymentTx: false,\n contractDeploymentData: [ContractDeploymentData],\n chainId: [Fr],\n version: [Fr]\n },\n packedArguments: [\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments],\n [PackedArguments]\n ],\n authWitnesses: [ [AuthWitness] ]\n }\n]","namespace":"json-rpc:json_proxy","timestamp":"2023-12-16T03:02:55.212Z"} +{"level":"debug","message":"Retrieving simulation parameters for contract's function...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:55.212Z"} +{"level":"debug","message":"Executing simulator...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:55.213Z"} +{"level":"debug","message":"Executing external function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:55.214Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.236Z"} +{"level":"debug","message":"Returning 1 notes for 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c at 0x0000000000000000000000000000000000000000000000000000000000000001: 0x1935a42b87d052c51d6609ddc545231a2c918802eb7abaa20398e7d58490390a:[0x27c20118733174347b8082f578a7d8fb84b3ad38be293715eee8119ee5cd8a6d,0x0d6b7d8124b37359663e75bcd2756f544a93b821a06f8e33fba68cc8029794d9,0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T03:02:55.236Z"} +{"level":"debug","message":"Oracle callback getAuthWitness","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.247Z"} +{"level":"debug","message":"Oracle callback callPrivateFunction","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.276Z"} +{"level":"debug","message":"Calling private function 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:16cf6ba9 from 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T03:02:55.276Z"} +{"level":"debug","message":"Executing external function 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450:16cf6ba9","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:55.281Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.288Z"} +{"level":"debug","message":"Returning 1 notes for 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450 at 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43: 0x1069f15b9ac816ed438a7c5ade18708519118b2c2b52971cba080114d36dcad4:[0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000000000000000000000000002]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T03:02:55.289Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.305Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.306Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.310Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.313Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.314Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.315Z"} +{"level":"debug","message":"Oracle callback getNotes","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.316Z"} +{"level":"debug","message":"Returning 1 notes for 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450 at 0x276fbc7c451b48310a2478fb580a794757cfa45725e7f51477e36f777e76cf43: 0x0000000000000000000000000000000000000000000000000000000000000000:[0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000000000000000000000000002]","namespace":"aztec:simulator:client_execution_context","timestamp":"2023-12-16T03:02:55.317Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.332Z"} +{"level":"debug","message":"Oracle callback getSecretKey","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.333Z"} +{"level":"debug","message":"Oracle callback notifyNullifiedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.337Z"} +{"level":"debug","message":"Oracle callback notifyCreatedNote","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.341Z"} +{"level":"debug","message":"Oracle callback getPublicKeyAndPartialAddress","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.342Z"} +{"level":"debug","message":"Oracle callback emitEncryptedLog","namespace":"aztec:simulator:acvm","timestamp":"2023-12-16T03:02:55.343Z"} +{"level":"debug","message":"Returning from call to 0x115ad9835f284a18a68a0555471da9bfa381129b960e6798961156b12424c450:16cf6ba9","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:55.351Z"} +{"level":"debug","message":"Returning from call to 0x26fc40ccf8622e4ac4bb1132762cb3917933b1b556155b1964bbbfdd3071ff5c:37889ba1","namespace":"aztec:simulator:secret_execution","timestamp":"2023-12-16T03:02:55.463Z"} +{"level":"debug","message":"Simulation completed!","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:55.463Z"} +{"level":"debug","message":"Executing kernel prover for single init proof...","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:55.463Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-16T03:02:55.473Z"} +{"level":"debug","message":"Block has been synced","namespace":"aztec:sequencer","timestamp":"2023-12-16T03:02:55.473Z"} +{"level":"debug","message":"Using committed db for block latest, world state synced upto 4","namespace":"aztec:node","timestamp":"2023-12-16T03:02:55.479Z"} +{"circuitName":"private-kernel-init","duration":210.47418200969696,"eventName":"circuit-simulation","inputSize":43109,"level":"debug","message":"Simulated private kernel init","namespace":"aztec:kernel_proof_creator","outputSize":20441,"timestamp":"2023-12-16T03:02:55.695Z"} +{"level":"debug","message":"Skipping private kernel init proving...","namespace":"aztec:kernel_proof_creator","timestamp":"2023-12-16T03:02:55.695Z"} +{"level":"debug","message":"Successfully executed and proved Kernel init proof iteration","namespace":"aztec:pxe_service","timestamp":"2023-12-16T03:02:55.705Z"} diff --git a/log/aztec-sandbox-2023-12-15.debug.log.gz b/log/aztec-sandbox-2023-12-15.debug.log.gz new file mode 100644 index 00000000000..e69de29bb2d diff --git a/log/aztec-sandbox-2023-12-17.debug.log b/log/aztec-sandbox-2023-12-17.debug.log new file mode 100644 index 00000000000..e69de29bb2d diff --git a/log/aztec-sandbox.debug.log b/log/aztec-sandbox.debug.log index 950eab0e7ef..d080be84e72 120000 --- a/log/aztec-sandbox.debug.log +++ b/log/aztec-sandbox.debug.log @@ -1 +1 @@ -aztec-sandbox-2023-12-10.debug.log \ No newline at end of file +aztec-sandbox-2023-12-17.debug.log \ No newline at end of file diff --git a/yarn-project/aztec.js/src/pxe_client.ts b/yarn-project/aztec.js/src/pxe_client.ts index fbcf8d6d1aa..6875b3255fc 100644 --- a/yarn-project/aztec.js/src/pxe_client.ts +++ b/yarn-project/aztec.js/src/pxe_client.ts @@ -6,6 +6,9 @@ import { FunctionSelector, GrumpkinScalar, Point, + KernelCircuitPublicInputs, + Proof, + VerificationKey, } from '@aztec/circuits.js'; import { createJsonRpcClient, makeFetch } from '@aztec/foundation/json-rpc/client'; import { @@ -23,8 +26,8 @@ import { Tx, TxExecutionRequest, TxHash, - TxReceipt, // FunctionCall, - // ContractDao, + TxReceipt, + KernelProofData } from '@aztec/types'; // import { ExecutionResult } from '@aztec/acir-simulator'; @@ -59,8 +62,16 @@ export const createPXEClient = (url: string, fetch = makeFetch([1, 2, 3], true)) L2Tx, LogId, L2Block, + Proof, + VerificationKey, + }, + { + Tx, + TxReceipt, + L2BlockL2Logs, + KernelCircuitPublicInputs, + KernelProofData }, - { Tx, TxReceipt, L2BlockL2Logs }, false, fetch, ); diff --git a/yarn-project/aztec.js/src/wallet/base_wallet.ts b/yarn-project/aztec.js/src/wallet/base_wallet.ts index 0d66260daf1..6463b26d867 100644 --- a/yarn-project/aztec.js/src/wallet/base_wallet.ts +++ b/yarn-project/aztec.js/src/wallet/base_wallet.ts @@ -19,9 +19,7 @@ import { TxExecutionRequest, TxHash, TxReceipt, - ProofOutput, - OutputNoteData, - ExecutionResult + KernelProofData } from '@aztec/types'; import { CompleteAddress } from '../index.js'; @@ -138,16 +136,11 @@ export abstract class BaseWallet implements Wallet { return this.pxe.simulateAndProve(txExecutionRequest, newContract); } - proveInit(request: TxExecutionRequest) { + proveInit(request: TxExecutionRequest): Promise { return this.pxe.proveInit(request); } - proveInner( - previousProof: ProofOutput, - previousVK: VerificationKey, - executionStack: ExecutionResult[], - newNotes: { [commitmentStr: string]: OutputNoteData }, - ) { - return this.pxe.proveInner(previousProof, previousVK, executionStack, newNotes); + proveInner(input: KernelProofData): Promise { + return this.pxe.proveInner(input); } } diff --git a/yarn-project/circuits.js/src/structs/kernel/public_inputs.ts b/yarn-project/circuits.js/src/structs/kernel/public_inputs.ts index 9c712dd11cc..99dd494cdad 100644 --- a/yarn-project/circuits.js/src/structs/kernel/public_inputs.ts +++ b/yarn-project/circuits.js/src/structs/kernel/public_inputs.ts @@ -41,6 +41,31 @@ export class KernelCircuitPublicInputs { ); } + /** + * Convert a KernelCircuitPublicInputs class object to a plain JSON object. + * @returns A plain object with KernelCircuitPublicInputs properties, serialized into buffers. + */ + public toJSON() { + return { + end: this.end.toBuffer(), + constants: this.constants.toBuffer(), + isPrivate: this.isPrivate, + }; + } + + /** + * Convert a plain JSON object to a KernelCircuitsPublicInputs class object. + * @param obj - A plain KernelCircuitsPublicInputs JSON object with end and constants as serialized buffers + * @returns A KernelCircuitsPublicInputs class object. + */ + public static fromJSON(obj: any) { + return new KernelCircuitPublicInputs( + CombinedAccumulatedData.fromBuffer(obj.end), + CombinedConstantData.fromBuffer(obj.constants), + obj.isPrivate, + ); + } + static empty() { return new KernelCircuitPublicInputs(CombinedAccumulatedData.empty(), CombinedConstantData.empty(), true); } diff --git a/yarn-project/circuits.js/src/structs/proof.ts b/yarn-project/circuits.js/src/structs/proof.ts index a1abedf33c1..e7fb2d1742a 100644 --- a/yarn-project/circuits.js/src/structs/proof.ts +++ b/yarn-project/circuits.js/src/structs/proof.ts @@ -41,6 +41,25 @@ export class Proof { public toBuffer() { return serializeToBuffer(this.buffer.length, this.buffer); } + + /** + * Deserializes `Proof` object from a hex string representation. + * @param data - A hex string representation of the proof. + * @returns A `Proof` object. + */ + public static fromString(data: string): Proof { + return Proof.fromBuffer(Buffer.from(data, 'hex')); + } + + /** + * Serializes and stringifies the Proof instance to a custom buffer format. + * This function serializes the Proof's buffer length and data sequentially into a new Buffer, then into a string. + * + * @returns A hex string containing the serialized proof data in custom format. + */ + public toString() { + return this.toBuffer().toString('hex'); + } } /** diff --git a/yarn-project/circuits.js/src/structs/verification_key.ts b/yarn-project/circuits.js/src/structs/verification_key.ts index fbd38444458..35499fa872a 100644 --- a/yarn-project/circuits.js/src/structs/verification_key.ts +++ b/yarn-project/circuits.js/src/structs/verification_key.ts @@ -138,6 +138,23 @@ export class VerificationKey { ); } + /** + * Serialize as a hex string. + * @returns The hex string. + */ + public toString() { + return this.toBuffer().toString('hex'); + } + + /** + * Deserializes from a hex string. + * @param data - The hex string. + * @returns The VerificationKey. + */ + public static fromString(data: string): VerificationKey { + return VerificationKey.fromBuffer(Buffer.from(data, 'hex')); + } + /** * Builds a fake verification key that should be accepted by circuits. * @returns A fake verification key. diff --git a/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json b/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json index d9f2bf7fba2..f665d1a9604 100644 --- a/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json +++ b/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json @@ -1,15 +1,20 @@ { - "keep": { - "days": false, - "amount": 5 - }, - "auditLog": "log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json", - "files": [ - { - "date": 1702241505455, - "name": "log/aztec-sandbox-2023-12-10.debug.log", - "hash": "69090b4bd3d286b65ce870848b37e7c1f66844a737bf34ee0eed2581361ae901" - } - ], - "hashType": "sha256" -} + "keep": { + "days": false, + "amount": 5 + }, + "auditLog": "log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json", + "files": [ + { + "date": 1702241505455, + "name": "log/aztec-sandbox-2023-12-10.debug.log", + "hash": "69090b4bd3d286b65ce870848b37e7c1f66844a737bf34ee0eed2581361ae901" + }, + { + "date": 1702867845561, + "name": "log/aztec-sandbox-2023-12-17.debug.log", + "hash": "6bd32e9d4b8a6f1f28c652507cddd56dd1c38649d849493f3c3a7b950fa9751a" + } + ], + "hashType": "sha256" +} \ No newline at end of file diff --git a/yarn-project/pxe/src/kernel_prover/kernel_prover.ts b/yarn-project/pxe/src/kernel_prover/kernel_prover.ts index a8a07e77519..34d9edba929 100644 --- a/yarn-project/pxe/src/kernel_prover/kernel_prover.ts +++ b/yarn-project/pxe/src/kernel_prover/kernel_prover.ts @@ -31,7 +31,7 @@ import { pushTestData } from '@aztec/foundation/testing'; import { KernelProofCreator, ProofCreator } from './proof_creator.js'; import { ProvingDataOracle } from './proving_data_oracle.js'; -import { ProofOutput, ProofOutputFinal, OutputNoteData } from '@aztec/types'; +import { ProofOutput, ProofOutputFinal, OutputNoteData, KernelProofData } from '@aztec/types'; /** * Represents the output data of the Kernel Prover. @@ -55,27 +55,16 @@ export class KernelProver { /** * Generates a proof of the first i - * @param txRequest - * @param executionResult - * @returns + * @param txRequest - + * @param executionResult - + * @returns - the kernel proof */ async proveInit( txRequest: TxRequest, executionResult: ExecutionResult, - ): Promise<{ - proof: ProofOutput; - previousVK: VerificationKey; - executionStack: ExecutionResult[]; - newNotes: { [commitmentStr: string]: OutputNoteData }; - }> { + ): Promise { const executionStack = [executionResult]; const newNotes: { [commitmentStr: string]: OutputNoteData } = {}; - let previousVerificationKey = VerificationKey.makeFake(); - - let output: ProofOutput = { - publicInputs: PrivateKernelPublicInputs.empty(), - proof: makeEmptyProof(), - }; /// BUILD PRIVATE CALL DATA FOR CURRENT ITERATION /// const currentExecution = executionStack.pop()!; @@ -103,28 +92,23 @@ export class KernelProver { ); /// PROVE /// const proofInput = new PrivateKernelInputsInit(txRequest, privateCallData); - output = await this.proofCreator.createProofInit(proofInput); + const output = await this.proofCreator.createProofInit(proofInput); (await this.getNewNotes(currentExecution)).forEach(n => { newNotes[n.commitment.toString()] = n; }); - previousVerificationKey = privateCallData.vk; - return { proof: output, previousVK: previousVerificationKey, executionStack, newNotes }; + return new KernelProofData(output, privateCallData.vk, executionStack, newNotes); } - async proveInner( - previousProof: ProofOutput, - previousVK: VerificationKey, - executionStack: ExecutionResult[], - newNotes: { [commitmentStr: string]: OutputNoteData }, - ): Promise<{ - proof: ProofOutput; - previousVK: VerificationKey; - executionStack: ExecutionResult[]; - newNotes: { [commitmentStr: string]: OutputNoteData }; - }> { + /** + * Generates an interstitial kernel proof from a previous iteration in the stack + * @param input - previous kernel circuit iteration info + * @returns - output of executed kernel circuit + */ + async proveInner(input: KernelProofData): Promise { /// BUILD PRIVATE CALL DATA FOR CURRENT ITERATION /// - const currentExecution = executionStack.pop()!; + const { proof, verificationKey, executionStack, newNotes } = input; + const currentExecution = input.executionStack.pop()!; executionStack.push(...currentExecution.nestedExecutions); const privateCallRequests = currentExecution.nestedExecutions.map(result => result.callStackItem.toCallRequest()); @@ -150,11 +134,11 @@ export class KernelProver { readRequestMembershipWitnesses, ); /// BUILD PREVIOUS KERNEL DATA /// - const previousVkMembershipWitness = await this.oracle.getVkMembershipWitness(previousVK); + const previousVkMembershipWitness = await this.oracle.getVkMembershipWitness(verificationKey); const previousKernelData = new PreviousKernelData( - previousProof.publicInputs, - previousProof.proof, - previousVK, + proof.publicInputs, + proof.proof, + verificationKey, Number(previousVkMembershipWitness.leafIndex), assertLength(previousVkMembershipWitness.siblingPath, VK_TREE_HEIGHT), ); @@ -166,7 +150,7 @@ export class KernelProver { newNotes[n.commitment.toString()] = n; }); - return { proof: output, previousVK: privateCallData.vk, executionStack, newNotes }; + return new KernelProofData(output, privateCallData.vk, executionStack, newNotes); } /** diff --git a/yarn-project/pxe/src/pxe_http/pxe_http_server.ts b/yarn-project/pxe/src/pxe_http/pxe_http_server.ts index 0cde8a8b396..a4f21f09e62 100644 --- a/yarn-project/pxe/src/pxe_http/pxe_http_server.ts +++ b/yarn-project/pxe/src/pxe_http/pxe_http_server.ts @@ -1,4 +1,4 @@ -import { FunctionSelector } from '@aztec/circuits.js'; +import { FunctionSelector, KernelCircuitPublicInputs, Proof, VerificationKey } from '@aztec/circuits.js'; import { AztecAddress } from '@aztec/foundation/aztec-address'; import { EthAddress } from '@aztec/foundation/eth-address'; import { Fr, GrumpkinScalar, Point } from '@aztec/foundation/fields'; @@ -20,6 +20,7 @@ import { TxExecutionRequest, TxHash, TxReceipt, + KernelProofData } from '@aztec/types'; import http from 'http'; @@ -53,8 +54,16 @@ export function createPXERpcServer(pxeService: PXE): JsonRpcServer { L2Block, L2Tx, LogId, + Proof, + VerificationKey, + }, + { + Tx, + TxReceipt, + L2BlockL2Logs, + KernelCircuitPublicInputs, + KernelProofData }, - { Tx, TxReceipt, L2BlockL2Logs }, false, ['start', 'stop'], ); diff --git a/yarn-project/pxe/src/pxe_service/pxe_service.ts b/yarn-project/pxe/src/pxe_service/pxe_service.ts index 5be79d7fbcb..463eea793bc 100644 --- a/yarn-project/pxe/src/pxe_service/pxe_service.ts +++ b/yarn-project/pxe/src/pxe_service/pxe_service.ts @@ -51,9 +51,7 @@ import { TxStatus, getNewContractPublicFunctions, isNoirCallStackUnresolved, - ProofOutput, - ProofOutputFinal, - OutputNoteData + KernelProofData } from '@aztec/types'; import { PXEServiceConfig, getPackageInfo } from '../config/index.js'; @@ -673,26 +671,25 @@ export class PXEService implements PXE { } /// STATE CHANNEL API /// - public async proveInit(request: TxExecutionRequest) { + public async proveInit(request: TxExecutionRequest): Promise { const executionResult = await this.simulate(request); const kernelOracle = new KernelOracle(this.contractDataOracle, this.node); const kernelProver = new KernelProver(kernelOracle); this.log(`Executing kernel prover for single init proof...`); const result = await kernelProver.proveInit(request.toTxRequest(), executionResult); + // console.log("Execution Result result: ", result.proof); + // console.log("Execution Result result: ", result.verificationKey); + // console.log("Execution Result result: ", result.executionStack); + // console.log("New notes result: ", result.newNotes); this.log(`Successfully executed and proved Kernel init proof iteration`); return result; } - public async proveInner( - previousProof: ProofOutput, - previousVK: VerificationKey, - executionStack: ExecutionResult[], - newNotes: { [commitmentStr: string]: OutputNoteData }, - ) { + public async proveInner(input: KernelProofData): Promise { const kernelOracle = new KernelOracle(this.contractDataOracle, this.node); const kernelProver = new KernelProver(kernelOracle); this.log(`Executing kernel prover for single inner proof...`); - const result = await kernelProver.proveInner(previousProof, previousVK, executionStack, newNotes); + const result = await kernelProver.proveInner(input); this.log(`Successfully executed and proved Kernel inner proof iteration`); return result; } diff --git a/yarn-project/types/src/interfaces/execution_result.ts b/yarn-project/types/src/interfaces/execution_result.ts index 0649bdbe171..1b9d8d7f912 100644 --- a/yarn-project/types/src/interfaces/execution_result.ts +++ b/yarn-project/types/src/interfaces/execution_result.ts @@ -40,7 +40,7 @@ export interface ExecutionResult { /** The decoded return values of the executed function. */ returnValues: DecodedReturn; /** The nested executions. */ - nestedExecutions: this[]; + nestedExecutions: ExecutionResult[]; /** Enqueued public function execution requests to be picked up by the sequencer. */ enqueuedPublicFunctionCalls: PublicCallRequest[]; /** @@ -53,4 +53,85 @@ export interface ExecutionResult { * Note: These are preimages to `unencryptedLogsHash`. */ unencryptedLogs: FunctionL2Logs; +} + +/** + * Serializes or deserializes an execution result + */ +export class ExecutionResultSerializer implements ExecutionResult { + constructor( + /** The ACIR bytecode. */ + public readonly acir: Buffer, + /** The verification key. */ + public readonly vk: Buffer, + /** The partial witness. */ + public readonly partialWitness: Map, + /** The call stack item. */ + public readonly callStackItem: PrivateCallStackItem, + /** The partially filled-in read request membership witnesses for commitments being read. */ + public readonly readRequestPartialWitnesses: ReadRequestMembershipWitness[], + /** The notes created in the executed function. */ + public readonly newNotes: NoteAndSlot[], + /** The decoded return values of the executed function. */ + public readonly returnValues: DecodedReturn, + /** The nested executions. */ + public readonly nestedExecutions: ExecutionResult[], + /** Enqueued public function execution requests to be picked up by the sequencer. */ + public readonly enqueuedPublicFunctionCalls: PublicCallRequest[], + /** Encrypted logs emitted during execution of this function call. */ + public readonly encryptedLogs: FunctionL2Logs, + /** Unencrypted logs emitted during execution of this function call. */ + public readonly unencryptedLogs: FunctionL2Logs, + ) { }; + + /** + * Converts the ExecutionResult instance to a JSON object + */ + public toJSON(): any { + return { + acir: this.acir.toString('hex'), + vk: this.vk.toString('hex'), + partialWitness: JSON.stringify(this.partialWitness), + callStackItem: this.callStackItem.toBuffer().toString('hex'), + readRequestPartialWitnesses: this.readRequestPartialWitnesses + .map(rr => rr.toBuffer().toString('hex')), + newNotes: this.newNotes.map(nn => { + return { + note: nn.note.toString(), + storageSlot: nn.storageSlot.toString(), + } + }), + returnValues: JSON.stringify(this.returnValues), + nestedExecutions: this.nestedExecutions + .map(ne => (ne as ExecutionResultSerializer).toJSON()), + enqueuedPublicFunctionCalls: this.enqueuedPublicFunctionCalls + .map(ec => ec.toBuffer().toString('hex')), + encryptedLogs: this.encryptedLogs.toBuffer().toString('hex'), + unencryptedLogs: this.unencryptedLogs.toBuffer().toString('hex'), + } + } + + public static fromJSON(obj: any): ExecutionResultSerializer { + return { + acir: Buffer.from(obj.acir, 'hex'), + vk: Buffer.from(obj.vk, 'hex'), + partialWitness: new Map(JSON.parse(obj.partialWitness)), + callStackItem: PrivateCallStackItem.fromBuffer(Buffer.from(obj.callStackItem, 'hex')), + readRequestPartialWitnesses: obj.readRequestPartialWitnesses + .map((rr: string) => ReadRequestMembershipWitness.fromBuffer(Buffer.from(rr, 'hex'))), + newNotes: obj.newNotes.map((nn: any) => { + return { + note: Note.fromString(nn.note), + storageSlot: Fr.fromString(nn.storageSlot), + } + }), + returnValues: JSON.parse(obj.returnValues), + nestedExecutions: obj.nestedExecutions + .map((ne: any) => ExecutionResultSerializer.fromJSON(ne)), + enqueuedPublicFunctionCalls: obj.enqueuedPublicFunctionCalls + .map((ec: string) => PublicCallRequest.fromBuffer(Buffer.from(ec, 'hex'))), + encryptedLogs: FunctionL2Logs.fromBuffer(Buffer.from(obj.encryptedLogs, 'hex')), + unencryptedLogs: FunctionL2Logs.fromBuffer(Buffer.from(obj.unencryptedLogs, 'hex')), + } as ExecutionResultSerializer; + } } \ No newline at end of file diff --git a/yarn-project/types/src/interfaces/index.ts b/yarn-project/types/src/interfaces/index.ts index 6b8f4433759..932267058a0 100644 --- a/yarn-project/types/src/interfaces/index.ts +++ b/yarn-project/types/src/interfaces/index.ts @@ -11,3 +11,4 @@ export * from './execution_result.js'; export * from './proof_output.js'; export * from './output_note_data.js'; export * from './public_data_tree.js'; +export * from './kernel_proof_data.js'; \ No newline at end of file diff --git a/yarn-project/types/src/interfaces/kernel_proof_data.ts b/yarn-project/types/src/interfaces/kernel_proof_data.ts new file mode 100644 index 00000000000..2d588107260 --- /dev/null +++ b/yarn-project/types/src/interfaces/kernel_proof_data.ts @@ -0,0 +1,118 @@ +import { ExecutionResult, ExecutionResultSerializer } from "./execution_result.js"; +import { VerificationKey, Proof, KernelCircuitPublicInputs, AztecAddress, Fr } from "@aztec/circuits.js" +import { ProofOutput } from "./proof_output.js" +import { OutputNoteData } from "./output_note_data.js"; +import { Note } from "../index.js"; +/** + * Interstitial data for each kernel proof + */ +export class KernelProofData { + constructor( + /** + * The actual proof of execution for the Kernel Circuit, including public inputs + */ + public readonly proof: ProofOutput, + /** + * The verification key for the function circuit proof verified inside the kernel circuit + */ + public readonly verificationKey: VerificationKey, + /** + * The result of executing the kernel circuit, including the nested executions + */ + public readonly executionStack: ExecutionResult[], + /** + * Notes created by the execution of the kernel circuit + */ + public readonly newNotes: { [commitmentStr: string]: OutputNoteData }, + ) {} + + /** + * Converts the KernelProofData instance to a JSON object + */ + public toJSON() { + // convert proof + const proof = { + proof: this.proof.toString(), + publicInputs: this.proof.publicInputs.toJSON() + }; + // convert vkey + const verificationKey = this.verificationKey.toString(); + // convert execution result + // const executionStack = this.executionStack + // .map(er => (er as ExecutionResultSerializer).toJSON()); + const executionStack: ExecutionResult[] = []; + // convert output note data + const outputNoteData: any = {}; + for (const key in this.newNotes) { + outputNoteData[key] = outputNoteDataToJson(this.newNotes[key]) + } + // const outputNoteData = instance.outputNoteData + return { + proof, + verificationKey, + executionStack, + outputNoteData + } + } + + /** + * Converts serialized json object to KernelProofData instance + * @param obj - JSON object to convert to KernelProofData + * @returns KernelProofData instance + */ + public static fromJSON(obj: any): KernelProofData { + // convert proof + const proof = { + proof: Proof.fromString(obj.proof.proof), + publicInputs: KernelCircuitPublicInputs.fromJSON(obj.proof.publicInputs) + }; + // convert vkey + const verificationKey = VerificationKey.fromString(obj.verificationKey); + // convert execution result + // const executionStack = obj.executionStack + // .map((er: any) => ExecutionResultSerializer.fromJSON(er)); + const executionStack: ExecutionResult[] = []; + // convert output note data + const newNotes: { [commitmentStr: string]: OutputNoteData } = {}; + for (const key in obj.newNotes) { + newNotes[key] = outputNoteDataFromJson(obj.newNotes[key]) + } + + return new KernelProofData( + proof, + verificationKey, + executionStack, + newNotes + ); + } +} + +/** + * Converts output note data to stringified JSON + * @param data - output note data to convert + */ +function outputNoteDataToJson(data: OutputNoteData) { + return { + contractAddress: data.contractAddress.toString(), + data: { + note: data.data.note.toString(), + storageSlot: data.data.storageSlot.toString(), + }, + commitment: data.commitment.toString() + } +} + +/** + * Converts stringified JSON to output note data + * @param data - stringified JSON to convert + */ +function outputNoteDataFromJson(data: any): OutputNoteData { + return { + contractAddress: AztecAddress.fromString(data.contractAddress), + data: { + note: Note.fromString(data.data.note), + storageSlot: Fr.fromString(data.data.storageSlot), + }, + commitment: Fr.fromString(data.commitment) + } +} \ No newline at end of file diff --git a/yarn-project/types/src/interfaces/pxe.ts b/yarn-project/types/src/interfaces/pxe.ts index 05f535531b3..8c9990f8078 100644 --- a/yarn-project/types/src/interfaces/pxe.ts +++ b/yarn-project/types/src/interfaces/pxe.ts @@ -24,6 +24,7 @@ import { ExecutionResult, ProofOutput, OutputNoteData, + KernelProofData, } from '@aztec/types'; import { NoteFilter } from '../notes/note_filter.js'; @@ -295,7 +296,7 @@ export interface PXE { * Simulate execution of a transaction * * @param txRequest - transaction to simulate execution for - * @return The result of the simulation of the kernel proof + * @returns The result of the simulation of the kernel proof */ simulate(txRequest: TxExecutionRequest): Promise; @@ -324,14 +325,9 @@ export interface PXE { simulateAndProve(txExecutionRequest: TxExecutionRequest, newContract: ContractDao | undefined): Promise; /** Proves a single init kernel proof iteration */ - proveInit(request: TxExecutionRequest): Promise; + proveInit(request: TxExecutionRequest): Promise; /** Proves a single inner step kernel proof iteration */ - proveInner( - previousProof: ProofOutput, - previousVK: VerificationKey, - executionStack: ExecutionResult[], - newNotes: { [commitmentStr: string]: OutputNoteData }, - ): Promise; + proveInner(input: KernelProofData): Promise; } // docs:end:pxe-interface From a69a4ce5031a7fd4b15b3bb941596e9c8bd3bfda Mon Sep 17 00:00:00 2001 From: Jack Gilcrest Date: Mon, 22 Jan 2024 03:05:56 -0700 Subject: [PATCH 8/9] pre-merge --- .../NoirJS/noir_js/functions/ecdsa_secp256k1_verify.md | 1 - noir/docs/docs/reference/NoirJS/noir_js/index.md | 2 +- yarn-project/aztec-node/src/bin/index.ts | 4 ---- yarn-project/ethereum/src/constants.ts | 2 +- .../log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json | 5 +++++ yarn-project/pxe/src/pxe_service/pxe_service.ts | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/noir/docs/docs/reference/NoirJS/noir_js/functions/ecdsa_secp256k1_verify.md b/noir/docs/docs/reference/NoirJS/noir_js/functions/ecdsa_secp256k1_verify.md index 0ba5783f0d5..5e3cd53e9d3 100644 --- a/noir/docs/docs/reference/NoirJS/noir_js/functions/ecdsa_secp256k1_verify.md +++ b/noir/docs/docs/reference/NoirJS/noir_js/functions/ecdsa_secp256k1_verify.md @@ -8,7 +8,6 @@ ecdsa_secp256k1_verify( signature): boolean ``` -Calculates the Blake2s256 hash of the input bytes and represents these as a single field element. Verifies a ECDSA signature over the secp256k1 curve. ## Parameters diff --git a/noir/docs/docs/reference/NoirJS/noir_js/index.md b/noir/docs/docs/reference/NoirJS/noir_js/index.md index 8b9e35bc9a1..d600e21b299 100644 --- a/noir/docs/docs/reference/NoirJS/noir_js/index.md +++ b/noir/docs/docs/reference/NoirJS/noir_js/index.md @@ -26,7 +26,7 @@ | :------ | :------ | | [and](functions/and.md) | Performs a bitwise AND operation between `lhs` and `rhs` | | [blake2s256](functions/blake2s256.md) | Calculates the Blake2s256 hash of the input bytes | -| [ecdsa\_secp256k1\_verify](functions/ecdsa_secp256k1_verify.md) | Calculates the Blake2s256 hash of the input bytes and represents these as a single field element. | +| [ecdsa\_secp256k1\_verify](functions/ecdsa_secp256k1_verify.md) | Verifies a ECDSA signature over the secp256k1 curve. | | [ecdsa\_secp256r1\_verify](functions/ecdsa_secp256r1_verify.md) | Verifies a ECDSA signature over the secp256r1 curve. | | [keccak256](functions/keccak256.md) | Calculates the Keccak256 hash of the input bytes | | [sha256](functions/sha256.md) | Calculates the SHA256 hash of the input bytes | diff --git a/yarn-project/aztec-node/src/bin/index.ts b/yarn-project/aztec-node/src/bin/index.ts index 7d265c0f2f6..c8578e492b7 100644 --- a/yarn-project/aztec-node/src/bin/index.ts +++ b/yarn-project/aztec-node/src/bin/index.ts @@ -14,7 +14,6 @@ const logger = createDebugLogger('aztec:node'); */ async function createAndDeployAztecNode() { const aztecNodeConfig: AztecNodeConfig = { ...getConfigEnvVars() }; - return await AztecNodeService.createAndSync(aztecNodeConfig); } @@ -23,9 +22,7 @@ async function createAndDeployAztecNode() { */ async function main() { logger.info(`Setting up Aztec Node...`); - const aztecNode = await createAndDeployAztecNode(); - const shutdown = async () => { logger.info('Shutting down...'); await aztecNode.stop(); @@ -34,7 +31,6 @@ async function main() { process.once('SIGINT', shutdown); process.once('SIGTERM', shutdown); - const rpcServer = createAztecNodeRpcServer(aztecNode); const app = rpcServer.getApp(API_PREFIX); diff --git a/yarn-project/ethereum/src/constants.ts b/yarn-project/ethereum/src/constants.ts index fa71f161b2a..98165ecacfc 100644 --- a/yarn-project/ethereum/src/constants.ts +++ b/yarn-project/ethereum/src/constants.ts @@ -1,3 +1,3 @@ import { Hex } from 'viem'; -export const NULL_KEY: Hex = `0x${'0000000000000000000000000000000000000000000000000000000000000000'}`; +export const NULL_KEY: Hex = `0x${'0000000000000000000000000000000000000000000000000000000000000001'}`; diff --git a/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json b/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json index f665d1a9604..cbdb31595b7 100644 --- a/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json +++ b/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json @@ -14,6 +14,11 @@ "date": 1702867845561, "name": "log/aztec-sandbox-2023-12-17.debug.log", "hash": "6bd32e9d4b8a6f1f28c652507cddd56dd1c38649d849493f3c3a7b950fa9751a" + }, + { + "date": 1705917331859, + "name": "log/aztec-sandbox-2024-01-22.debug.log", + "hash": "c16d41bf4afbe4cb33024785197ec6b11e1c829303a0999cd399fe224c6bf480" } ], "hashType": "sha256" diff --git a/yarn-project/pxe/src/pxe_service/pxe_service.ts b/yarn-project/pxe/src/pxe_service/pxe_service.ts index 8da84c41574..c2c99a56866 100644 --- a/yarn-project/pxe/src/pxe_service/pxe_service.ts +++ b/yarn-project/pxe/src/pxe_service/pxe_service.ts @@ -355,7 +355,7 @@ export class PXEService implements PXE { const deployedContractAddress = txRequest.txContext.isContractDeploymentTx ? txRequest.origin : undefined; const newContract = deployedContractAddress ? await this.db.getContract(deployedContractAddress) : undefined; - const tx = await this.#simulateAndProve(txRequest, newContract); + const tx = await this.simulateAndProve(txRequest, newContract); if (simulatePublic) { await this.#simulatePublicCalls(tx); } From ad6e1f57678a1a7860d7b7b964e31b5dadeedc37 Mon Sep 17 00:00:00 2001 From: Jack Gilcrest Date: Sat, 27 Jan 2024 20:36:12 -0700 Subject: [PATCH 9/9] circuit simulator works --- .../acir-simulator/src/client/simulator.ts | 1 - yarn-project/aztec.js/src/pxe_client.ts | 4 +- .../aztec.js/src/wallet/base_wallet.ts | 11 +- yarn-project/circuit-types/src/app_result.ts | 114 ++++++++++++++++++ yarn-project/circuit-types/src/index.ts | 1 + .../circuit-types/src/interfaces/pxe.ts | 7 ++ ...7411b6b375064925b8088b0cd141771-audit.json | 5 + .../pxe/src/pxe_http/pxe_http_server.ts | 6 +- .../pxe/src/pxe_service/pxe_service.ts | 33 ++++- 9 files changed, 176 insertions(+), 6 deletions(-) create mode 100644 yarn-project/circuit-types/src/app_result.ts diff --git a/yarn-project/acir-simulator/src/client/simulator.ts b/yarn-project/acir-simulator/src/client/simulator.ts index 74e6c1ae4ee..4d01179fb11 100644 --- a/yarn-project/acir-simulator/src/client/simulator.ts +++ b/yarn-project/acir-simulator/src/client/simulator.ts @@ -108,7 +108,6 @@ export class AcirSimulator { this.db, curve, ); - try { const executionResult = await executePrivateFunction( context, diff --git a/yarn-project/aztec.js/src/pxe_client.ts b/yarn-project/aztec.js/src/pxe_client.ts index c6d7e29b033..1e9464a09b7 100644 --- a/yarn-project/aztec.js/src/pxe_client.ts +++ b/yarn-project/aztec.js/src/pxe_client.ts @@ -15,6 +15,7 @@ import { TxHash, TxReceipt, KernelProofData, + AppCircuitResult, } from '@aztec/circuit-types'; import { AztecAddress, @@ -70,7 +71,8 @@ export const createPXEClient = (url: string, fetch = makeFetch([1, 2, 3], true)) TxReceipt, L2BlockL2Logs, KernelCircuitPublicInputs, - KernelProofData + KernelProofData, + AppCircuitResult, }, false, fetch, diff --git a/yarn-project/aztec.js/src/wallet/base_wallet.ts b/yarn-project/aztec.js/src/wallet/base_wallet.ts index 1978cde916b..159b5299750 100644 --- a/yarn-project/aztec.js/src/wallet/base_wallet.ts +++ b/yarn-project/aztec.js/src/wallet/base_wallet.ts @@ -17,7 +17,8 @@ import { TxExecutionRequest, TxHash, TxReceipt, - KernelProofData + KernelProofData, + AppCircuitResult, } from '@aztec/circuit-types'; import { AztecAddress, CompleteAddress, Fr, GrumpkinPrivateKey, PartialAddress } from '@aztec/circuits.js'; import { NodeInfo } from '@aztec/types/interfaces'; @@ -142,4 +143,12 @@ export abstract class BaseWallet implements Wallet { proveInner(input: KernelProofData): Promise { return this.pxe.proveInner(input); } + + simulateAppCircuit(txRequest: TxExecutionRequest): Promise { + return this.pxe.simulateAppCircuit(txRequest); + } + + proveSimulatedAppCircuits(request: TxExecutionRequest, result: AppCircuitResult): Promise { + return this.pxe.proveSimulatedAppCircuits(request, result); + } } diff --git a/yarn-project/circuit-types/src/app_result.ts b/yarn-project/circuit-types/src/app_result.ts new file mode 100644 index 00000000000..56639d132eb --- /dev/null +++ b/yarn-project/circuit-types/src/app_result.ts @@ -0,0 +1,114 @@ +import { PrivateCallStackItem, PublicCallRequest, ReadRequestMembershipWitness } from '@aztec/circuits.js'; +import { FunctionL2Logs } from '@aztec/circuit-types'; +import { ExecutionResult, NoteAndSlot } from './interfaces/index.js'; + +/** + * ACVMField + */ +type ACVMField = string; + +/** + * The result of executing a private function. + */ +export class AppCircuitResult { + constructor( + /** The verification key. */ + public readonly vk: Buffer, + /** The call stack item. */ + public readonly callStackItem: PrivateCallStackItem, + /** The partially filled-in read request membership witnesses for commitments being read. */ + public readonly readRequestPartialWitnesses: ReadRequestMembershipWitness[], + /** The notes created in the executed function. */ + public readonly newNotes: NoteAndSlot[], + /** The nested executions. */ + public readonly nestedExecutions: AppCircuitResult[], + /** Enqueued public function execution requests to be picked up by the sequencer. */ + public readonly enqueuedPublicFunctionCalls: PublicCallRequest[], + /** Encrypted logs emitted during execution of this function call. */ + public readonly encryptedLogs: FunctionL2Logs, + /** Unencrypted logs emitted during execution of this function call. */ + public readonly unencryptedLogs: FunctionL2Logs, + ) { }; + + /** + * Convert an AppCircuitResult to an ExecutionResult usable by the Kernel Circuit Prover + * @dev removes return values as this is intended to be used with functions that don't call other functions for now + * @dev removes partial witnesses as these are confidential and not needed for kernel circuit proving + * @dev removes nested executions as this is intended to be used with functions that don't call other functions for now + * @dev acir and vkey should be maintained out of channel + * + * @returns - partially mocked execution result (sufficient for Kernel Circuit Proving) + */ + public toExecutionResult(): ExecutionResult { + return { + acir: Buffer.from([0x00]), + vk: this.vk, + partialWitness: new Map(), + callStackItem: this.callStackItem, + readRequestPartialWitnesses: this.readRequestPartialWitnesses, + newNotes: this.newNotes, + returnValues: [], + nestedExecutions: this.nestedExecutions.map(ne => ne.toExecutionResult()), + enqueuedPublicFunctionCalls: this.enqueuedPublicFunctionCalls, + encryptedLogs: this.encryptedLogs, + unencryptedLogs: this.unencryptedLogs + }; + } + + /** + * Chops unnecessary data from ExecutionResult for use in state channel app circuit building + * @dev see toExecutionResult for info on removed fields + * + * @param result - the execution result to remove some fields from + * @returns - the execution result with some fields removed (i.e. AppCircuitResult) + */ + public static fromExecutionResult(result: ExecutionResult): AppCircuitResult { + return new AppCircuitResult( + result.vk, + result.callStackItem, + result.readRequestPartialWitnesses, + result.newNotes, + result.nestedExecutions.map(ne => AppCircuitResult.fromExecutionResult(ne)), + result.enqueuedPublicFunctionCalls, + result.encryptedLogs, + result.unencryptedLogs + ); + } + + public toJSON(): object { + return { + vk: this.vk.toString('hex'), + callStackItem: this.callStackItem.toBuffer().toString('hex'), + readRequestPartialWitnesses: this.readRequestPartialWitnesses.map(rr => rr.toBuffer().toString('hex')), + newNotes: this.newNotes.map(nn => { + return { + note: nn.note.toString(), + storageSlot: nn.storageSlot.toString(), + } + }), + nestedExecutions: this.nestedExecutions.map(ne => ne.toJSON()), + enqueuedPublicFunctionCalls: this.enqueuedPublicFunctionCalls.map(ec => ec.toBuffer().toString('hex')), + encryptedLogs: this.encryptedLogs.toJSON(), + unencryptedLogs: this.unencryptedLogs.toJSON(), + } + } + + public static fromJSON(obj: any): AppCircuitResult { + return new AppCircuitResult( + Buffer.from(obj.vk, 'hex'), + PrivateCallStackItem.fromBuffer(Buffer.from(obj.callStackItem, 'hex')), + obj.readRequestPartialWitnesses.map((rr: string) => ReadRequestMembershipWitness.fromBuffer(Buffer.from(rr, 'hex'))), + obj.newNotes.map((nn: any) => { + return { + note: nn.note.toString(), + storageSlot: nn.storageSlot.toString(), + } + }), + obj.nestedExecutions.map((ne: any) => AppCircuitResult.fromJSON(ne)), + obj.enqueuedPublicFunctionCalls.map((ec: string) => PublicCallRequest.fromBuffer(Buffer.from(ec, 'hex'))), + FunctionL2Logs.fromJSON(obj.encryptedLogs), + FunctionL2Logs.fromJSON(obj.unencryptedLogs), + ); + + } +} \ No newline at end of file diff --git a/yarn-project/circuit-types/src/index.ts b/yarn-project/circuit-types/src/index.ts index 85ea8cb627f..81b86f2fd20 100644 --- a/yarn-project/circuit-types/src/index.ts +++ b/yarn-project/circuit-types/src/index.ts @@ -22,4 +22,5 @@ export * from './packed_arguments.js'; export * from './interfaces/index.js'; export * from './auth_witness.js'; export * from './aztec_node/rpc/index.js'; +export * from './app_result.js'; export { CompleteAddress, PublicKey, PartialAddress, GrumpkinPrivateKey } from '@aztec/circuits.js'; diff --git a/yarn-project/circuit-types/src/interfaces/pxe.ts b/yarn-project/circuit-types/src/interfaces/pxe.ts index 72692eb3dae..cfc9303289e 100644 --- a/yarn-project/circuit-types/src/interfaces/pxe.ts +++ b/yarn-project/circuit-types/src/interfaces/pxe.ts @@ -14,6 +14,7 @@ import { SyncStatus } from './sync-status.js'; import { KernelProofData } from './kernel_proof_data.js'; import { FunctionCall } from '../function_call.js'; import { ContractDao } from '../contract_dao.js'; +import { AppCircuitResult } from '../app_result.js'; // docs:start:pxe-interface /** * Private eXecution Environment (PXE) runs locally for each user, providing functionality for all the operations @@ -311,5 +312,11 @@ export interface PXE { /** Proves a single inner step kernel proof iteration */ proveInner(input: KernelProofData): Promise; + + /** Simulate app circuit without all of the execution context */ + simulateAppCircuit(txRequest: TxExecutionRequest): Promise; + + /** Runs the Kernel Prover without simulating app circuits */ + proveSimulatedAppCircuits(request: TxExecutionRequest, result: AppCircuitResult): Promise; } // docs:end:pxe-interface diff --git a/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json b/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json index 5386a1fc38e..ba3def17415 100644 --- a/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json +++ b/yarn-project/log/.b7ec86e927411b6b375064925b8088b0cd141771-audit.json @@ -24,6 +24,11 @@ "date": 1706063005296, "name": "log/aztec-sandbox-2024-01-23.debug.log", "hash": "108ce1b06cdc770d447a05d860188fdfb61cda7748bb9d7b597be35592069f73" + }, + { + "date": 1706405676072, + "name": "log/aztec-sandbox-2024-01-27.debug.log", + "hash": "6be92096d5c45e4246ed1f73431968f673f34cb7023975aebb8623874e4fc29b" } ], "hashType": "sha256" diff --git a/yarn-project/pxe/src/pxe_http/pxe_http_server.ts b/yarn-project/pxe/src/pxe_http/pxe_http_server.ts index be77fe4fb2d..b6a2fa239a0 100644 --- a/yarn-project/pxe/src/pxe_http/pxe_http_server.ts +++ b/yarn-project/pxe/src/pxe_http/pxe_http_server.ts @@ -15,7 +15,8 @@ import { TxExecutionRequest, TxHash, TxReceipt, - KernelProofData + KernelProofData, + AppCircuitResult } from '@aztec/circuit-types'; import { FunctionSelector, Proof, VerificationKey, KernelCircuitPublicInputs } from '@aztec/circuits.js'; import { AztecAddress } from '@aztec/foundation/aztec-address'; @@ -62,7 +63,8 @@ export function createPXERpcServer(pxeService: PXE): JsonRpcServer { TxReceipt, L2BlockL2Logs, KernelCircuitPublicInputs, - KernelProofData + KernelProofData, + AppCircuitResult }, false, ['start', 'stop'], diff --git a/yarn-project/pxe/src/pxe_service/pxe_service.ts b/yarn-project/pxe/src/pxe_service/pxe_service.ts index 8dc9b0dedf4..2e0b04bd628 100644 --- a/yarn-project/pxe/src/pxe_service/pxe_service.ts +++ b/yarn-project/pxe/src/pxe_service/pxe_service.ts @@ -33,6 +33,7 @@ import { getNewContractPublicFunctions, isNoirCallStackUnresolved, KernelProofData, + AppCircuitResult, } from '@aztec/circuit-types'; import { TxPXEProcessingStats } from '@aztec/circuit-types/stats'; import { @@ -45,7 +46,6 @@ import { MAX_PUBLIC_CALL_STACK_LENGTH_PER_TX, PartialAddress, PublicCallRequest, - VerificationKey, } from '@aztec/circuits.js'; import { computeCommitmentNonce, siloNullifier } from '@aztec/circuits.js/abis'; import { DecodedReturn, encodeArguments } from '@aztec/foundation/abi'; @@ -527,6 +527,21 @@ export class PXEService implements PXE { }; } + public async simulateAppCircuit(txRequest: TxExecutionRequest): Promise { + const { contractAddress, functionArtifact, portalContract } = await this.getSimulationParameters(txRequest); + try { + const result = await this.simulator.run(txRequest, functionArtifact, contractAddress, portalContract); + console.log("result: ", result); + this.log('Simulation completed!'); + return AppCircuitResult.fromExecutionResult(result); + } catch (err) { + if (err instanceof SimulationError) { + await this.#enrichSimulationError(err); + } + throw err; + } + } + public async simulate(txRequest: TxExecutionRequest): Promise { // TODO - Pause syncing while simulating. const { contractAddress, functionArtifact, portalContract } = await this.getSimulationParameters(txRequest); @@ -598,6 +613,22 @@ export class PXEService implements PXE { } } + async proveSimulatedAppCircuits(request: TxExecutionRequest, result: AppCircuitResult): Promise { + // convert the app circuit into an execution result + const executionResult = result.toExecutionResult(); + const kernelOracle = new KernelOracle(this.contractDataOracle, this.node); + const kernelProver = new KernelProver(kernelOracle); + const { proof, publicInputs } = await kernelProver.prove(request.toTxRequest(), executionResult); + const encryptedLogs = new TxL2Logs(collectEncryptedLogs(executionResult)); + const unencryptedLogs = new TxL2Logs(collectUnencryptedLogs(executionResult)); + const enqueuedPublicFunctions = collectEnqueuedPublicFunctionCalls(executionResult); + const extendedContractData = ExtendedContractData.empty() + // HACK(#1639): Manually patches the ordering of the public call stack + // TODO(#757): Enforce proper ordering of enqueued public calls + await this.patchPublicCallStackOrdering(publicInputs, enqueuedPublicFunctions); + return new Tx(publicInputs, proof, encryptedLogs, unencryptedLogs, enqueuedPublicFunctions, [extendedContractData]); + } + /** * Simulate a transaction, generate a kernel proof, and create a private transaction object. * The function takes in a transaction request and an ECDSA signature. It simulates the transaction,