@aztec/simulator 0.0.1-commit.2eb6648a → 0.0.1-commit.2f68f620

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (312) hide show
  1. package/README.md +4 -4
  2. package/dest/private/acvm_wasm.d.ts +1 -1
  3. package/dest/private/acvm_wasm.d.ts.map +1 -1
  4. package/dest/private/acvm_wasm.js +3 -1
  5. package/dest/private/circuit_recording/circuit_recorder.js +2 -2
  6. package/dest/public/avm/testing/account_proof_fetcher.d.ts +2 -0
  7. package/dest/public/avm/testing/account_proof_fetcher.d.ts.map +1 -0
  8. package/dest/public/avm/testing/account_proof_fetcher.js +152 -0
  9. package/dest/public/avm/{fixtures → testing}/base_avm_simulation_tester.d.ts +2 -1
  10. package/dest/public/avm/testing/base_avm_simulation_tester.d.ts.map +1 -0
  11. package/dest/public/avm/{fixtures → testing}/base_avm_simulation_tester.js +17 -2
  12. package/dest/public/avm/testing/utils.d.ts +32 -0
  13. package/dest/public/avm/testing/utils.d.ts.map +1 -0
  14. package/dest/public/avm/{fixtures → testing}/utils.js +3 -33
  15. package/dest/public/contracts_db_checkpoint.d.ts +2 -2
  16. package/dest/public/contracts_db_checkpoint.d.ts.map +1 -1
  17. package/dest/public/contracts_db_checkpoint.js +1 -1
  18. package/dest/public/fixtures/amm_test.js +2 -2
  19. package/dest/public/fixtures/bulk_test.d.ts +1 -1
  20. package/dest/public/fixtures/bulk_test.d.ts.map +1 -1
  21. package/dest/public/fixtures/bulk_test.js +31 -4
  22. package/dest/public/fixtures/index.d.ts +1 -4
  23. package/dest/public/fixtures/index.d.ts.map +1 -1
  24. package/dest/public/fixtures/index.js +0 -3
  25. package/dest/public/fixtures/public_tx_simulation_tester.d.ts +8 -7
  26. package/dest/public/fixtures/public_tx_simulation_tester.d.ts.map +1 -1
  27. package/dest/public/fixtures/public_tx_simulation_tester.js +16 -17
  28. package/dest/public/fixtures/simple_contract_data_source.js +1 -1
  29. package/dest/public/fixtures/utils.d.ts +2 -2
  30. package/dest/public/fixtures/utils.d.ts.map +1 -1
  31. package/dest/public/fixtures/utils.js +19 -20
  32. package/dest/public/fuzzing/avm_fuzzer_simulator.d.ts +6 -4
  33. package/dest/public/fuzzing/avm_fuzzer_simulator.d.ts.map +1 -1
  34. package/dest/public/fuzzing/avm_fuzzer_simulator.js +12 -7
  35. package/dest/public/fuzzing/avm_simulator_bin.js +4 -4
  36. package/dest/public/index.d.ts +2 -2
  37. package/dest/public/index.d.ts.map +1 -1
  38. package/dest/public/index.js +1 -1
  39. package/dest/public/public_db_sources.d.ts +6 -3
  40. package/dest/public/public_db_sources.d.ts.map +1 -1
  41. package/dest/public/public_db_sources.js +16 -10
  42. package/dest/public/public_processor/guarded_merkle_tree.d.ts +8 -7
  43. package/dest/public/public_processor/guarded_merkle_tree.d.ts.map +1 -1
  44. package/dest/public/public_processor/guarded_merkle_tree.js +8 -5
  45. package/dest/public/public_processor/public_processor.d.ts +8 -5
  46. package/dest/public/public_processor/public_processor.d.ts.map +1 -1
  47. package/dest/public/public_processor/public_processor.js +109 -74
  48. package/dest/public/public_processor/public_processor_metrics.d.ts +4 -1
  49. package/dest/public/public_processor/public_processor_metrics.d.ts.map +1 -1
  50. package/dest/public/public_processor/public_processor_metrics.js +8 -0
  51. package/dest/public/public_tx_simulator/contract_provider_for_cpp.d.ts +1 -1
  52. package/dest/public/public_tx_simulator/contract_provider_for_cpp.d.ts.map +1 -1
  53. package/dest/public/public_tx_simulator/contract_provider_for_cpp.js +3 -2
  54. package/dest/public/public_tx_simulator/dumping_public_tx_simulator.d.ts +23 -0
  55. package/dest/public/public_tx_simulator/dumping_public_tx_simulator.d.ts.map +1 -0
  56. package/dest/public/public_tx_simulator/{dumping_cpp_public_tx_simulator.js → dumping_public_tx_simulator.js} +2 -2
  57. package/dest/public/public_tx_simulator/factories.d.ts +6 -6
  58. package/dest/public/public_tx_simulator/factories.d.ts.map +1 -1
  59. package/dest/public/public_tx_simulator/factories.js +8 -8
  60. package/dest/public/public_tx_simulator/index.d.ts +3 -5
  61. package/dest/public/public_tx_simulator/index.d.ts.map +1 -1
  62. package/dest/public/public_tx_simulator/index.js +2 -4
  63. package/dest/public/public_tx_simulator/public_tx_simulator.d.ts +41 -70
  64. package/dest/public/public_tx_simulator/public_tx_simulator.d.ts.map +1 -1
  65. package/dest/public/public_tx_simulator/public_tx_simulator.js +98 -319
  66. package/dest/public/public_tx_simulator/public_tx_simulator_base.d.ts +22 -0
  67. package/dest/public/public_tx_simulator/public_tx_simulator_base.d.ts.map +1 -0
  68. package/dest/public/public_tx_simulator/public_tx_simulator_base.js +28 -0
  69. package/package.json +17 -18
  70. package/src/private/acvm_wasm.ts +4 -1
  71. package/src/private/circuit_recording/circuit_recorder.ts +2 -2
  72. package/src/public/avm/testing/account_proof.json +553 -0
  73. package/src/public/avm/testing/account_proof_fetcher.ts +166 -0
  74. package/src/public/avm/{fixtures → testing}/base_avm_simulation_tester.ts +22 -2
  75. package/src/public/avm/{fixtures → testing}/utils.ts +3 -39
  76. package/src/public/contracts_db_checkpoint.ts +1 -1
  77. package/src/public/fixtures/amm_test.ts +2 -2
  78. package/src/public/fixtures/bulk_test.ts +29 -4
  79. package/src/public/fixtures/index.ts +0 -3
  80. package/src/public/fixtures/public_tx_simulation_tester.ts +30 -15
  81. package/src/public/fixtures/simple_contract_data_source.ts +1 -1
  82. package/src/public/fixtures/utils.ts +26 -22
  83. package/src/public/fuzzing/avm_fuzzer_simulator.ts +16 -19
  84. package/src/public/fuzzing/avm_simulator_bin.ts +3 -5
  85. package/src/public/index.ts +3 -3
  86. package/src/public/public_db_sources.ts +21 -14
  87. package/src/public/public_processor/guarded_merkle_tree.ts +11 -8
  88. package/src/public/public_processor/public_processor.ts +142 -93
  89. package/src/public/public_processor/public_processor_metrics.ts +12 -0
  90. package/src/public/public_tx_simulator/contract_provider_for_cpp.ts +3 -2
  91. package/src/public/public_tx_simulator/{dumping_cpp_public_tx_simulator.ts → dumping_public_tx_simulator.ts} +2 -2
  92. package/src/public/public_tx_simulator/factories.ts +8 -7
  93. package/src/public/public_tx_simulator/index.ts +2 -4
  94. package/src/public/public_tx_simulator/public_tx_simulator.ts +150 -476
  95. package/src/public/public_tx_simulator/public_tx_simulator_base.ts +35 -0
  96. package/dest/public/avm/avm_context.d.ts +0 -41
  97. package/dest/public/avm/avm_context.d.ts.map +0 -1
  98. package/dest/public/avm/avm_context.js +0 -44
  99. package/dest/public/avm/avm_contract_call_result.d.ts +0 -32
  100. package/dest/public/avm/avm_contract_call_result.d.ts.map +0 -1
  101. package/dest/public/avm/avm_contract_call_result.js +0 -54
  102. package/dest/public/avm/avm_execution_environment.d.ts +0 -24
  103. package/dest/public/avm/avm_execution_environment.d.ts.map +0 -1
  104. package/dest/public/avm/avm_execution_environment.js +0 -33
  105. package/dest/public/avm/avm_gas.d.ts +0 -44
  106. package/dest/public/avm/avm_gas.d.ts.map +0 -1
  107. package/dest/public/avm/avm_gas.js +0 -195
  108. package/dest/public/avm/avm_machine_state.d.ts +0 -98
  109. package/dest/public/avm/avm_machine_state.d.ts.map +0 -1
  110. package/dest/public/avm/avm_machine_state.js +0 -110
  111. package/dest/public/avm/avm_memory_types.d.ts +0 -275
  112. package/dest/public/avm/avm_memory_types.d.ts.map +0 -1
  113. package/dest/public/avm/avm_memory_types.js +0 -354
  114. package/dest/public/avm/avm_simulator.d.ts +0 -41
  115. package/dest/public/avm/avm_simulator.d.ts.map +0 -1
  116. package/dest/public/avm/avm_simulator.js +0 -192
  117. package/dest/public/avm/avm_simulator_interface.d.ts +0 -9
  118. package/dest/public/avm/avm_simulator_interface.d.ts.map +0 -1
  119. package/dest/public/avm/avm_simulator_interface.js +0 -3
  120. package/dest/public/avm/calldata.d.ts +0 -51
  121. package/dest/public/avm/calldata.d.ts.map +0 -1
  122. package/dest/public/avm/calldata.js +0 -63
  123. package/dest/public/avm/errors.d.ts +0 -104
  124. package/dest/public/avm/errors.d.ts.map +0 -1
  125. package/dest/public/avm/errors.js +0 -141
  126. package/dest/public/avm/fixtures/avm_simulation_tester.d.ts +0 -22
  127. package/dest/public/avm/fixtures/avm_simulation_tester.d.ts.map +0 -1
  128. package/dest/public/avm/fixtures/avm_simulation_tester.js +0 -84
  129. package/dest/public/avm/fixtures/base_avm_simulation_tester.d.ts.map +0 -1
  130. package/dest/public/avm/fixtures/initializers.d.ts +0 -42
  131. package/dest/public/avm/fixtures/initializers.d.ts.map +0 -1
  132. package/dest/public/avm/fixtures/initializers.js +0 -45
  133. package/dest/public/avm/fixtures/utils.d.ts +0 -39
  134. package/dest/public/avm/fixtures/utils.d.ts.map +0 -1
  135. package/dest/public/avm/index.d.ts +0 -2
  136. package/dest/public/avm/index.d.ts.map +0 -1
  137. package/dest/public/avm/index.js +0 -1
  138. package/dest/public/avm/opcodes/accrued_substate.d.ts +0 -74
  139. package/dest/public/avm/opcodes/accrued_substate.d.ts.map +0 -1
  140. package/dest/public/avm/opcodes/accrued_substate.js +0 -255
  141. package/dest/public/avm/opcodes/addressing_mode.d.ts +0 -31
  142. package/dest/public/avm/opcodes/addressing_mode.d.ts.map +0 -1
  143. package/dest/public/avm/opcodes/addressing_mode.js +0 -94
  144. package/dest/public/avm/opcodes/arithmetic.d.ts +0 -49
  145. package/dest/public/avm/opcodes/arithmetic.d.ts.map +0 -1
  146. package/dest/public/avm/opcodes/arithmetic.js +0 -97
  147. package/dest/public/avm/opcodes/bitwise.d.ts +0 -42
  148. package/dest/public/avm/opcodes/bitwise.d.ts.map +0 -1
  149. package/dest/public/avm/opcodes/bitwise.js +0 -99
  150. package/dest/public/avm/opcodes/comparators.d.ts +0 -25
  151. package/dest/public/avm/opcodes/comparators.d.ts.map +0 -1
  152. package/dest/public/avm/opcodes/comparators.js +0 -43
  153. package/dest/public/avm/opcodes/contract.d.ts +0 -20
  154. package/dest/public/avm/opcodes/contract.d.ts.map +0 -1
  155. package/dest/public/avm/opcodes/contract.js +0 -65
  156. package/dest/public/avm/opcodes/control_flow.d.ts +0 -41
  157. package/dest/public/avm/opcodes/control_flow.d.ts.map +0 -1
  158. package/dest/public/avm/opcodes/control_flow.js +0 -107
  159. package/dest/public/avm/opcodes/conversion.d.ts +0 -18
  160. package/dest/public/avm/opcodes/conversion.d.ts.map +0 -1
  161. package/dest/public/avm/opcodes/conversion.js +0 -333
  162. package/dest/public/avm/opcodes/ec_add.d.ts +0 -19
  163. package/dest/public/avm/opcodes/ec_add.d.ts.map +0 -1
  164. package/dest/public/avm/opcodes/ec_add.js +0 -93
  165. package/dest/public/avm/opcodes/environment_getters.d.ts +0 -28
  166. package/dest/public/avm/opcodes/environment_getters.d.ts.map +0 -1
  167. package/dest/public/avm/opcodes/environment_getters.js +0 -77
  168. package/dest/public/avm/opcodes/external_calls.d.ts +0 -59
  169. package/dest/public/avm/opcodes/external_calls.d.ts.map +0 -1
  170. package/dest/public/avm/opcodes/external_calls.js +0 -210
  171. package/dest/public/avm/opcodes/hashing.d.ts +0 -36
  172. package/dest/public/avm/opcodes/hashing.d.ts.map +0 -1
  173. package/dest/public/avm/opcodes/hashing.js +0 -119
  174. package/dest/public/avm/opcodes/index.d.ts +0 -16
  175. package/dest/public/avm/opcodes/index.d.ts.map +0 -1
  176. package/dest/public/avm/opcodes/index.js +0 -15
  177. package/dest/public/avm/opcodes/instruction.d.ts +0 -74
  178. package/dest/public/avm/opcodes/instruction.d.ts.map +0 -1
  179. package/dest/public/avm/opcodes/instruction.js +0 -95
  180. package/dest/public/avm/opcodes/instruction_impl.d.ts +0 -19
  181. package/dest/public/avm/opcodes/instruction_impl.d.ts.map +0 -1
  182. package/dest/public/avm/opcodes/instruction_impl.js +0 -30
  183. package/dest/public/avm/opcodes/memory.d.ts +0 -74
  184. package/dest/public/avm/opcodes/memory.d.ts.map +0 -1
  185. package/dest/public/avm/opcodes/memory.js +0 -257
  186. package/dest/public/avm/opcodes/misc.d.ts +0 -18
  187. package/dest/public/avm/opcodes/misc.d.ts.map +0 -1
  188. package/dest/public/avm/opcodes/misc.js +0 -73
  189. package/dest/public/avm/opcodes/storage.d.ts +0 -25
  190. package/dest/public/avm/opcodes/storage.d.ts.map +0 -1
  191. package/dest/public/avm/opcodes/storage.js +0 -78
  192. package/dest/public/avm/revert_reason.d.ts +0 -18
  193. package/dest/public/avm/revert_reason.d.ts.map +0 -1
  194. package/dest/public/avm/revert_reason.js +0 -39
  195. package/dest/public/avm/serialization/buffer_cursor.d.ts +0 -26
  196. package/dest/public/avm/serialization/buffer_cursor.d.ts.map +0 -1
  197. package/dest/public/avm/serialization/buffer_cursor.js +0 -99
  198. package/dest/public/avm/serialization/bytecode_serialization.d.ts +0 -17
  199. package/dest/public/avm/serialization/bytecode_serialization.d.ts.map +0 -1
  200. package/dest/public/avm/serialization/bytecode_serialization.js +0 -336
  201. package/dest/public/avm/serialization/instruction_serialization.d.ts +0 -114
  202. package/dest/public/avm/serialization/instruction_serialization.d.ts.map +0 -1
  203. package/dest/public/avm/serialization/instruction_serialization.js +0 -261
  204. package/dest/public/avm/test_utils.d.ts +0 -15
  205. package/dest/public/avm/test_utils.d.ts.map +0 -1
  206. package/dest/public/avm/test_utils.js +0 -44
  207. package/dest/public/debug_fn_name.d.ts +0 -18
  208. package/dest/public/debug_fn_name.d.ts.map +0 -1
  209. package/dest/public/debug_fn_name.js +0 -37
  210. package/dest/public/fixtures/custom_bytecode_tests.d.ts +0 -12
  211. package/dest/public/fixtures/custom_bytecode_tests.d.ts.map +0 -1
  212. package/dest/public/fixtures/custom_bytecode_tests.js +0 -174
  213. package/dest/public/fixtures/minimal_public_tx.d.ts +0 -4
  214. package/dest/public/fixtures/minimal_public_tx.d.ts.map +0 -1
  215. package/dest/public/fixtures/minimal_public_tx.js +0 -19
  216. package/dest/public/fixtures/opcode_spammer.d.ts +0 -122
  217. package/dest/public/fixtures/opcode_spammer.d.ts.map +0 -1
  218. package/dest/public/fixtures/opcode_spammer.js +0 -1653
  219. package/dest/public/hinting_db_sources.d.ts +0 -80
  220. package/dest/public/hinting_db_sources.d.ts.map +0 -1
  221. package/dest/public/hinting_db_sources.js +0 -355
  222. package/dest/public/public_tx_simulator/cpp_public_tx_simulator.d.ts +0 -53
  223. package/dest/public/public_tx_simulator/cpp_public_tx_simulator.d.ts.map +0 -1
  224. package/dest/public/public_tx_simulator/cpp_public_tx_simulator.js +0 -132
  225. package/dest/public/public_tx_simulator/cpp_public_tx_simulator_with_hinted_dbs.d.ts +0 -42
  226. package/dest/public/public_tx_simulator/cpp_public_tx_simulator_with_hinted_dbs.d.ts.map +0 -1
  227. package/dest/public/public_tx_simulator/cpp_public_tx_simulator_with_hinted_dbs.js +0 -86
  228. package/dest/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.d.ts +0 -30
  229. package/dest/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.d.ts.map +0 -1
  230. package/dest/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.js +0 -171
  231. package/dest/public/public_tx_simulator/dumping_cpp_public_tx_simulator.d.ts +0 -23
  232. package/dest/public/public_tx_simulator/dumping_cpp_public_tx_simulator.d.ts.map +0 -1
  233. package/dest/public/public_tx_simulator/measured_public_tx_simulator.d.ts +0 -31
  234. package/dest/public/public_tx_simulator/measured_public_tx_simulator.d.ts.map +0 -1
  235. package/dest/public/public_tx_simulator/measured_public_tx_simulator.js +0 -51
  236. package/dest/public/public_tx_simulator/public_tx_context.d.ts +0 -131
  237. package/dest/public/public_tx_simulator/public_tx_context.d.ts.map +0 -1
  238. package/dest/public/public_tx_simulator/public_tx_context.js +0 -300
  239. package/dest/public/public_tx_simulator/telemetry_public_tx_simulator.d.ts +0 -21
  240. package/dest/public/public_tx_simulator/telemetry_public_tx_simulator.d.ts.map +0 -1
  241. package/dest/public/public_tx_simulator/telemetry_public_tx_simulator.js +0 -415
  242. package/dest/public/side_effect_trace.d.ts +0 -87
  243. package/dest/public/side_effect_trace.d.ts.map +0 -1
  244. package/dest/public/side_effect_trace.js +0 -199
  245. package/dest/public/side_effect_trace_interface.d.ts +0 -22
  246. package/dest/public/side_effect_trace_interface.d.ts.map +0 -1
  247. package/dest/public/side_effect_trace_interface.js +0 -1
  248. package/dest/public/state_manager/index.d.ts +0 -2
  249. package/dest/public/state_manager/index.d.ts.map +0 -1
  250. package/dest/public/state_manager/index.js +0 -1
  251. package/dest/public/state_manager/nullifiers.d.ts +0 -61
  252. package/dest/public/state_manager/nullifiers.d.ts.map +0 -1
  253. package/dest/public/state_manager/nullifiers.js +0 -92
  254. package/dest/public/state_manager/public_storage.d.ts +0 -66
  255. package/dest/public/state_manager/public_storage.d.ts.map +0 -1
  256. package/dest/public/state_manager/public_storage.js +0 -145
  257. package/dest/public/state_manager/state_manager.d.ts +0 -170
  258. package/dest/public/state_manager/state_manager.d.ts.map +0 -1
  259. package/dest/public/state_manager/state_manager.js +0 -402
  260. package/src/public/avm/avm_context.ts +0 -61
  261. package/src/public/avm/avm_contract_call_result.ts +0 -69
  262. package/src/public/avm/avm_execution_environment.ts +0 -51
  263. package/src/public/avm/avm_gas.ts +0 -183
  264. package/src/public/avm/avm_machine_state.ts +0 -170
  265. package/src/public/avm/avm_memory_types.ts +0 -440
  266. package/src/public/avm/avm_simulator.ts +0 -279
  267. package/src/public/avm/avm_simulator_interface.ts +0 -8
  268. package/src/public/avm/calldata.ts +0 -100
  269. package/src/public/avm/errors.ts +0 -177
  270. package/src/public/avm/fixtures/avm_simulation_tester.ts +0 -122
  271. package/src/public/avm/fixtures/initializers.ts +0 -103
  272. package/src/public/avm/index.ts +0 -1
  273. package/src/public/avm/opcodes/accrued_substate.ts +0 -286
  274. package/src/public/avm/opcodes/addressing_mode.ts +0 -111
  275. package/src/public/avm/opcodes/arithmetic.ts +0 -129
  276. package/src/public/avm/opcodes/bitwise.ts +0 -113
  277. package/src/public/avm/opcodes/comparators.ts +0 -55
  278. package/src/public/avm/opcodes/contract.ts +0 -72
  279. package/src/public/avm/opcodes/control_flow.ts +0 -123
  280. package/src/public/avm/opcodes/conversion.ts +0 -104
  281. package/src/public/avm/opcodes/ec_add.ts +0 -105
  282. package/src/public/avm/opcodes/environment_getters.ts +0 -87
  283. package/src/public/avm/opcodes/external_calls.ts +0 -262
  284. package/src/public/avm/opcodes/hashing.ts +0 -151
  285. package/src/public/avm/opcodes/index.ts +0 -15
  286. package/src/public/avm/opcodes/instruction.ts +0 -136
  287. package/src/public/avm/opcodes/instruction_impl.ts +0 -36
  288. package/src/public/avm/opcodes/memory.ts +0 -293
  289. package/src/public/avm/opcodes/misc.ts +0 -102
  290. package/src/public/avm/opcodes/storage.ts +0 -95
  291. package/src/public/avm/revert_reason.ts +0 -58
  292. package/src/public/avm/serialization/buffer_cursor.ts +0 -118
  293. package/src/public/avm/serialization/bytecode_serialization.ts +0 -215
  294. package/src/public/avm/serialization/instruction_serialization.ts +0 -249
  295. package/src/public/avm/test_utils.ts +0 -64
  296. package/src/public/debug_fn_name.ts +0 -52
  297. package/src/public/fixtures/custom_bytecode_tests.ts +0 -228
  298. package/src/public/fixtures/minimal_public_tx.ts +0 -26
  299. package/src/public/fixtures/opcode_spammer.ts +0 -1721
  300. package/src/public/hinting_db_sources.ts +0 -607
  301. package/src/public/public_tx_simulator/cpp_public_tx_simulator.ts +0 -211
  302. package/src/public/public_tx_simulator/cpp_public_tx_simulator_with_hinted_dbs.ts +0 -134
  303. package/src/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.ts +0 -239
  304. package/src/public/public_tx_simulator/measured_public_tx_simulator.ts +0 -105
  305. package/src/public/public_tx_simulator/public_tx_context.ts +0 -484
  306. package/src/public/public_tx_simulator/telemetry_public_tx_simulator.ts +0 -63
  307. package/src/public/side_effect_trace.ts +0 -293
  308. package/src/public/side_effect_trace_interface.ts +0 -28
  309. package/src/public/state_manager/index.ts +0 -1
  310. package/src/public/state_manager/nullifiers.ts +0 -103
  311. package/src/public/state_manager/public_storage.ts +0 -174
  312. package/src/public/state_manager/state_manager.ts +0 -569
