@pimlico/alto 0.0.0-main.20240607T104359 → 0.0.0-staging.20240606T095015
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cli/config/bundler.js +73 -76
- package/lib/cli/config/bundler.js.map +1 -1
- package/lib/cli/config/index.js +2 -18
- package/lib/cli/config/index.js.map +1 -1
- package/lib/cli/config/options.js +10 -13
- package/lib/cli/config/options.js.map +1 -1
- package/lib/cli/customTransport.js +7 -11
- package/lib/cli/customTransport.js.map +1 -1
- package/lib/cli/handler.js +24 -28
- package/lib/cli/handler.js.map +1 -1
- package/lib/cli/index.d.ts +0 -1
- package/lib/cli/index.js +2 -19
- package/lib/cli/index.js.map +1 -1
- package/lib/cli/instrumentation.js +20 -22
- package/lib/cli/instrumentation.js.map +1 -1
- package/lib/cli/setupServer.js +17 -21
- package/lib/cli/setupServer.js.map +1 -1
- package/lib/cli/util.js +1 -5
- package/lib/cli/util.js.map +1 -1
- package/lib/executor/executor.js +56 -90
- package/lib/executor/executor.js.map +1 -1
- package/lib/executor/executorManager.js +7 -12
- package/lib/executor/executorManager.js.map +1 -1
- package/lib/executor/index.js +4 -20
- package/lib/executor/index.js.map +1 -1
- package/lib/executor/senderManager.js +8 -12
- package/lib/executor/senderManager.js.map +1 -1
- package/lib/executor/test/utils.js +22 -28
- package/lib/executor/test/utils.js.map +1 -1
- package/lib/executor/utils.js +32 -64
- package/lib/executor/utils.js.map +1 -1
- package/lib/index.d.ts +5 -1
- package/lib/index.js +91 -3
- package/lib/index.js.map +1 -1
- package/lib/mempool/index.js +4 -20
- package/lib/mempool/index.js.map +1 -1
- package/lib/mempool/mempool.js +55 -59
- package/lib/mempool/mempool.js.map +1 -1
- package/lib/mempool/monitoring.js +1 -5
- package/lib/mempool/monitoring.js.map +1 -1
- package/lib/mempool/nullMempool.js +1 -5
- package/lib/mempool/nullMempool.js.map +1 -1
- package/lib/mempool/reputationManager.js +44 -49
- package/lib/mempool/reputationManager.js.map +1 -1
- package/lib/mempool/store.js +1 -5
- package/lib/mempool/store.js.map +1 -1
- package/lib/rpc/EntryPointSimulationsV07.js +44 -50
- package/lib/rpc/EntryPointSimulationsV07.js.map +1 -1
- package/lib/rpc/ExecuteSimulator.js +2 -5
- package/lib/rpc/ExecuteSimulator.js.map +1 -1
- package/lib/rpc/gasEstimation.js +62 -69
- package/lib/rpc/gasEstimation.js.map +1 -1
- package/lib/rpc/index.js +4 -20
- package/lib/rpc/index.js.map +1 -1
- package/lib/rpc/nonceQueuer.js +16 -20
- package/lib/rpc/nonceQueuer.js.map +1 -1
- package/lib/rpc/rpcHandler.js +76 -103
- package/lib/rpc/rpcHandler.js.map +1 -1
- package/lib/rpc/server.js +27 -58
- package/lib/rpc/server.js.map +1 -1
- package/lib/rpc/validation/BundlerCollectorTracerV06.js +1 -5
- package/lib/rpc/validation/BundlerCollectorTracerV06.js.map +1 -1
- package/lib/rpc/validation/BundlerCollectorTracerV07.js +1 -5
- package/lib/rpc/validation/BundlerCollectorTracerV07.js.map +1 -1
- package/lib/rpc/validation/SafeValidator.js +65 -69
- package/lib/rpc/validation/SafeValidator.js.map +1 -1
- package/lib/rpc/validation/TracerResultParserV06.js +26 -30
- package/lib/rpc/validation/TracerResultParserV06.js.map +1 -1
- package/lib/rpc/validation/TracerResultParserV07.js +29 -36
- package/lib/rpc/validation/TracerResultParserV07.js.map +1 -1
- package/lib/rpc/validation/UnsafeValidator.js +46 -73
- package/lib/rpc/validation/UnsafeValidator.js.map +1 -1
- package/lib/rpc/validation/index.js +2 -18
- package/lib/rpc/validation/index.js.map +1 -1
- package/lib/rpc/validation/tracer.js +7 -37
- package/lib/rpc/validation/tracer.js.map +1 -1
- package/lib/types/contracts/BundleBulker.js +1 -4
- package/lib/types/contracts/BundleBulker.js.map +1 -1
- package/lib/types/contracts/CallEngine.js +1 -4
- package/lib/types/contracts/CallEngine.js.map +1 -1
- package/lib/types/contracts/CodeHashGetter.js +2 -5
- package/lib/types/contracts/CodeHashGetter.js.map +1 -1
- package/lib/types/contracts/EntryPoint.js +4 -7
- package/lib/types/contracts/EntryPoint.js.map +1 -1
- package/lib/types/contracts/EntryPointSimulations.js +3 -6
- package/lib/types/contracts/EntryPointSimulations.js.map +1 -1
- package/lib/types/contracts/IOpInflator.js +1 -4
- package/lib/types/contracts/IOpInflator.js.map +1 -1
- package/lib/types/contracts/IPaymaster.js +1 -4
- package/lib/types/contracts/IPaymaster.js.map +1 -1
- package/lib/types/contracts/Inflator.js +1 -4
- package/lib/types/contracts/Inflator.js.map +1 -1
- package/lib/types/contracts/PerOpInflator.js +1 -4
- package/lib/types/contracts/PerOpInflator.js.map +1 -1
- package/lib/types/contracts/PimlicoEntryPointSimulations.js +2 -5
- package/lib/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
- package/lib/types/contracts/SenderCreator.js +2 -5
- package/lib/types/contracts/SenderCreator.js.map +1 -1
- package/lib/types/contracts/SimpleAccountFactory.js +2 -5
- package/lib/types/contracts/SimpleAccountFactory.js.map +1 -1
- package/lib/types/contracts/TestOpcodesAccount.js +2 -5
- package/lib/types/contracts/TestOpcodesAccount.js.map +1 -1
- package/lib/types/contracts/TestOpcodesAccountFactory.js +2 -5
- package/lib/types/contracts/TestOpcodesAccountFactory.js.map +1 -1
- package/lib/types/contracts/TestStorageAccount.js +2 -5
- package/lib/types/contracts/TestStorageAccount.js.map +1 -1
- package/lib/types/contracts/index.js +16 -32
- package/lib/types/contracts/index.js.map +1 -1
- package/lib/types/gasPrice.js +14 -17
- package/lib/types/gasPrice.js.map +1 -1
- package/lib/types/index.js +10 -26
- package/lib/types/index.js.map +1 -1
- package/lib/types/interfaces.js +1 -2
- package/lib/types/mempool.d.ts +1 -2
- package/lib/types/mempool.js +5 -10
- package/lib/types/mempool.js.map +1 -1
- package/lib/types/schemas.js +254 -284
- package/lib/types/schemas.js.map +1 -1
- package/lib/types/test/validationTestErrors.js +2 -5
- package/lib/types/test/validationTestErrors.js.map +1 -1
- package/lib/types/utils.js +5 -9
- package/lib/types/utils.js.map +1 -1
- package/lib/types/validation.js +139 -142
- package/lib/types/validation.js.map +1 -1
- package/lib/utils/bigInt.js +2 -7
- package/lib/utils/bigInt.js.map +1 -1
- package/lib/utils/compressionHandler.js +7 -11
- package/lib/utils/compressionHandler.js.map +1 -1
- package/lib/utils/gasPriceManager.js +30 -57
- package/lib/utils/gasPriceManager.js.map +1 -1
- package/lib/utils/helpers.js +5 -10
- package/lib/utils/helpers.js.map +1 -1
- package/lib/utils/index.js +9 -25
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/logger.js +10 -19
- package/lib/utils/logger.js.map +1 -1
- package/lib/utils/metrics.js +20 -24
- package/lib/utils/metrics.js.map +1 -1
- package/lib/utils/rpc-reply.js +1 -3
- package/lib/utils/rpc-reply.js.map +1 -1
- package/lib/utils/test.js +36 -67
- package/lib/utils/test.js.map +1 -1
- package/lib/utils/userop.js +62 -107
- package/lib/utils/userop.js.map +1 -1
- package/lib/utils/validation.js +64 -99
- package/lib/utils/validation.js.map +1 -1
- package/package.json +68 -70
- package/esm/cli/alto.d.ts +0 -6
- package/esm/cli/alto.js +0 -92
- package/esm/cli/alto.js.map +0 -1
- package/esm/cli/config/bundler.d.ts +0 -391
- package/esm/cli/config/bundler.js +0 -132
- package/esm/cli/config/bundler.js.map +0 -1
- package/esm/cli/config/index.d.ts +0 -3
- package/esm/cli/config/index.js +0 -3
- package/esm/cli/config/index.js.map +0 -1
- package/esm/cli/config/options.d.ts +0 -11
- package/esm/cli/config/options.js +0 -336
- package/esm/cli/config/options.js.map +0 -1
- package/esm/cli/customTransport.d.ts +0 -14
- package/esm/cli/customTransport.js +0 -53
- package/esm/cli/customTransport.js.map +0 -1
- package/esm/cli/handler.d.ts +0 -3
- package/esm/cli/handler.js +0 -116
- package/esm/cli/handler.js.map +0 -1
- package/esm/cli/index.d.ts +0 -4
- package/esm/cli/index.js +0 -4
- package/esm/cli/index.js.map +0 -1
- package/esm/cli/instrumentation.d.ts +0 -2
- package/esm/cli/instrumentation.js +0 -39
- package/esm/cli/instrumentation.js.map +0 -1
- package/esm/cli/setupServer.d.ts +0 -17
- package/esm/cli/setupServer.js +0 -155
- package/esm/cli/setupServer.js.map +0 -1
- package/esm/cli/util.d.ts +0 -22
- package/esm/cli/util.js +0 -30
- package/esm/cli/util.js.map +0 -1
- package/esm/executor/executor.d.ts +0 -54
- package/esm/executor/executor.js +0 -643
- package/esm/executor/executor.js.map +0 -1
- package/esm/executor/executorManager.d.ts +0 -34
- package/esm/executor/executorManager.js +0 -402
- package/esm/executor/executorManager.js.map +0 -1
- package/esm/executor/index.d.ts +0 -5
- package/esm/executor/index.js +0 -5
- package/esm/executor/index.js.map +0 -1
- package/esm/executor/senderManager.d.ts +0 -17
- package/esm/executor/senderManager.js +0 -160
- package/esm/executor/senderManager.js.map +0 -1
- package/esm/executor/test/utils.d.ts +0 -13
- package/esm/executor/test/utils.js +0 -75
- package/esm/executor/test/utils.js.map +0 -1
- package/esm/executor/utils.d.ts +0 -32
- package/esm/executor/utils.js +0 -241
- package/esm/executor/utils.js.map +0 -1
- package/esm/index.d.ts +0 -2
- package/esm/index.js +0 -2
- package/esm/index.js.map +0 -1
- package/esm/mempool/index.d.ts +0 -5
- package/esm/mempool/index.js +0 -5
- package/esm/mempool/index.js.map +0 -1
- package/esm/mempool/mempool.d.ts +0 -64
- package/esm/mempool/mempool.js +0 -489
- package/esm/mempool/mempool.js.map +0 -1
- package/esm/mempool/monitoring.d.ts +0 -10
- package/esm/mempool/monitoring.js +0 -34
- package/esm/mempool/monitoring.js.map +0 -1
- package/esm/mempool/nullMempool.d.ts +0 -15
- package/esm/mempool/nullMempool.js +0 -36
- package/esm/mempool/nullMempool.js.map +0 -1
- package/esm/mempool/reputationManager.d.ts +0 -115
- package/esm/mempool/reputationManager.js +0 -397
- package/esm/mempool/reputationManager.js.map +0 -1
- package/esm/mempool/store.d.ts +0 -22
- package/esm/mempool/store.js +0 -123
- package/esm/mempool/store.js.map +0 -1
- package/esm/rpc/EntryPointSimulationsV07.d.ts +0 -58
- package/esm/rpc/EntryPointSimulationsV07.js +0 -407
- package/esm/rpc/EntryPointSimulationsV07.js.map +0 -1
- package/esm/rpc/ExecuteSimulator.d.ts +0 -37
- package/esm/rpc/ExecuteSimulator.js +0 -48
- package/esm/rpc/ExecuteSimulator.js.map +0 -1
- package/esm/rpc/gasEstimation.d.ts +0 -17
- package/esm/rpc/gasEstimation.js +0 -410
- package/esm/rpc/gasEstimation.js.map +0 -1
- package/esm/rpc/index.d.ts +0 -5
- package/esm/rpc/index.js +0 -5
- package/esm/rpc/index.js.map +0 -1
- package/esm/rpc/nonceQueuer.d.ts +0 -25
- package/esm/rpc/nonceQueuer.js +0 -135
- package/esm/rpc/nonceQueuer.js.map +0 -1
- package/esm/rpc/rpcHandler.d.ts +0 -64
- package/esm/rpc/rpcHandler.js +0 -727
- package/esm/rpc/rpcHandler.js.map +0 -1
- package/esm/rpc/server.d.ts +0 -31
- package/esm/rpc/server.js +0 -239
- package/esm/rpc/server.js.map +0 -1
- package/esm/rpc/validation/BundlerCollectorTracerV06.d.ts +0 -102
- package/esm/rpc/validation/BundlerCollectorTracerV06.js +0 -255
- package/esm/rpc/validation/BundlerCollectorTracerV06.js.map +0 -1
- package/esm/rpc/validation/BundlerCollectorTracerV07.d.ts +0 -102
- package/esm/rpc/validation/BundlerCollectorTracerV07.js +0 -254
- package/esm/rpc/validation/BundlerCollectorTracerV07.js.map +0 -1
- package/esm/rpc/validation/SafeValidator.d.ts +0 -35
- package/esm/rpc/validation/SafeValidator.js +0 -487
- package/esm/rpc/validation/SafeValidator.js.map +0 -1
- package/esm/rpc/validation/TracerResultParserV06.d.ts +0 -13
- package/esm/rpc/validation/TracerResultParserV06.js +0 -578
- package/esm/rpc/validation/TracerResultParserV06.js.map +0 -1
- package/esm/rpc/validation/TracerResultParserV07.d.ts +0 -33
- package/esm/rpc/validation/TracerResultParserV07.js +0 -557
- package/esm/rpc/validation/TracerResultParserV07.js.map +0 -1
- package/esm/rpc/validation/UnsafeValidator.d.ts +0 -63
- package/esm/rpc/validation/UnsafeValidator.js +0 -257
- package/esm/rpc/validation/UnsafeValidator.js.map +0 -1
- package/esm/rpc/validation/index.d.ts +0 -3
- package/esm/rpc/validation/index.js +0 -3
- package/esm/rpc/validation/index.js.map +0 -1
- package/esm/rpc/validation/tracer.d.ts +0 -122
- package/esm/rpc/validation/tracer.js +0 -82
- package/esm/rpc/validation/tracer.js.map +0 -1
- package/esm/types/contracts/BundleBulker.d.ts +0 -120
- package/esm/types/contracts/BundleBulker.js +0 -157
- package/esm/types/contracts/BundleBulker.js.map +0 -1
- package/esm/types/contracts/CallEngine.d.ts +0 -28
- package/esm/types/contracts/CallEngine.js +0 -37
- package/esm/types/contracts/CallEngine.js.map +0 -1
- package/esm/types/contracts/CodeHashGetter.d.ts +0 -37
- package/esm/types/contracts/CodeHashGetter.js +0 -45
- package/esm/types/contracts/CodeHashGetter.js.map +0 -1
- package/esm/types/contracts/EntryPoint.d.ts +0 -1789
- package/esm/types/contracts/EntryPoint.js +0 -2304
- package/esm/types/contracts/EntryPoint.js.map +0 -1
- package/esm/types/contracts/EntryPointSimulations.d.ts +0 -153
- package/esm/types/contracts/EntryPointSimulations.js +0 -15
- package/esm/types/contracts/EntryPointSimulations.js.map +0 -1
- package/esm/types/contracts/IOpInflator.d.ts +0 -61
- package/esm/types/contracts/IOpInflator.js +0 -80
- package/esm/types/contracts/IOpInflator.js.map +0 -1
- package/esm/types/contracts/IPaymaster.d.ts +0 -3
- package/esm/types/contracts/IPaymaster.js +0 -117
- package/esm/types/contracts/IPaymaster.js.map +0 -1
- package/esm/types/contracts/Inflator.d.ts +0 -65
- package/esm/types/contracts/Inflator.js +0 -84
- package/esm/types/contracts/Inflator.js.map +0 -1
- package/esm/types/contracts/PerOpInflator.d.ts +0 -176
- package/esm/types/contracts/PerOpInflator.js +0 -229
- package/esm/types/contracts/PerOpInflator.js.map +0 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.d.ts +0 -23
- package/esm/types/contracts/PimlicoEntryPointSimulations.js +0 -33
- package/esm/types/contracts/PimlicoEntryPointSimulations.js.map +0 -1
- package/esm/types/contracts/SenderCreator.d.ts +0 -4
- package/esm/types/contracts/SenderCreator.js +0 -23
- package/esm/types/contracts/SenderCreator.js.map +0 -1
- package/esm/types/contracts/SimpleAccountFactory.d.ts +0 -57
- package/esm/types/contracts/SimpleAccountFactory.js +0 -76
- package/esm/types/contracts/SimpleAccountFactory.js.map +0 -1
- package/esm/types/contracts/TestOpcodesAccount.d.ts +0 -4
- package/esm/types/contracts/TestOpcodesAccount.js +0 -281
- package/esm/types/contracts/TestOpcodesAccount.js.map +0 -1
- package/esm/types/contracts/TestOpcodesAccountFactory.d.ts +0 -4
- package/esm/types/contracts/TestOpcodesAccountFactory.js +0 -23
- package/esm/types/contracts/TestOpcodesAccountFactory.js.map +0 -1
- package/esm/types/contracts/TestStorageAccount.d.ts +0 -4
- package/esm/types/contracts/TestStorageAccount.js +0 -313
- package/esm/types/contracts/TestStorageAccount.js.map +0 -1
- package/esm/types/contracts/index.d.ts +0 -17
- package/esm/types/contracts/index.js +0 -17
- package/esm/types/contracts/index.js.map +0 -1
- package/esm/types/gasPrice.d.ts +0 -110
- package/esm/types/gasPrice.js +0 -52
- package/esm/types/gasPrice.js.map +0 -1
- package/esm/types/index.d.ts +0 -11
- package/esm/types/index.js +0 -11
- package/esm/types/index.js.map +0 -1
- package/esm/types/interfaces.d.ts +0 -26
- package/esm/types/interfaces.js +0 -2
- package/esm/types/interfaces.js.map +0 -1
- package/esm/types/mempool.d.ts +0 -79
- package/esm/types/mempool.js +0 -16
- package/esm/types/mempool.js.map +0 -1
- package/esm/types/schemas.d.ts +0 -4791
- package/esm/types/schemas.js +0 -497
- package/esm/types/schemas.js.map +0 -1
- package/esm/types/test/validationTestErrors.d.ts +0 -3
- package/esm/types/test/validationTestErrors.js +0 -229
- package/esm/types/test/validationTestErrors.js.map +0 -1
- package/esm/types/utils.d.ts +0 -24
- package/esm/types/utils.js +0 -30
- package/esm/types/utils.js.map +0 -1
- package/esm/types/validation.d.ts +0 -14327
- package/esm/types/validation.js +0 -304
- package/esm/types/validation.js.map +0 -1
- package/esm/utils/bigInt.d.ts +0 -3
- package/esm/utils/bigInt.js +0 -9
- package/esm/utils/bigInt.js.map +0 -1
- package/esm/utils/compressionHandler.d.ts +0 -11
- package/esm/utils/compressionHandler.js +0 -39
- package/esm/utils/compressionHandler.js.map +0 -1
- package/esm/utils/gasPriceManager.d.ts +0 -34
- package/esm/utils/gasPriceManager.js +0 -338
- package/esm/utils/gasPriceManager.js.map +0 -1
- package/esm/utils/helpers.d.ts +0 -4
- package/esm/utils/helpers.js +0 -13
- package/esm/utils/helpers.js.map +0 -1
- package/esm/utils/index.d.ts +0 -11
- package/esm/utils/index.js +0 -10
- package/esm/utils/index.js.map +0 -1
- package/esm/utils/logger.d.ts +0 -6
- package/esm/utils/logger.js +0 -76
- package/esm/utils/logger.js.map +0 -1
- package/esm/utils/metrics.d.ts +0 -22
- package/esm/utils/metrics.js +0 -150
- package/esm/utils/metrics.js.map +0 -1
- package/esm/utils/rpc-reply.d.ts +0 -17
- package/esm/utils/rpc-reply.js +0 -41
- package/esm/utils/rpc-reply.js.map +0 -1
- package/esm/utils/test.d.ts +0 -17
- package/esm/utils/test.js +0 -130
- package/esm/utils/test.js.map +0 -1
- package/esm/utils/userop.d.ts +0 -49
- package/esm/utils/userop.js +0 -408
- package/esm/utils/userop.js.map +0 -1
- package/esm/utils/validation.d.ts +0 -65
- package/esm/utils/validation.js +0 -461
- package/esm/utils/validation.js.map +0 -1
- package/lib/cli/alto.d.ts +0 -6
- package/lib/cli/alto.js +0 -123
- package/lib/cli/alto.js.map +0 -1
|
@@ -1,557 +0,0 @@
|
|
|
1
|
-
// This file contains references to validation rules, in the format [xxx-###]
|
|
2
|
-
// where xxx is OP/STO/COD/EP/SREP/EREP/UREP/ALT, and ### is a number
|
|
3
|
-
// the validation rules are defined in erc-aa-validation.md
|
|
4
|
-
import { decodeErrorResult, decodeFunctionResult, getFunctionSelector, hexToBigInt, keccak256, pad } from "viem";
|
|
5
|
-
import { EntryPointV07Abi, PaymasterAbi, SenderCreatorAbi, RpcError, ValidationErrors } from "../../types/index.js";
|
|
6
|
-
const abi = [...SenderCreatorAbi, ...EntryPointV07Abi, ...PaymasterAbi];
|
|
7
|
-
// biome-ignore lint/suspicious/noExplicitAny: it's a generic type
|
|
8
|
-
const functionSignatureToMethodName = (hash) => {
|
|
9
|
-
let functionName = undefined;
|
|
10
|
-
for (const item of abi) {
|
|
11
|
-
const signature = getFunctionSelector(item);
|
|
12
|
-
if (signature === hash) {
|
|
13
|
-
functionName = item.name;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
if (functionName === undefined) {
|
|
17
|
-
throw new Error(`Could not find function name for hash ${hash}`);
|
|
18
|
-
}
|
|
19
|
-
return functionName;
|
|
20
|
-
};
|
|
21
|
-
export function isStaked(entStake) {
|
|
22
|
-
return Boolean(entStake && 1n <= entStake.stake && 1n <= entStake.unstakeDelaySec);
|
|
23
|
-
}
|
|
24
|
-
export function associatedWith(slot, addr, entitySlots) {
|
|
25
|
-
const addrPadded = pad(addr, {
|
|
26
|
-
size: 32
|
|
27
|
-
}).toLowerCase();
|
|
28
|
-
if (slot.toLowerCase() === addrPadded) {
|
|
29
|
-
return true;
|
|
30
|
-
}
|
|
31
|
-
const k = entitySlots[addr];
|
|
32
|
-
if (!k) {
|
|
33
|
-
return false;
|
|
34
|
-
}
|
|
35
|
-
const slotN = hexToBigInt(slot);
|
|
36
|
-
// scan all slot entries to check of the given slot is within a structure, starting at that offset.
|
|
37
|
-
// assume a maximum size on a (static) structure size.
|
|
38
|
-
for (const k1 of k.keys()) {
|
|
39
|
-
const kn = hexToBigInt(k1);
|
|
40
|
-
if (slotN >= kn && slotN < kn + 128n) {
|
|
41
|
-
return true;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
return false;
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* parse all call operation in the trace.
|
|
48
|
-
* notes:
|
|
49
|
-
* - entries are ordered by the return (so nested call appears before its outer call
|
|
50
|
-
* - last entry is top-level return from "simulateValidation". it as ret and rettype, but no type or address
|
|
51
|
-
* @param tracerResults
|
|
52
|
-
* @param abi
|
|
53
|
-
*/
|
|
54
|
-
function parseCallStack(tracerResults) {
|
|
55
|
-
function callCatch(x, def) {
|
|
56
|
-
try {
|
|
57
|
-
return x();
|
|
58
|
-
}
|
|
59
|
-
catch (_) {
|
|
60
|
-
return def;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
const out = [];
|
|
64
|
-
const stack = [];
|
|
65
|
-
const filteredTracerResultCalls = tracerResults.calls.filter((x) => !x.type.startsWith("depth"));
|
|
66
|
-
for (const c of filteredTracerResultCalls) {
|
|
67
|
-
if (c.type.match(/REVERT|RETURN/) !== null) {
|
|
68
|
-
const top = stack.splice(-1)[0] ?? {
|
|
69
|
-
type: "top",
|
|
70
|
-
method: "validateUserOp"
|
|
71
|
-
};
|
|
72
|
-
// biome-ignore lint/suspicious/noExplicitAny: it's a generic type
|
|
73
|
-
const returnData = c.data;
|
|
74
|
-
if (top.type.match(/CREATE/) !== null) {
|
|
75
|
-
out.push({
|
|
76
|
-
to: top.to,
|
|
77
|
-
from: top.from,
|
|
78
|
-
type: top.type,
|
|
79
|
-
method: "",
|
|
80
|
-
return: `len=${returnData.length}`
|
|
81
|
-
});
|
|
82
|
-
}
|
|
83
|
-
else {
|
|
84
|
-
const method = callCatch(() => functionSignatureToMethodName(top.method), top.method);
|
|
85
|
-
if (c.type === "REVERT") {
|
|
86
|
-
const parsedError = callCatch(() => decodeErrorResult({ abi: abi, data: returnData }), returnData);
|
|
87
|
-
out.push({
|
|
88
|
-
to: top.to,
|
|
89
|
-
from: top.from,
|
|
90
|
-
type: top.type,
|
|
91
|
-
method: method,
|
|
92
|
-
value: top.value,
|
|
93
|
-
revert: parsedError
|
|
94
|
-
});
|
|
95
|
-
}
|
|
96
|
-
else {
|
|
97
|
-
const ret = callCatch(() => decodeFunctionResult({
|
|
98
|
-
abi: abi,
|
|
99
|
-
functionName: method,
|
|
100
|
-
data: returnData
|
|
101
|
-
}), returnData);
|
|
102
|
-
out.push({
|
|
103
|
-
to: top.to,
|
|
104
|
-
from: top.from,
|
|
105
|
-
type: top.type,
|
|
106
|
-
value: top.value,
|
|
107
|
-
method: method,
|
|
108
|
-
return: ret
|
|
109
|
-
});
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
else {
|
|
114
|
-
stack.push(c);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
// TODO: verify that stack is empty at the end.
|
|
118
|
-
return out;
|
|
119
|
-
}
|
|
120
|
-
/**
|
|
121
|
-
* slots associated with each entity.
|
|
122
|
-
* keccak( A || ...) is associated with "A"
|
|
123
|
-
* removed rule: keccak( ... || ASSOC ) (for a previously associated hash) is also associated with "A"
|
|
124
|
-
*
|
|
125
|
-
* @param stakeInfoEntities stake info for (factory, account, paymaster). factory and paymaster can be null.
|
|
126
|
-
* @param keccak array of buffers that were given to keccak in the transaction
|
|
127
|
-
*/
|
|
128
|
-
export function parseEntitySlots(stakeInfoEntities, keccak) {
|
|
129
|
-
// for each entity (sender, factory, paymaster), hold the valid slot addresses
|
|
130
|
-
// valid: the slot was generated by keccak(entity || ...)
|
|
131
|
-
const entitySlots = {};
|
|
132
|
-
for (const k of keccak) {
|
|
133
|
-
const values = Object.values(stakeInfoEntities);
|
|
134
|
-
for (const info of values) {
|
|
135
|
-
const addr = info?.addr?.toLowerCase();
|
|
136
|
-
if (!addr) {
|
|
137
|
-
continue;
|
|
138
|
-
}
|
|
139
|
-
const addrPadded = pad(addr).toLowerCase();
|
|
140
|
-
if (!entitySlots[addr]) {
|
|
141
|
-
entitySlots[addr] = new Set();
|
|
142
|
-
}
|
|
143
|
-
const currentEntitySlots = entitySlots[addr];
|
|
144
|
-
// valid slot: the slot was generated by keccak(entityAddr || ...)
|
|
145
|
-
if (k.startsWith(addrPadded)) {
|
|
146
|
-
currentEntitySlots.add(keccak256(k));
|
|
147
|
-
}
|
|
148
|
-
// disabled 2nd rule: .. or by keccak( ... || OWN) where OWN is previous allowed slot
|
|
149
|
-
// if (k.length === 130 && currentEntitySlots.has(k.slice(-64))) {
|
|
150
|
-
// currentEntitySlots.add(value)
|
|
151
|
-
// }
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
return entitySlots;
|
|
155
|
-
}
|
|
156
|
-
// method-signature for calls from entryPoint
|
|
157
|
-
const callsFromEntryPointMethodSigs = {
|
|
158
|
-
factory: getFunctionSelector({
|
|
159
|
-
inputs: [
|
|
160
|
-
{
|
|
161
|
-
internalType: "bytes",
|
|
162
|
-
name: "initCode",
|
|
163
|
-
type: "bytes"
|
|
164
|
-
}
|
|
165
|
-
],
|
|
166
|
-
name: "createSender",
|
|
167
|
-
outputs: [
|
|
168
|
-
{
|
|
169
|
-
internalType: "address",
|
|
170
|
-
name: "sender",
|
|
171
|
-
type: "address"
|
|
172
|
-
}
|
|
173
|
-
],
|
|
174
|
-
stateMutability: "nonpayable",
|
|
175
|
-
type: "function"
|
|
176
|
-
}),
|
|
177
|
-
account: getFunctionSelector({
|
|
178
|
-
inputs: [
|
|
179
|
-
{
|
|
180
|
-
components: [
|
|
181
|
-
{
|
|
182
|
-
internalType: "address",
|
|
183
|
-
name: "sender",
|
|
184
|
-
type: "address"
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
internalType: "uint256",
|
|
188
|
-
name: "nonce",
|
|
189
|
-
type: "uint256"
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
internalType: "bytes",
|
|
193
|
-
name: "initCode",
|
|
194
|
-
type: "bytes"
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
internalType: "bytes",
|
|
198
|
-
name: "callData",
|
|
199
|
-
type: "bytes"
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
internalType: "bytes32",
|
|
203
|
-
name: "accountGasLimits",
|
|
204
|
-
type: "bytes32"
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
internalType: "uint256",
|
|
208
|
-
name: "preVerificationGas",
|
|
209
|
-
type: "uint256"
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
internalType: "bytes32",
|
|
213
|
-
name: "gasFees",
|
|
214
|
-
type: "bytes32"
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
internalType: "bytes",
|
|
218
|
-
name: "paymasterAndData",
|
|
219
|
-
type: "bytes"
|
|
220
|
-
},
|
|
221
|
-
{
|
|
222
|
-
internalType: "bytes",
|
|
223
|
-
name: "signature",
|
|
224
|
-
type: "bytes"
|
|
225
|
-
}
|
|
226
|
-
],
|
|
227
|
-
internalType: "struct PackedUserOperation",
|
|
228
|
-
name: "userOp",
|
|
229
|
-
type: "tuple"
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
internalType: "bytes32",
|
|
233
|
-
name: "userOpHash",
|
|
234
|
-
type: "bytes32"
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
internalType: "uint256",
|
|
238
|
-
name: "missingAccountFunds",
|
|
239
|
-
type: "uint256"
|
|
240
|
-
}
|
|
241
|
-
],
|
|
242
|
-
name: "validateUserOp",
|
|
243
|
-
outputs: [
|
|
244
|
-
{
|
|
245
|
-
internalType: "uint256",
|
|
246
|
-
name: "validationData",
|
|
247
|
-
type: "uint256"
|
|
248
|
-
}
|
|
249
|
-
],
|
|
250
|
-
stateMutability: "nonpayable",
|
|
251
|
-
type: "function"
|
|
252
|
-
}),
|
|
253
|
-
paymaster: getFunctionSelector({
|
|
254
|
-
inputs: [
|
|
255
|
-
{
|
|
256
|
-
components: [
|
|
257
|
-
{
|
|
258
|
-
internalType: "address",
|
|
259
|
-
name: "sender",
|
|
260
|
-
type: "address"
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
internalType: "uint256",
|
|
264
|
-
name: "nonce",
|
|
265
|
-
type: "uint256"
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
internalType: "bytes",
|
|
269
|
-
name: "initCode",
|
|
270
|
-
type: "bytes"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
internalType: "bytes",
|
|
274
|
-
name: "callData",
|
|
275
|
-
type: "bytes"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
internalType: "bytes32",
|
|
279
|
-
name: "accountGasLimits",
|
|
280
|
-
type: "bytes32"
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
internalType: "uint256",
|
|
284
|
-
name: "preVerificationGas",
|
|
285
|
-
type: "uint256"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
internalType: "bytes32",
|
|
289
|
-
name: "gasFees",
|
|
290
|
-
type: "bytes32"
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
internalType: "bytes",
|
|
294
|
-
name: "paymasterAndData",
|
|
295
|
-
type: "bytes"
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
internalType: "bytes",
|
|
299
|
-
name: "signature",
|
|
300
|
-
type: "bytes"
|
|
301
|
-
}
|
|
302
|
-
],
|
|
303
|
-
internalType: "struct PackedUserOperation",
|
|
304
|
-
name: "userOp",
|
|
305
|
-
type: "tuple"
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
internalType: "bytes32",
|
|
309
|
-
name: "userOpHash",
|
|
310
|
-
type: "bytes32"
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
internalType: "uint256",
|
|
314
|
-
name: "maxCost",
|
|
315
|
-
type: "uint256"
|
|
316
|
-
}
|
|
317
|
-
],
|
|
318
|
-
name: "validatePaymasterUserOp",
|
|
319
|
-
outputs: [
|
|
320
|
-
{
|
|
321
|
-
internalType: "bytes",
|
|
322
|
-
name: "context",
|
|
323
|
-
type: "bytes"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
internalType: "uint256",
|
|
327
|
-
name: "validationData",
|
|
328
|
-
type: "uint256"
|
|
329
|
-
}
|
|
330
|
-
],
|
|
331
|
-
stateMutability: "nonpayable",
|
|
332
|
-
type: "function"
|
|
333
|
-
})
|
|
334
|
-
};
|
|
335
|
-
/**
|
|
336
|
-
* parse collected simulation traces and revert if they break our rules
|
|
337
|
-
* @param userOperation the userOperation that was used in this simulation
|
|
338
|
-
* @param tracerResults the tracer return value
|
|
339
|
-
* @param validationResult output from simulateValidation
|
|
340
|
-
* @param entryPoint the entryPoint that hosted the "simulatedValidation" traced call.
|
|
341
|
-
* @return list of contract addresses referenced by this UserOp
|
|
342
|
-
*/
|
|
343
|
-
export function tracerResultParserV07(userOperation, tracerResults, validationResult, entryPointAddress) {
|
|
344
|
-
// todo: block access to no-code addresses (might need update to tracer)
|
|
345
|
-
// opcodes from [OP-011]
|
|
346
|
-
const bannedOpCodes = new Set([
|
|
347
|
-
"GASPRICE",
|
|
348
|
-
"GASLIMIT",
|
|
349
|
-
"DIFFICULTY",
|
|
350
|
-
"TIMESTAMP",
|
|
351
|
-
"BASEFEE",
|
|
352
|
-
"BLOCKHASH",
|
|
353
|
-
"NUMBER",
|
|
354
|
-
"SELFBALANCE",
|
|
355
|
-
"BALANCE",
|
|
356
|
-
"ORIGIN",
|
|
357
|
-
"GAS",
|
|
358
|
-
"CREATE",
|
|
359
|
-
"COINBASE",
|
|
360
|
-
"SELFDESTRUCT",
|
|
361
|
-
"RANDOM",
|
|
362
|
-
"PREVRANDAO",
|
|
363
|
-
"INVALID"
|
|
364
|
-
]);
|
|
365
|
-
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
366
|
-
if (Object.values(tracerResults.callsFromEntryPoint).length < 1) {
|
|
367
|
-
throw new Error("Unexpected traceCall result: no calls from entrypoint.");
|
|
368
|
-
}
|
|
369
|
-
const callStack = parseCallStack(tracerResults);
|
|
370
|
-
// [OP-052], [OP-053]
|
|
371
|
-
const callInfoEntryPoint = callStack.find((call) => call.to === entryPointAddress &&
|
|
372
|
-
call.from !== entryPointAddress &&
|
|
373
|
-
call.method !== "0x" &&
|
|
374
|
-
call.method !== "depositTo");
|
|
375
|
-
// [OP-054]
|
|
376
|
-
if (callInfoEntryPoint &&
|
|
377
|
-
callInfoEntryPoint?.method !== "delegateAndRevert") {
|
|
378
|
-
throw new RpcError(`illegal call into EntryPoint during validation ${callInfoEntryPoint?.method}`, ValidationErrors.OpcodeValidation);
|
|
379
|
-
}
|
|
380
|
-
// [OP-061]
|
|
381
|
-
const illegalNonZeroValueCall = callStack.find((call) => call.to !== entryPointAddress &&
|
|
382
|
-
hexToBigInt(call.value ?? "0x0") !== 0n);
|
|
383
|
-
if (illegalNonZeroValueCall) {
|
|
384
|
-
throw new RpcError("May not may CALL with value", ValidationErrors.OpcodeValidation);
|
|
385
|
-
}
|
|
386
|
-
const sender = userOperation.sender.toLowerCase();
|
|
387
|
-
// stake info per "number" level (factory, sender, paymaster)
|
|
388
|
-
// we only use stake info if we notice a memory reference that require stake
|
|
389
|
-
const stakeInfoEntities = {
|
|
390
|
-
factory: validationResult.factoryInfo,
|
|
391
|
-
account: validationResult.senderInfo,
|
|
392
|
-
paymaster: validationResult.paymasterInfo
|
|
393
|
-
};
|
|
394
|
-
const entitySlots = parseEntitySlots(stakeInfoEntities, tracerResults.keccak);
|
|
395
|
-
for (const [title, entStakes] of Object.entries(stakeInfoEntities)) {
|
|
396
|
-
const entityTitle = title;
|
|
397
|
-
const entityAddr = (entStakes?.addr ?? "").toLowerCase();
|
|
398
|
-
const currentNumLevel = tracerResults.callsFromEntryPoint.find((info) => info.topLevelMethodSig ===
|
|
399
|
-
callsFromEntryPointMethodSigs[entityTitle]);
|
|
400
|
-
if (!currentNumLevel) {
|
|
401
|
-
if (entityTitle === "account") {
|
|
402
|
-
// should never happen... only factory, paymaster are optional.
|
|
403
|
-
throw new Error("missing trace into validateUserOp");
|
|
404
|
-
}
|
|
405
|
-
continue;
|
|
406
|
-
}
|
|
407
|
-
const opcodes = currentNumLevel.opcodes;
|
|
408
|
-
const access = currentNumLevel.access; // address => { reads, writes }
|
|
409
|
-
// [OP-020]
|
|
410
|
-
if (currentNumLevel.oog ?? false) {
|
|
411
|
-
throw new RpcError(`${entityTitle} internally reverts on oog`, ValidationErrors.OpcodeValidation);
|
|
412
|
-
}
|
|
413
|
-
// opcodes from [OP-011]
|
|
414
|
-
for (const opcode of Object.keys(opcodes)) {
|
|
415
|
-
if (bannedOpCodes.has(opcode)) {
|
|
416
|
-
throw new RpcError(`${entityTitle} uses banned opcode: ${opcode}`, ValidationErrors.OpcodeValidation);
|
|
417
|
-
}
|
|
418
|
-
}
|
|
419
|
-
// [OP-031]
|
|
420
|
-
if (entityTitle === "factory") {
|
|
421
|
-
if ((opcodes.CREATE2 ?? 0) > 1) {
|
|
422
|
-
throw new RpcError(`${entityTitle} with too many CREATE2`, ValidationErrors.OpcodeValidation);
|
|
423
|
-
}
|
|
424
|
-
}
|
|
425
|
-
else if (opcodes.CREATE2) {
|
|
426
|
-
throw new RpcError(`${entityTitle} uses banned opcode: CREATE2`, ValidationErrors.OpcodeValidation);
|
|
427
|
-
}
|
|
428
|
-
for (const [addr, { reads, writes }] of Object.entries(access)) {
|
|
429
|
-
// testing read/write access on contract "addr"
|
|
430
|
-
if (addr === sender) {
|
|
431
|
-
// allowed to access sender's storage
|
|
432
|
-
// [STO-010]
|
|
433
|
-
continue;
|
|
434
|
-
}
|
|
435
|
-
if (addr === entryPointAddress) {
|
|
436
|
-
// ignore storage access on entryPoint (balance/deposit of entities.
|
|
437
|
-
// we block them on method calls: only allowed to deposit, never to read
|
|
438
|
-
continue;
|
|
439
|
-
}
|
|
440
|
-
// return true if the given slot is associated with the given address, given the known keccak operations:
|
|
441
|
-
// @param slot the SLOAD/SSTORE slot address we're testing
|
|
442
|
-
// @param addr - the address we try to check for association with
|
|
443
|
-
// @param reverseKeccak - a mapping we built for keccak values that contained the address
|
|
444
|
-
// scan all slots. find a referenced slot
|
|
445
|
-
// at the end of the scan, we will check if the entity has stake, and report that slot if not.
|
|
446
|
-
let requireStakeSlot;
|
|
447
|
-
const slots = [...Object.keys(writes), ...Object.keys(reads)];
|
|
448
|
-
for (const slot of slots) {
|
|
449
|
-
// slot associated with sender is allowed (e.g. token.balanceOf(sender)
|
|
450
|
-
// but during initial UserOp (where there is an initCode), it is allowed only for staked entity
|
|
451
|
-
if (associatedWith(slot, sender, entitySlots)) {
|
|
452
|
-
if (userOperation.factory) {
|
|
453
|
-
// special case: account.validateUserOp is allowed to use assoc storage if factory is staked.
|
|
454
|
-
// [STO-022], [STO-021]
|
|
455
|
-
if (!(entityAddr === sender &&
|
|
456
|
-
isStaked(stakeInfoEntities.factory))) {
|
|
457
|
-
requireStakeSlot = slot;
|
|
458
|
-
}
|
|
459
|
-
}
|
|
460
|
-
}
|
|
461
|
-
else if (associatedWith(slot, entityAddr, entitySlots)) {
|
|
462
|
-
// [STO-032]
|
|
463
|
-
// accessing a slot associated with entityAddr (e.g. token.balanceOf(paymaster)
|
|
464
|
-
requireStakeSlot = slot;
|
|
465
|
-
}
|
|
466
|
-
else if (addr === entityAddr) {
|
|
467
|
-
// [STO-031]
|
|
468
|
-
// accessing storage member of entity itself requires stake.
|
|
469
|
-
requireStakeSlot = slot;
|
|
470
|
-
}
|
|
471
|
-
else if (writes[slot] === undefined) {
|
|
472
|
-
// [STO-033]: staked entity have read-only access to any storage in non-entity contract.
|
|
473
|
-
requireStakeSlot = slot;
|
|
474
|
-
}
|
|
475
|
-
else {
|
|
476
|
-
// accessing arbitrary storage of another contract is not allowed
|
|
477
|
-
const readWrite = Object.keys(writes).includes(addr)
|
|
478
|
-
? "write to"
|
|
479
|
-
: "read from";
|
|
480
|
-
const message = `${entityTitle} has forbidden ${readWrite} ${nameAddr(addr, entityTitle)} slot ${slot}`;
|
|
481
|
-
throw new RpcError(message, ValidationErrors.OpcodeValidation, {
|
|
482
|
-
[entityTitle]: entStakes?.addr
|
|
483
|
-
});
|
|
484
|
-
}
|
|
485
|
-
}
|
|
486
|
-
// if addr is current account/paymaster/factory, then return that title
|
|
487
|
-
// otherwise, return addr as-is
|
|
488
|
-
function nameAddr(addr, _currentEntity) {
|
|
489
|
-
const [title] = Object.entries(stakeInfoEntities).find(([_title, info]) => info?.addr?.toLowerCase() === addr.toLowerCase()) ?? [];
|
|
490
|
-
return title ?? addr;
|
|
491
|
-
}
|
|
492
|
-
requireCondAndStake(requireStakeSlot !== undefined, entStakes, `unstaked ${entityTitle} accessed ${nameAddr(addr, entityTitle)} slot ${requireStakeSlot}`);
|
|
493
|
-
}
|
|
494
|
-
// [EREP-050]
|
|
495
|
-
if (entityTitle === "paymaster") {
|
|
496
|
-
const validatePaymasterUserOp = callStack.find((call) => call.method === "validatePaymasterUserOp" &&
|
|
497
|
-
call.to === entityAddr);
|
|
498
|
-
const context = validatePaymasterUserOp?.return
|
|
499
|
-
? validatePaymasterUserOp?.return[0]
|
|
500
|
-
: undefined;
|
|
501
|
-
requireCondAndStake(context && context !== "0x", entStakes, "unstaked paymaster must not return context");
|
|
502
|
-
}
|
|
503
|
-
// check if the given entity is staked
|
|
504
|
-
// helper method: if condition is true, then entity must be staked.
|
|
505
|
-
function requireCondAndStake(cond, entStake, failureMessage) {
|
|
506
|
-
if (!cond) {
|
|
507
|
-
return;
|
|
508
|
-
}
|
|
509
|
-
if (!entStake) {
|
|
510
|
-
throw new Error(`internal: ${entityTitle} not in userOp, but has storage accesses in ${JSON.stringify(access)}`);
|
|
511
|
-
}
|
|
512
|
-
if (!isStaked(entStake)) {
|
|
513
|
-
throw new RpcError(failureMessage, ValidationErrors.OpcodeValidation, {
|
|
514
|
-
[entityTitle]: entStakes?.addr
|
|
515
|
-
});
|
|
516
|
-
}
|
|
517
|
-
// TODO: check real minimum stake values
|
|
518
|
-
}
|
|
519
|
-
// the only contract we allow to access before its deployment is the "sender" itself, which gets created.
|
|
520
|
-
// biome-ignore lint/suspicious/noExplicitAny: it's a generic type
|
|
521
|
-
let illegalZeroCodeAccess;
|
|
522
|
-
for (const addr of Object.keys(currentNumLevel.contractSize)) {
|
|
523
|
-
// [OP-042]
|
|
524
|
-
if (addr !== sender &&
|
|
525
|
-
currentNumLevel.contractSize[addr].contractSize <= 2) {
|
|
526
|
-
illegalZeroCodeAccess = currentNumLevel.contractSize[addr];
|
|
527
|
-
illegalZeroCodeAccess.address = addr;
|
|
528
|
-
break;
|
|
529
|
-
}
|
|
530
|
-
}
|
|
531
|
-
// [OP-041]
|
|
532
|
-
if (illegalZeroCodeAccess) {
|
|
533
|
-
throw new RpcError(`${entityTitle} accesses un-deployed contract address ${illegalZeroCodeAccess?.address} with opcode ${illegalZeroCodeAccess?.opcode}`, ValidationErrors.OpcodeValidation);
|
|
534
|
-
}
|
|
535
|
-
let illegalEntryPointCodeAccess = undefined;
|
|
536
|
-
for (const addr of Object.keys(currentNumLevel.extCodeAccessInfo)) {
|
|
537
|
-
if (addr === entryPointAddress) {
|
|
538
|
-
illegalEntryPointCodeAccess =
|
|
539
|
-
currentNumLevel.extCodeAccessInfo[addr];
|
|
540
|
-
break;
|
|
541
|
-
}
|
|
542
|
-
}
|
|
543
|
-
if (illegalEntryPointCodeAccess) {
|
|
544
|
-
throw new RpcError(`${entityTitle} accesses EntryPoint contract address ${entryPointAddress} with opcode ${illegalEntryPointCodeAccess}`, ValidationErrors.OpcodeValidation);
|
|
545
|
-
}
|
|
546
|
-
}
|
|
547
|
-
// return list of contract addresses by this UserOp. already known not to contain zero-sized addresses.
|
|
548
|
-
const addresses = tracerResults.callsFromEntryPoint.flatMap((level) => Object.keys(level.contractSize));
|
|
549
|
-
const storageMap = {};
|
|
550
|
-
for (const level of tracerResults.callsFromEntryPoint) {
|
|
551
|
-
for (const addr of Object.keys(level.access)) {
|
|
552
|
-
storageMap[addr] = storageMap[addr] ?? level.access[addr].reads;
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
|
-
return [addresses, storageMap];
|
|
556
|
-
}
|
|
557
|
-
//# sourceMappingURL=TracerResultParserV07.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"TracerResultParserV07.js","sourceRoot":"","sources":["../../../rpc/validation/TracerResultParserV07.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import type { ChainType, InterfaceValidator, StateOverrides, UserOperationV06, UserOperationV07, ValidationResult, ValidationResultV06, ValidationResultV07, ValidationResultWithAggregationV06, ValidationResultWithAggregationV07 } from "../../types/index.js";
|
|
2
|
-
import { type Address, type ReferencedCodeHashes, type StorageMap, type UserOperation, type ValidationResultWithAggregation } from "../../types/index.js";
|
|
3
|
-
import type { GasPriceManager, Logger, Metrics } from "../../utils/index.js";
|
|
4
|
-
import { type Chain, type PublicClient, type Transport } from "viem";
|
|
5
|
-
import { type SimulateHandleOpResult } from "../gasEstimation.js";
|
|
6
|
-
export declare class UnsafeValidator implements InterfaceValidator {
|
|
7
|
-
publicClient: PublicClient<Transport, Chain>;
|
|
8
|
-
logger: Logger;
|
|
9
|
-
metrics: Metrics;
|
|
10
|
-
usingTenderly: boolean;
|
|
11
|
-
balanceOverrideEnabled: boolean;
|
|
12
|
-
expirationCheck: boolean;
|
|
13
|
-
chainId: number;
|
|
14
|
-
gasPriceManager: GasPriceManager;
|
|
15
|
-
entryPointSimulationsAddress?: Address;
|
|
16
|
-
fixedGasLimitForEstimation?: bigint;
|
|
17
|
-
chainType: ChainType;
|
|
18
|
-
constructor(publicClient: PublicClient<Transport, Chain>, logger: Logger, metrics: Metrics, gasPriceManager: GasPriceManager, chainType: ChainType, entryPointSimulationsAddress?: Address, fixedGasLimitForEstimation?: bigint, usingTenderly?: boolean, balanceOverrideEnabled?: boolean, expirationCheck?: boolean);
|
|
19
|
-
getExecutionResult(userOperation: UserOperation, entryPoint: Address, queuedUserOperations: UserOperation[], stateOverrides?: StateOverrides): Promise<SimulateHandleOpResult<"execution">>;
|
|
20
|
-
getValidationResultV06(userOperation: UserOperationV06, entryPoint: Address, _codeHashes?: ReferencedCodeHashes): Promise<(ValidationResultV06 | ValidationResultWithAggregationV06) & {
|
|
21
|
-
storageMap: StorageMap;
|
|
22
|
-
referencedContracts?: ReferencedCodeHashes;
|
|
23
|
-
}>;
|
|
24
|
-
parseValidationData(validationData: bigint): {
|
|
25
|
-
aggregator: string;
|
|
26
|
-
validAfter: number;
|
|
27
|
-
validUntil: number;
|
|
28
|
-
};
|
|
29
|
-
mergeValidationData(accountValidationData: {
|
|
30
|
-
aggregator: string;
|
|
31
|
-
validAfter: number;
|
|
32
|
-
validUntil: number;
|
|
33
|
-
}, paymasterValidationData: {
|
|
34
|
-
aggregator: string;
|
|
35
|
-
validAfter: number;
|
|
36
|
-
validUntil: number;
|
|
37
|
-
}): {
|
|
38
|
-
paymasterSigFailed: boolean;
|
|
39
|
-
accountSigFailed: boolean;
|
|
40
|
-
validAfter: number;
|
|
41
|
-
validUntil: number;
|
|
42
|
-
};
|
|
43
|
-
mergeValidationDataValues(accountValidationData: bigint, paymasterValidationData: bigint): {
|
|
44
|
-
paymasterSigFailed: boolean;
|
|
45
|
-
accountSigFailed: boolean;
|
|
46
|
-
validAfter: number;
|
|
47
|
-
validUntil: number;
|
|
48
|
-
};
|
|
49
|
-
getValidationResultV07(userOperation: UserOperationV07, queuedUserOperations: UserOperationV07[], entryPoint: Address, _codeHashes?: ReferencedCodeHashes): Promise<(ValidationResultV07 | ValidationResultWithAggregationV07) & {
|
|
50
|
-
storageMap: StorageMap;
|
|
51
|
-
referencedContracts?: ReferencedCodeHashes;
|
|
52
|
-
}>;
|
|
53
|
-
getValidationResult(userOperation: UserOperation, queuedUserOperations: UserOperation[], entryPoint: Address, _codeHashes?: ReferencedCodeHashes): Promise<(ValidationResult | ValidationResultWithAggregation) & {
|
|
54
|
-
storageMap: StorageMap;
|
|
55
|
-
referencedContracts?: ReferencedCodeHashes;
|
|
56
|
-
}>;
|
|
57
|
-
validatePreVerificationGas(userOperation: UserOperation, entryPoint: Address): Promise<void>;
|
|
58
|
-
validateUserOperation(shouldCheckPrefund: boolean, userOperation: UserOperation, queuedUserOperations: UserOperation[], entryPoint: Address, _referencedContracts?: ReferencedCodeHashes): Promise<(ValidationResult | ValidationResultWithAggregation) & {
|
|
59
|
-
storageMap: StorageMap;
|
|
60
|
-
referencedContracts?: ReferencedCodeHashes;
|
|
61
|
-
}>;
|
|
62
|
-
}
|
|
63
|
-
//# sourceMappingURL=UnsafeValidator.d.ts.map
|