@@ -1,293 +0,0 @@
1
- import {
2
- FLAT_PUBLIC_LOGS_PAYLOAD_LENGTH,
3
- MAX_L2_TO_L1_MSGS_PER_TX,
4
- MAX_NOTE_HASHES_PER_TX,
5
- MAX_NULLIFIERS_PER_TX,
6
- MAX_PUBLIC_CALLS_TO_UNIQUE_CONTRACT_CLASS_IDS,
7
- MAX_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX,
8
- PROTOCOL_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX,
9
- } from '@aztec/constants';
10
- import { Fr } from '@aztec/foundation/curves/bn254';
11
- import { EthAddress } from '@aztec/foundation/eth-address';
12
- import { type LogLevel, type Logger, type LoggerBindings, createLogger } from '@aztec/foundation/log';
13
- import { PublicDataUpdateRequest } from '@aztec/stdlib/avm';
14
- import type { AztecAddress } from '@aztec/stdlib/aztec-address';
15
- import { computePublicDataTreeLeafSlot } from '@aztec/stdlib/hash';
16
- import { NoteHash, Nullifier } from '@aztec/stdlib/kernel';
17
- import { DebugLog, PublicLog } from '@aztec/stdlib/logs';
18
- import { L2ToL1Message, ScopedL2ToL1Message } from '@aztec/stdlib/messaging';
19
-
20
- import { strict as assert } from 'assert';
21
-
22
- import {
23
- L2ToL1MessageLimitReachedError,
24
- MaxCallsToUniqueContractClassIdsError,
25
- NoteHashLimitReachedError,
26
- NullifierLimitReachedError,
27
- SideEffectLimitReachedError,
28
- } from './side_effect_errors.js';
29
- import type { PublicSideEffectTraceInterface } from './side_effect_trace_interface.js';
30
- import { UniqueClassIds } from './unique_class_ids.js';
31
-
32
- /**
33
- * A struct containing just the side effects as regular arrays
34
- * as opposed to "Tuple" arrays used by circuit public inputs.
35
- * This struct is helpful for testing and checking array lengths.
36
- **/
37
- export type SideEffects = {
38
- publicDataWrites: PublicDataUpdateRequest[];
39
- noteHashes: NoteHash[];
40
- nullifiers: Nullifier[];
41
- l2ToL1Msgs: ScopedL2ToL1Message[];
42
- publicLogs: PublicLog[];
43
- };
44
-
45
- export class SideEffectArrayLengths {
46
- constructor(
47
- public readonly publicDataWrites: number,
48
- public readonly protocolPublicDataWrites: number,
49
- public readonly noteHashes: number,
50
- public readonly nullifiers: number,
51
- public readonly l2ToL1Msgs: number,
52
- public readonly publicLogFields: number,
53
- ) {}
54
-
55
- static empty() {
56
- return new this(0, 0, 0, 0, 0, 0);
57
- }
58
- }
59
-
60
- /**
61
- * Trace side effects for an enqueued public call's execution.
62
- */
63
- export class SideEffectTrace implements PublicSideEffectTraceInterface {
64
- public log: Logger;
65
-
66
- /** The side effect counter increments with every call to the trace. */
67
- private sideEffectCounter: number;
68
-
69
- private publicDataWrites: PublicDataUpdateRequest[] = [];
70
- private protocolPublicDataWritesLength: number = 0;
71
- private userPublicDataWritesLength: number = 0;
72
- private noteHashes: NoteHash[] = [];
73
- private nullifiers: Nullifier[] = [];
74
- private l2ToL1Messages: ScopedL2ToL1Message[] = [];
75
- private publicLogs: PublicLog[] = [];
76
- /** Make sure a forked trace is never merged twice. */
77
- private alreadyMergedIntoParent = false;
78
-
79
- constructor(
80
- /** The counter of this trace's first side effect. */
81
- public readonly startSideEffectCounter: number = 0,
82
- bindings?: LoggerBindings,
83
- /** Track parent's (or previous kernel's) lengths so the AVM can properly enforce TX-wide limits,
84
- * otherwise the public kernel can fail to prove because TX limits are breached.
85
- */
86
- private readonly previousSideEffectArrayLengths: SideEffectArrayLengths = SideEffectArrayLengths.empty(),
87
- /** We need to track the set of class IDs used, to enforce limits. */
88
- private uniqueClassIds: UniqueClassIds = new UniqueClassIds(),
89
- private writtenPublicDataSlots: Set<string> = new Set(),
90
- private debugLogs: DebugLog[] = [],
91
- private debugLogMemoryReads: number = 0,
92
- ) {
93
- this.sideEffectCounter = startSideEffectCounter;
94
- this.log = createLogger('simulator:side_effect_trace', bindings);
95
- }
96
-
97
- public fork() {
98
- return new SideEffectTrace(
99
- this.sideEffectCounter,
100
- this.log.getBindings(),
101
- new SideEffectArrayLengths(
102
- this.previousSideEffectArrayLengths.publicDataWrites + this.userPublicDataWritesLength,
103
- this.previousSideEffectArrayLengths.protocolPublicDataWrites + this.protocolPublicDataWritesLength,
104
- this.previousSideEffectArrayLengths.noteHashes + this.noteHashes.length,
105
- this.previousSideEffectArrayLengths.nullifiers + this.nullifiers.length,
106
- this.previousSideEffectArrayLengths.l2ToL1Msgs + this.l2ToL1Messages.length,
107
- this.previousSideEffectArrayLengths.publicLogFields +
108
- this.publicLogs.reduce((acc, log) => acc + log.sizeInFields(), 0),
109
- ),
110
- this.uniqueClassIds.fork(),
111
- new Set(this.writtenPublicDataSlots),
112
- this.debugLogs.slice(),
113
- this.debugLogMemoryReads,
114
- );
115
- }
116
-
117
- public merge(forkedTrace: this, reverted: boolean = false) {
118
- // sanity check to avoid merging the same forked trace twice
119
- assert(
120
- !forkedTrace.alreadyMergedIntoParent,
121
- 'Bug! Cannot merge a forked trace that has already been merged into its parent!',
122
- );
123
- forkedTrace.alreadyMergedIntoParent = true;
124
-
125
- this.sideEffectCounter = forkedTrace.sideEffectCounter;
126
- this.uniqueClassIds.acceptAndMerge(forkedTrace.uniqueClassIds);
127
- this.debugLogs = forkedTrace.debugLogs;
128
- this.debugLogMemoryReads = forkedTrace.debugLogMemoryReads;
129
-
130
- if (!reverted) {
131
- this.publicDataWrites.push(...forkedTrace.publicDataWrites);
132
- this.noteHashes.push(...forkedTrace.noteHashes);
133
- this.nullifiers.push(...forkedTrace.nullifiers);
134
- this.l2ToL1Messages.push(...forkedTrace.l2ToL1Messages);
135
- this.publicLogs.push(...forkedTrace.publicLogs);
136
- this.userPublicDataWritesLength += forkedTrace.userPublicDataWritesLength;
137
- this.protocolPublicDataWritesLength += forkedTrace.protocolPublicDataWritesLength;
138
- for (const slot of forkedTrace.writtenPublicDataSlots) {
139
- this.writtenPublicDataSlots.add(slot);
140
- }
141
- }
142
- }
143
-
144
- public getCounter() {
145
- return this.sideEffectCounter;
146
- }
147
-
148
- private incrementSideEffectCounter() {
149
- this.sideEffectCounter++;
150
- }
151
-
152
- public getNoteHashCount() {
153
- return this.previousSideEffectArrayLengths.noteHashes + this.noteHashes.length;
154
- }
155
-
156
- public async tracePublicStorageWrite(
157
- contractAddress: AztecAddress,
158
- slot: Fr,
159
- value: Fr,
160
- protocolWrite: boolean,
161
- ): Promise<void> {
162
- // Only increment counts if the storage slot has not been written to before.
163
- if (this.isStorageCold(contractAddress, slot)) {
164
- if (protocolWrite) {
165
- if (
166
- this.protocolPublicDataWritesLength + this.previousSideEffectArrayLengths.protocolPublicDataWrites >=
167
- PROTOCOL_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX
168
- ) {
169
- throw new SideEffectLimitReachedError(
170
- 'protocol public data (contract storage) write',
171
- PROTOCOL_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX,
172
- );
173
- }
174
- this.protocolPublicDataWritesLength++;
175
- } else {
176
- if (
177
- this.userPublicDataWritesLength + this.previousSideEffectArrayLengths.publicDataWrites >=
178
- MAX_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX
179
- ) {
180
- throw new SideEffectLimitReachedError(
181
- 'public data (contract storage) write',
182
- MAX_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX,
183
- );
184
- }
185
- this.userPublicDataWritesLength++;
186
- }
187
- }
188
-
189
- const leafSlot = await computePublicDataTreeLeafSlot(contractAddress, slot);
190
- this.publicDataWrites.push(new PublicDataUpdateRequest(leafSlot, value, this.sideEffectCounter));
191
-
192
- this.log.trace(
193
- `Traced public data write (address=${contractAddress}, slot=${slot}): value=${value} (counter=${this.sideEffectCounter}, isProtocol:${protocolWrite})`,
194
- );
195
- this.incrementSideEffectCounter();
196
- this.writtenPublicDataSlots.add(this.computePublicDataSlotKey(contractAddress, slot));
197
- }
198
-
199
- private computePublicDataSlotKey(contractAddress: AztecAddress, slot: Fr): string {
200
- return `${contractAddress.toString()}:${slot.toString()}`;
201
- }
202
-
203
- public isStorageCold(contractAddress: AztecAddress, slot: Fr): boolean {
204
- return !this.writtenPublicDataSlots.has(this.computePublicDataSlotKey(contractAddress, slot));
205
- }
206
-
207
- public traceNewNoteHash(noteHash: Fr) {
208
- if (this.noteHashes.length + this.previousSideEffectArrayLengths.noteHashes >= MAX_NOTE_HASHES_PER_TX) {
209
- throw new NoteHashLimitReachedError();
210
- }
211
-
212
- this.noteHashes.push(new NoteHash(noteHash, this.sideEffectCounter));
213
- this.log.trace(`Tracing new note hash (counter=${this.sideEffectCounter})`);
214
- this.incrementSideEffectCounter();
215
- }
216
-
217
- public traceNewNullifier(siloedNullifier: Fr) {
218
- if (this.nullifiers.length + this.previousSideEffectArrayLengths.nullifiers >= MAX_NULLIFIERS_PER_TX) {
219
- throw new NullifierLimitReachedError();
220
- }
221
-
222
- this.nullifiers.push(new Nullifier(siloedNullifier, /*noteHash=*/ Fr.ZERO, this.sideEffectCounter));
223
-
224
- this.log.trace(`Tracing new nullifier (counter=${this.sideEffectCounter})`);
225
- this.incrementSideEffectCounter();
226
- }
227
-
228
- public traceNewL2ToL1Message(contractAddress: AztecAddress, recipient: Fr, content: Fr) {
229
- if (this.l2ToL1Messages.length + this.previousSideEffectArrayLengths.l2ToL1Msgs >= MAX_L2_TO_L1_MSGS_PER_TX) {
230
- throw new L2ToL1MessageLimitReachedError();
231
- }
232
-
233
- const recipientAddress = EthAddress.fromField(recipient);
234
- this.l2ToL1Messages.push(new L2ToL1Message(recipientAddress, content).scope(contractAddress));
235
- this.log.trace(`Tracing new l2 to l1 message (counter=${this.sideEffectCounter})`);
236
- this.incrementSideEffectCounter();
237
- }
238
-
239
- public tracePublicLog(contractAddress: AztecAddress, log: Fr[]) {
240
- const previouslyEmittedPublicLogFieldsCount =
241
- this.previousSideEffectArrayLengths.publicLogFields +
242
- this.publicLogs.reduce((acc, log) => acc + log.sizeInFields(), 0);
243
-
244
- const publicLog = new PublicLog(contractAddress, log);
245
-
246
- if (previouslyEmittedPublicLogFieldsCount + publicLog.sizeInFields() > FLAT_PUBLIC_LOGS_PAYLOAD_LENGTH) {
247
- throw new SideEffectLimitReachedError('public log fields', FLAT_PUBLIC_LOGS_PAYLOAD_LENGTH);
248
- }
249
-
250
- this.publicLogs.push(publicLog);
251
- this.log.trace(`Tracing new public log (counter=${this.sideEffectCounter})`);
252
- this.incrementSideEffectCounter();
253
- }
254
-
255
- public traceDebugLog(contractAddress: AztecAddress, level: LogLevel, message: string, fields: Fr[]) {
256
- this.debugLogs.push(new DebugLog(contractAddress, level, message, fields));
257
- }
258
-
259
- public getDebugLogs() {
260
- return this.debugLogs;
261
- }
262
-
263
- public getDebugLogMemoryReads() {
264
- return this.debugLogMemoryReads;
265
- }
266
-
267
- public traceDebugLogMemoryReads(memoryReads: number) {
268
- this.debugLogMemoryReads += memoryReads;
269
- }
270
-
271
- public traceGetContractClass(contractClassId: Fr, exists: boolean) {
272
- // We limit the number of unique contract class IDs due to hashing and the trace length limit.
273
- if (exists && !this.uniqueClassIds.has(contractClassId.toString())) {
274
- if (this.uniqueClassIds.size() >= MAX_PUBLIC_CALLS_TO_UNIQUE_CONTRACT_CLASS_IDS) {
275
- this.log.debug(`Bytecode retrieval failure for contract class ID ${contractClassId} (limit reached)`);
276
- throw new MaxCallsToUniqueContractClassIdsError();
277
- }
278
- this.log.trace(`Adding contract class ID ${contractClassId} (counter=${this.sideEffectCounter})`);
279
- this.uniqueClassIds.add(contractClassId.toString());
280
- this.incrementSideEffectCounter();
281
- }
282
- }
283
-
284
- public getSideEffects(): SideEffects {
285
- return {
286
- publicDataWrites: this.publicDataWrites,
287
- noteHashes: this.noteHashes,
288
- nullifiers: this.nullifiers,
289
- l2ToL1Msgs: this.l2ToL1Messages,
290
- publicLogs: this.publicLogs,
291
- };
292
- }
293
- }
@@ -1,28 +0,0 @@
1
- import type { Fr } from '@aztec/foundation/curves/bn254';
2
- import type { LogLevel } from '@aztec/foundation/log';
3
- import type { AztecAddress } from '@aztec/stdlib/aztec-address';
4
- import type { DebugLog } from '@aztec/stdlib/logs';
5
-
6
- export interface PublicSideEffectTraceInterface {
7
- fork(): PublicSideEffectTraceInterface;
8
- merge(nestedTrace: PublicSideEffectTraceInterface, reverted?: boolean): void;
9
- getCounter(): number;
10
- // all "trace*" functions can throw SideEffectLimitReachedError
11
- tracePublicStorageWrite(
12
- contractAddress: AztecAddress,
13
- slot: Fr, // This is the storage slot not the computed leaf slot
14
- value: Fr,
15
- protocolWrite: boolean,
16
- ): Promise<void>;
17
- isStorageCold(contractAddress: AztecAddress, slot: Fr): boolean;
18
- traceNewNoteHash(uniqueNoteHash: Fr): void;
19
- getNoteHashCount(): number;
20
- traceNewNullifier(siloedNullifier: Fr): void;
21
- traceNewL2ToL1Message(contractAddress: AztecAddress, recipient: Fr, content: Fr): void;
22
- tracePublicLog(contractAddress: AztecAddress, log: Fr[]): void;
23
- traceDebugLog(contractAddress: AztecAddress, level: LogLevel, message: string, fields: Fr[]): void;
24
- getDebugLogs(): DebugLog[];
25
- getDebugLogMemoryReads(): number;
26
- traceDebugLogMemoryReads(memoryReads: number): void;
27
- traceGetContractClass(contractClassId: Fr, exists: boolean): void;
28
- }
@@ -1 +0,0 @@
1
- export * from './state_manager.js';
@@ -1,103 +0,0 @@
1
- import type { Fr } from '@aztec/foundation/curves/bn254';
2
-
3
- import type { PublicTreesDB } from '../public_db_sources.js';
4
- import { NullifierCollisionError } from '../side_effect_errors.js';
5
-
6
- /**
7
- * A class to manage new nullifier staging and existence checks during a contract call's AVM simulation.
8
- * Maintains a siloed nullifier cache, and ensures that existence checks fall back to the correct source.
9
- * When a contract call completes, its cached nullifier set can be merged into its parent's.
10
- */
11
- export class NullifierManager {
12
- constructor(
13
- /** Reference to node storage. Checked on parent cache-miss. */
14
- private readonly hostNullifiers: PublicTreesDB,
15
- /** Cache of siloed nullifiers. */
16
- private cache: Set<bigint> = new Set(),
17
- /** Parent nullifier manager to fall back on */
18
- private readonly parent?: NullifierManager,
19
- ) {}
20
-
21
- /**
22
- * Create a new nullifiers manager forked from this one
23
- */
24
- public fork() {
25
- return new NullifierManager(this.hostNullifiers, new Set(), this);
26
- }
27
-
28
- /**
29
- * Get a nullifier's existence in this' cache or parent's (recursively).
30
- * DOES NOT CHECK HOST STORAGE!
31
- * @param siloedNullifier - the nullifier to check for
32
- * @returns exists: whether the nullifier exists in cache here or in parent's
33
- */
34
- private checkExistsHereOrParent(siloedNullifier: Fr): boolean {
35
- // First check this cache
36
- let existsAsPending = this.cache.has(siloedNullifier.toBigInt());
37
- // Then try parent's nullifier cache
38
- if (!existsAsPending && this.parent) {
39
- // Note: this will recurse to grandparent/etc until a cache-hit is encountered.
40
- existsAsPending = this.parent.checkExistsHereOrParent(siloedNullifier);
41
- }
42
- return existsAsPending;
43
- }
44
-
45
- /**
46
- * Get a nullifier's existence status.
47
- * 1. Check cache.
48
- * 2. Check parent cache.
49
- * 3. Fall back to the host state.
50
- * 4. Not found! Nullifier does not exist.
51
- *
52
- * @param siloedNullifier - the nullifier to check for
53
- * @returns exists: whether the nullifier exists at all,
54
- * cacheHit: whether the nullifier was found in a cache,
55
- */
56
- public async checkExists(siloedNullifier: Fr): Promise<{ exists: boolean; cacheHit: boolean }> {
57
- // Check this cache and parent's (recursively)
58
- const cacheHit = this.checkExistsHereOrParent(siloedNullifier);
59
- let existsInTree = false;
60
- if (!cacheHit) {
61
- // Finally try the host's Aztec state (a trip to the database)
62
- //const leafOrLowLeafIndex = await this.hostNullifiers.db.getPreviousValueIndex(MerkleTreeId.NULLIFIER_TREE, siloedNullifier.toBigInt());
63
- //assert(
64
- // leafOrLowLeafIndex !== undefined,
65
- // `${MerkleTreeId[MerkleTreeId.NULLIFIER_TREE]} low leaf index should always be found (even if target leaf does not exist)`,
66
- //);
67
- //existsInTree = leafOrLowLeafIndex.alreadyPresent;
68
- const exists = await this.hostNullifiers.checkNullifierExists(siloedNullifier);
69
- existsInTree = exists;
70
- }
71
- const exists = cacheHit || existsInTree;
72
- return Promise.resolve({ exists, cacheHit });
73
- }
74
-
75
- /**
76
- * Stage a new nullifier (append it to the cache).
77
- *
78
- * @param siloedNullifier - the nullifier to stage
79
- */
80
- public async append(siloedNullifier: Fr) {
81
- const { exists } = await this.checkExists(siloedNullifier);
82
- if (exists) {
83
- throw new NullifierCollisionError(`Siloed nullifier ${siloedNullifier} already exists in parent cache or host.`);
84
- }
85
- this.cache.add(siloedNullifier.toBigInt());
86
- }
87
-
88
- /**
89
- * Merges another nullifier cache into this one.
90
- *
91
- * @param incomingNullifiers - the incoming cached nullifiers to merge into this instance's
92
- */
93
- public acceptAndMerge(incomingNullifiers: NullifierManager) {
94
- for (const incomingNullifier of incomingNullifiers.cache) {
95
- if (this.cache.has(incomingNullifier)) {
96
- throw new NullifierCollisionError(
97
- `Failed to merge in fork's cached nullifiers. Siloed nullifier ${incomingNullifier} already exists in parent cache.`,
98
- );
99
- }
100
- }
101
- this.cache = new Set([...this.cache, ...incomingNullifiers.cache]);
102
- }
103
- }
@@ -1,174 +0,0 @@
1
- import { Fr } from '@aztec/foundation/curves/bn254';
2
- import type { AztecAddress } from '@aztec/stdlib/aztec-address';
3
-
4
- import type { PublicStateDBInterface } from '../db_interfaces.js';
5
-
6
- type PublicStorageReadResult = {
7
- value: Fr;
8
- cached: boolean;
9
- };
10
-
11
- /**
12
- * A class to manage public storage reads and writes during a contract call's AVM simulation.
13
- * Maintains a storage write cache, and ensures that reads fall back to the correct source.
14
- * When a contract call completes, its storage cache can be merged into its parent's.
15
- */
16
- export class PublicStorage {
17
- /** Cached storage writes. */
18
- private readonly cache: PublicStorageCache;
19
-
20
- constructor(
21
- /** Reference to node storage. Checked on parent cache-miss. */
22
- private readonly hostPublicStorage: PublicStateDBInterface,
23
- /** Parent's storage. Checked on this' cache-miss. */
24
- private readonly parent?: PublicStorage,
25
- ) {
26
- this.cache = new PublicStorageCache();
27
- }
28
-
29
- /**
30
- * Create a new public storage manager forked from this one
31
- */
32
- public fork() {
33
- return new PublicStorage(this.hostPublicStorage, this);
34
- }
35
-
36
- /**
37
- * Read a storage value from this' cache or parent's (recursively).
38
- * DOES NOT CHECK HOST STORAGE!
39
- *
40
- * @param contractAddress - the address of the contract whose storage is being read from
41
- * @param slot - the slot in the contract's storage being read from
42
- * @returns value: the latest value written according to this cache or the parent's. undefined on cache miss.
43
- */
44
- public readHereOrParent(contractAddress: AztecAddress, slot: Fr): Fr | undefined {
45
- // First try check this storage cache
46
- let value = this.cache.read(contractAddress, slot);
47
- // Then try parent's storage cache
48
- if (!value && this.parent) {
49
- // Note: this will recurse to grandparent/etc until a cache-hit is encountered.
50
- value = this.parent.readHereOrParent(contractAddress, slot);
51
- }
52
- return value;
53
- }
54
-
55
- /**
56
- * Read a value from storage.
57
- * 1. Check cache.
58
- * 2. Check parent cache.
59
- * 3. Fall back to the host state.
60
- * 4. Not found! Value has never been written to before. Flag it as non-existent and return value zero.
61
- *
62
- * @param contractAddress - the address of the contract whose storage is being read from
63
- * @param slot - the slot in the contract's storage being read from
64
- * @returns exists: whether the slot has EVER been written to before, value: the latest value written to slot, or 0 if never written to before
65
- */
66
- public async read(contractAddress: AztecAddress, slot: Fr): Promise<PublicStorageReadResult> {
67
- let cached = false;
68
- // Check this cache and parent's (recursively)
69
- let value = this.readHereOrParent(contractAddress, slot);
70
- // Finally try the host's Aztec state (a trip to the database)
71
- if (!value) {
72
- // This functions returns Fr.ZERO if it has never been written to before
73
- // we explicity coalesce to Fr.ZERO in case we have some implementations that cause this to return undefined
74
- value = (await this.hostPublicStorage.storageRead(contractAddress, slot)) ?? Fr.ZERO;
75
- // TODO(dbanks12): if value retrieved from host storage, we can cache it here
76
- // any future reads to the same slot can read from cache instead of more expensive
77
- // DB access
78
- } else {
79
- cached = true;
80
- }
81
- // if value is Fr.ZERO here, it that means this slot has never been written to!
82
- return Promise.resolve({ value, cached });
83
- }
84
-
85
- /**
86
- * Stage a storage write.
87
- *
88
- * @param contractAddress - the address of the contract whose storage is being written to
89
- * @param slot - the slot in the contract's storage being written to
90
- * @param value - the value being written to the slot
91
- */
92
- public write(contractAddress: AztecAddress, slot: Fr, value: Fr) {
93
- this.cache.write(contractAddress, slot, value);
94
- }
95
-
96
- /**
97
- * Merges another PublicStorage's cache (pending writes) into this one.
98
- *
99
- * @param incomingPublicStorage - the incoming public storage to merge into this instance's
100
- */
101
- public acceptAndMerge(incomingPublicStorage: PublicStorage) {
102
- this.cache.acceptAndMerge(incomingPublicStorage.cache);
103
- }
104
- }
105
-
106
- /**
107
- * A class to cache writes to public storage during a contract call's AVM simulation.
108
- * "Writes" update a map, "reads" check that map or return undefined.
109
- * An instance of this class can merge another instance's staged writes into its own.
110
- */
111
- class PublicStorageCache {
112
- /**
113
- * Map for staging storage writes.
114
- * One inner-map per contract storage address,
115
- * mapping storage slot to latest staged write value.
116
- */
117
- private cachePerContract: Map<bigint, Map<bigint, Fr>> = new Map();
118
-
119
- /**
120
- * Read a staged value from storage, if it has been previously written to.
121
- *
122
- * @param contractAddress - the address of the contract whose storage is being read from
123
- * @param slot - the slot in the contract's storage being read from
124
- * @returns the latest value written to slot, or undefined if no value has been written
125
- */
126
- public read(contractAddress: AztecAddress, slot: Fr): Fr | undefined {
127
- return this.cachePerContract.get(contractAddress.toBigInt())?.get(slot.toBigInt());
128
- }
129
-
130
- /**
131
- * Stage a storage write.
132
- *
133
- * @param contractAddress - the address of the contract whose storage is being written to
134
- * @param slot - the slot in the contract's storage being written to
135
- * @param value - the value being written to the slot
136
- */
137
- public write(contractAddress: AztecAddress, slot: Fr, value: Fr) {
138
- let cacheAtContract = this.cachePerContract.get(contractAddress.toBigInt());
139
- if (!cacheAtContract) {
140
- // If this contract's storage has no staged modifications, create a new inner map to store them
141
- cacheAtContract = new Map();
142
- this.cachePerContract.set(contractAddress.toBigInt(), cacheAtContract);
143
- }
144
- cacheAtContract.set(slot.toBigInt(), value);
145
- }
146
-
147
- /**
148
- * Merges another cache's staged writes into this instance's cache.
149
- *
150
- * Staged modifications in "incoming" take precedence over those
151
- * present in "this" as they are assumed to occur after this' writes.
152
- *
153
- * In practice, "this" is a parent call's storage cache, and "incoming" is a nested call's.
154
- *
155
- * @param incomingStorageCache - the incoming storage write cache to merge into this instance's
156
- */
157
- public acceptAndMerge(incomingStorageCache: PublicStorageCache) {
158
- // Iterate over all incoming contracts with staged writes.
159
- for (const [incomingAddress, incomingCacheAtContract] of incomingStorageCache.cachePerContract) {
160
- const thisCacheAtContract = this.cachePerContract.get(incomingAddress);
161
- if (!thisCacheAtContract) {
162
- // The contract has no storage writes staged here
163
- // so just accept the incoming cache as-is for this contract.
164
- this.cachePerContract.set(incomingAddress, incomingCacheAtContract);
165
- } else {
166
- // "Incoming" and "this" both have staged writes for this contract.
167
- // Merge in incoming staged writes, giving them precedence over this'.
168
- for (const [slot, value] of incomingCacheAtContract) {
169
- thisCacheAtContract.set(slot, value);
170
- }
171
- }
172
- }
173
- }
174
- }