@pimlico/alto 0.0.0-main.20240612T111639 → 0.0.0-prool.20240609T212210
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/esm/cli/alto.js +59 -28
- package/esm/cli/alto.js.map +1 -1
- package/esm/cli/config/bundler.d.ts +41 -47
- package/esm/cli/config/bundler.js +77 -75
- package/esm/cli/config/bundler.js.map +1 -1
- package/esm/cli/config/index.js +18 -2
- package/esm/cli/config/index.js.map +1 -1
- package/esm/cli/config/options.js +13 -16
- package/esm/cli/config/options.js.map +1 -1
- package/esm/cli/customTransport.js +11 -7
- package/esm/cli/customTransport.js.map +1 -1
- package/esm/cli/handler.js +28 -48
- package/esm/cli/handler.js.map +1 -1
- package/esm/cli/index.js +19 -3
- package/esm/cli/index.js.map +1 -1
- package/esm/cli/instrumentation.js +22 -20
- package/esm/cli/instrumentation.js.map +1 -1
- package/esm/cli/setupServer.js +21 -17
- package/esm/cli/setupServer.js.map +1 -1
- package/esm/cli/util.js +5 -1
- package/esm/cli/util.js.map +1 -1
- package/esm/executor/executor.js +86 -71
- package/esm/executor/executor.js.map +1 -1
- package/esm/executor/executorManager.js +11 -7
- package/esm/executor/executorManager.js.map +1 -1
- package/esm/executor/index.js +20 -4
- package/esm/executor/index.js.map +1 -1
- package/esm/executor/senderManager.js +12 -8
- package/esm/executor/senderManager.js.map +1 -1
- package/esm/executor/test/utils.js +28 -22
- package/esm/executor/test/utils.js.map +1 -1
- package/esm/executor/utils.js +61 -31
- package/esm/executor/utils.js.map +1 -1
- package/esm/mempool/index.js +20 -4
- package/esm/mempool/index.js.map +1 -1
- package/esm/mempool/mempool.js +64 -58
- package/esm/mempool/mempool.js.map +1 -1
- package/esm/mempool/monitoring.js +5 -1
- package/esm/mempool/monitoring.js.map +1 -1
- package/esm/mempool/nullMempool.js +5 -1
- package/esm/mempool/nullMempool.js.map +1 -1
- package/esm/mempool/reputationManager.js +52 -51
- package/esm/mempool/reputationManager.js.map +1 -1
- package/esm/mempool/store.js +5 -1
- package/esm/mempool/store.js.map +1 -1
- package/esm/rpc/EntryPointSimulationsV07.d.ts +1 -5
- package/esm/rpc/EntryPointSimulationsV07.js +51 -45
- package/esm/rpc/EntryPointSimulationsV07.js.map +1 -1
- package/esm/rpc/ExecuteSimulator.js +5 -2
- package/esm/rpc/ExecuteSimulator.js.map +1 -1
- package/esm/rpc/gasEstimation.js +72 -69
- package/esm/rpc/gasEstimation.js.map +1 -1
- package/esm/rpc/index.js +20 -4
- package/esm/rpc/index.js.map +1 -1
- package/esm/rpc/nonceQueuer.js +20 -16
- package/esm/rpc/nonceQueuer.js.map +1 -1
- package/esm/rpc/rpcHandler.js +108 -92
- package/esm/rpc/rpcHandler.js.map +1 -1
- package/esm/rpc/server.js +58 -32
- package/esm/rpc/server.js.map +1 -1
- package/esm/rpc/validation/BundlerCollectorTracerV06.js +5 -1
- package/esm/rpc/validation/BundlerCollectorTracerV06.js.map +1 -1
- package/esm/rpc/validation/BundlerCollectorTracerV07.js +5 -1
- package/esm/rpc/validation/BundlerCollectorTracerV07.js.map +1 -1
- package/esm/rpc/validation/SafeValidator.d.ts +6 -2
- package/esm/rpc/validation/SafeValidator.js +252 -91
- package/esm/rpc/validation/SafeValidator.js.map +1 -1
- package/esm/rpc/validation/TracerResultParserV06.js +30 -26
- package/esm/rpc/validation/TracerResultParserV06.js.map +1 -1
- package/esm/rpc/validation/TracerResultParserV07.js +38 -35
- package/esm/rpc/validation/TracerResultParserV07.js.map +1 -1
- package/esm/rpc/validation/UnsafeValidator.d.ts +1 -2
- package/esm/rpc/validation/UnsafeValidator.js +107 -80
- package/esm/rpc/validation/UnsafeValidator.js.map +1 -1
- package/esm/rpc/validation/index.js +18 -2
- package/esm/rpc/validation/index.js.map +1 -1
- package/esm/rpc/validation/tracer.js +37 -7
- package/esm/rpc/validation/tracer.js.map +1 -1
- package/esm/types/contracts/BundleBulker.js +4 -1
- package/esm/types/contracts/BundleBulker.js.map +1 -1
- package/esm/types/contracts/CallEngine.js +4 -1
- package/esm/types/contracts/CallEngine.js.map +1 -1
- package/esm/types/contracts/CodeHashGetter.js +5 -2
- package/esm/types/contracts/CodeHashGetter.js.map +1 -1
- package/esm/types/contracts/EntryPoint.js +7 -4
- package/esm/types/contracts/EntryPoint.js.map +1 -1
- package/esm/types/contracts/EntryPointSimulations.d.ts +1 -0
- package/esm/types/contracts/EntryPointSimulations.js +6 -1942
- package/esm/types/contracts/EntryPointSimulations.js.map +1 -1
- package/esm/types/contracts/IOpInflator.js +4 -1
- package/esm/types/contracts/IOpInflator.js.map +1 -1
- package/esm/types/contracts/IPaymaster.js +4 -1
- package/esm/types/contracts/IPaymaster.js.map +1 -1
- package/esm/types/contracts/Inflator.js +4 -1
- package/esm/types/contracts/Inflator.js.map +1 -1
- package/esm/types/contracts/PerOpInflator.js +4 -1
- package/esm/types/contracts/PerOpInflator.js.map +1 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.d.ts +1 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.js +5 -2
- package/esm/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
- package/esm/types/contracts/SenderCreator.js +5 -2
- package/esm/types/contracts/SenderCreator.js.map +1 -1
- package/esm/types/contracts/SimpleAccountFactory.js +5 -2
- package/esm/types/contracts/SimpleAccountFactory.js.map +1 -1
- package/esm/types/contracts/TestOpcodesAccount.js +5 -2
- package/esm/types/contracts/TestOpcodesAccount.js.map +1 -1
- package/esm/types/contracts/TestOpcodesAccountFactory.js +5 -2
- package/esm/types/contracts/TestOpcodesAccountFactory.js.map +1 -1
- package/esm/types/contracts/TestStorageAccount.js +5 -2
- package/esm/types/contracts/TestStorageAccount.js.map +1 -1
- package/esm/types/contracts/index.js +32 -16
- package/esm/types/contracts/index.js.map +1 -1
- package/esm/types/gasPrice.js +17 -14
- package/esm/types/gasPrice.js.map +1 -1
- package/esm/types/index.js +26 -10
- package/esm/types/index.js.map +1 -1
- package/esm/types/interfaces.js +2 -1
- package/esm/types/mempool.js +10 -5
- package/esm/types/mempool.js.map +1 -1
- package/esm/types/schemas.d.ts +38 -38
- package/esm/types/schemas.js +284 -254
- package/esm/types/schemas.js.map +1 -1
- package/esm/types/test/validationTestErrors.js +5 -2
- package/esm/types/test/validationTestErrors.js.map +1 -1
- package/esm/types/utils.js +9 -5
- package/esm/types/utils.js.map +1 -1
- package/esm/types/validation.d.ts +12 -12
- package/esm/types/validation.js +142 -139
- package/esm/types/validation.js.map +1 -1
- package/esm/utils/bigInt.js +7 -2
- package/esm/utils/bigInt.js.map +1 -1
- package/esm/utils/compressionHandler.js +11 -7
- package/esm/utils/compressionHandler.js.map +1 -1
- package/esm/utils/gasPriceManager.js +57 -30
- package/esm/utils/gasPriceManager.js.map +1 -1
- package/esm/utils/helpers.js +10 -5
- package/esm/utils/helpers.js.map +1 -1
- package/esm/utils/index.d.ts +1 -0
- package/esm/utils/index.js +26 -9
- package/esm/utils/index.js.map +1 -1
- package/esm/utils/logger.js +19 -10
- package/esm/utils/logger.js.map +1 -1
- package/esm/utils/metrics.js +24 -20
- package/esm/utils/metrics.js.map +1 -1
- package/esm/utils/rpc-reply.js +3 -1
- package/esm/utils/rpc-reply.js.map +1 -1
- package/esm/utils/test.js +67 -36
- package/esm/utils/test.js.map +1 -1
- package/esm/utils/toArgs.d.ts +36 -0
- package/esm/utils/toArgs.js +87 -0
- package/esm/utils/toArgs.js.map +1 -0
- package/esm/utils/userop.d.ts +2 -2
- package/esm/utils/userop.js +108 -63
- package/esm/utils/userop.js.map +1 -1
- package/esm/utils/validation.js +99 -64
- package/esm/utils/validation.js.map +1 -1
- package/lib/cli/config/bundler.d.ts +0 -6
- package/lib/cli/config/bundler.js +0 -1
- package/lib/cli/config/bundler.js.map +1 -1
- package/lib/cli/config/options.js +0 -6
- package/lib/cli/config/options.js.map +1 -1
- package/lib/cli/handler.js +1 -25
- package/lib/cli/handler.js.map +1 -1
- package/lib/executor/executor.js +2 -15
- package/lib/executor/executor.js.map +1 -1
- package/lib/mempool/mempool.js +7 -5
- package/lib/mempool/mempool.js.map +1 -1
- package/lib/mempool/reputationManager.js +3 -7
- package/lib/mempool/reputationManager.js.map +1 -1
- package/lib/rpc/EntryPointSimulationsV07.d.ts +1 -5
- package/lib/rpc/EntryPointSimulationsV07.js +2 -3
- package/lib/rpc/EntryPointSimulationsV07.js.map +1 -1
- package/lib/rpc/gasEstimation.js +3 -7
- package/lib/rpc/gasEstimation.js.map +1 -1
- package/lib/rpc/rpcHandler.js +7 -18
- package/lib/rpc/rpcHandler.js.map +1 -1
- package/lib/rpc/server.js +0 -4
- package/lib/rpc/server.js.map +1 -1
- package/lib/rpc/validation/SafeValidator.d.ts +6 -2
- package/lib/rpc/validation/SafeValidator.js +205 -48
- package/lib/rpc/validation/SafeValidator.js.map +1 -1
- package/lib/rpc/validation/TracerResultParserV07.js +2 -6
- package/lib/rpc/validation/TracerResultParserV07.js.map +1 -1
- package/lib/rpc/validation/UnsafeValidator.d.ts +1 -2
- package/lib/rpc/validation/UnsafeValidator.js +68 -45
- package/lib/rpc/validation/UnsafeValidator.js.map +1 -1
- package/lib/types/contracts/EntryPointSimulations.d.ts +1 -0
- package/lib/types/contracts/EntryPointSimulations.js +3 -1942
- package/lib/types/contracts/EntryPointSimulations.js.map +1 -1
- package/lib/types/contracts/PimlicoEntryPointSimulations.d.ts +1 -1
- package/lib/types/contracts/PimlicoEntryPointSimulations.js +2 -2
- package/lib/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/index.js +1 -0
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/toArgs.d.ts +36 -0
- package/lib/utils/toArgs.js +87 -0
- package/lib/utils/toArgs.js.map +1 -0
- package/lib/utils/userop.d.ts +2 -2
- package/lib/utils/userop.js +25 -2
- package/lib/utils/userop.js.map +1 -1
- package/package.json +3 -2
- package/esm/index.d.ts +0 -2
- package/esm/index.js +0 -2
- package/esm/index.js.map +0 -1
- package/lib/index.d.ts +0 -2
- package/lib/index.js +0 -4
- package/lib/index.js.map +0 -1
|
@@ -1,17 +1,33 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./BundleBulker.js"), exports);
|
|
18
|
+
__exportStar(require("./CallEngine.js"), exports);
|
|
19
|
+
__exportStar(require("./EntryPoint.js"), exports);
|
|
20
|
+
__exportStar(require("./IPaymaster.js"), exports);
|
|
21
|
+
__exportStar(require("./IOpInflator.js"), exports);
|
|
22
|
+
__exportStar(require("./Inflator.js"), exports);
|
|
23
|
+
__exportStar(require("./PerOpInflator.js"), exports);
|
|
24
|
+
__exportStar(require("./SenderCreator.js"), exports);
|
|
25
|
+
__exportStar(require("./SimpleAccountFactory.js"), exports);
|
|
26
|
+
__exportStar(require("./TestOpcodesAccount.js"), exports);
|
|
27
|
+
__exportStar(require("./TestOpcodesAccountFactory.js"), exports);
|
|
28
|
+
__exportStar(require("./TestStorageAccount.js"), exports);
|
|
29
|
+
__exportStar(require("./SimpleAccountFactory.js"), exports);
|
|
30
|
+
__exportStar(require("./CodeHashGetter.js"), exports);
|
|
31
|
+
__exportStar(require("./EntryPointSimulations.js"), exports);
|
|
32
|
+
__exportStar(require("./PimlicoEntryPointSimulations.js"), exports);
|
|
17
33
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/contracts/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/contracts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA8B;AAC9B,+CAA4B;AAC5B,+CAA4B;AAC5B,+CAA4B;AAC5B,gDAA6B;AAC7B,6CAA0B;AAC1B,kDAA+B;AAC/B,kDAA+B;AAC/B,yDAAsC;AACtC,uDAAoC;AACpC,8DAA2C;AAC3C,uDAAoC;AACpC,yDAAsC;AACtC,mDAAgC;AAChC,0DAAuC;AACvC,iEAA8C"}
|
package/esm/types/gasPrice.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// {"safeLow":{"maxPriorityFee":32.70666665266667,"maxFee":32.70666666866667},"standard":{"maxPriorityFee":33.10666665266667,"maxFee":33.10666666866667},"fast":{"maxPriorityFee":34.54799998386667,"maxFee":34.54799999986667},"estimatedBaseFee":1.6e-8,"blockTime":2,"blockNumber":36422482}
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.gasPriceMultipliers = exports.gasStationResult = void 0;
|
|
2
5
|
// {
|
|
3
6
|
// "safeLow": {
|
|
4
7
|
// "maxPriorityFee": 10.474218399333333,
|
|
@@ -16,18 +19,18 @@
|
|
|
16
19
|
// "blockTime": 2,
|
|
17
20
|
// "blockNumber": 36422513
|
|
18
21
|
// }
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
const gasPrice = z
|
|
22
|
+
const viem_1 = require("viem");
|
|
23
|
+
const zod_1 = require("zod");
|
|
24
|
+
const gasPrice = zod_1.z
|
|
22
25
|
.object({
|
|
23
26
|
// @ts-ignore
|
|
24
|
-
maxFee: z
|
|
25
|
-
.union([z.number(), z.string()])
|
|
26
|
-
.transform((val) => parseGwei(`${val}`)),
|
|
27
|
+
maxFee: zod_1.z
|
|
28
|
+
.union([zod_1.z.number(), zod_1.z.string()])
|
|
29
|
+
.transform((val) => (0, viem_1.parseGwei)(`${val}`)),
|
|
27
30
|
// @ts-ignore
|
|
28
|
-
maxPriorityFee: z
|
|
29
|
-
.union([z.number(), z.string()])
|
|
30
|
-
.transform((val) => parseGwei(`${val}`))
|
|
31
|
+
maxPriorityFee: zod_1.z
|
|
32
|
+
.union([zod_1.z.number(), zod_1.z.string()])
|
|
33
|
+
.transform((val) => (0, viem_1.parseGwei)(`${val}`))
|
|
31
34
|
})
|
|
32
35
|
.transform((val) => {
|
|
33
36
|
return {
|
|
@@ -35,7 +38,7 @@ const gasPrice = z
|
|
|
35
38
|
maxPriorityFeePerGas: val.maxPriorityFee
|
|
36
39
|
};
|
|
37
40
|
});
|
|
38
|
-
|
|
41
|
+
exports.gasStationResult = zod_1.z.object({
|
|
39
42
|
safeLow: gasPrice,
|
|
40
43
|
standard: gasPrice,
|
|
41
44
|
fast: gasPrice
|
|
@@ -44,9 +47,9 @@ export const gasStationResult = z.object({
|
|
|
44
47
|
// blockTime: z.number(),
|
|
45
48
|
// blockNumber: z.number()
|
|
46
49
|
});
|
|
47
|
-
|
|
48
|
-
slow: bigint(),
|
|
49
|
-
standard: bigint(),
|
|
50
|
-
fast: bigint()
|
|
50
|
+
exports.gasPriceMultipliers = zod_1.z.object({
|
|
51
|
+
slow: (0, zod_1.bigint)(),
|
|
52
|
+
standard: (0, zod_1.bigint)(),
|
|
53
|
+
fast: (0, zod_1.bigint)()
|
|
51
54
|
});
|
|
52
55
|
//# sourceMappingURL=gasPrice.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gasPrice.js","sourceRoot":"","sources":["../../types/gasPrice.ts"],"names":[],"mappings":"AAAA,+RAA+R
|
|
1
|
+
{"version":3,"file":"gasPrice.js","sourceRoot":"","sources":["../../types/gasPrice.ts"],"names":[],"mappings":";AAAA,+RAA+R;;;AAE/R,IAAI;AACJ,mBAAmB;AACnB,8CAA8C;AAC9C,qCAAqC;AACrC,SAAS;AACT,oBAAoB;AACpB,8CAA8C;AAC9C,qCAAqC;AACrC,SAAS;AACT,gBAAgB;AAChB,wCAAwC;AACxC,+BAA+B;AAC/B,SAAS;AACT,mCAAmC;AACnC,sBAAsB;AACtB,8BAA8B;AAC9B,MAAM;AAEN,+BAAgC;AAChC,6BAA+B;AAE/B,MAAM,QAAQ,GAAG,OAAC;KACb,MAAM,CAAC;IACJ,aAAa;IACb,MAAM,EAAE,OAAC;SACJ,KAAK,CAAC,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC;SAC/B,SAAS,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,IAAA,gBAAS,EAAC,GAAG,GAAG,EAAE,CAAC,CAAC;IAC5C,aAAa;IACb,cAAc,EAAE,OAAC;SACZ,KAAK,CAAC,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC;SAC/B,SAAS,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,IAAA,gBAAS,EAAC,GAAG,GAAG,EAAE,CAAC,CAAC;CAC/C,CAAC;KACD,SAAS,CAAC,CAAC,GAAG,EAAE,EAAE;IACf,OAAO;QACH,YAAY,EAAE,GAAG,CAAC,MAAM;QACxB,oBAAoB,EAAE,GAAG,CAAC,cAAc;KAC3C,CAAA;AACL,CAAC,CAAC,CAAA;AAEO,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACrC,OAAO,EAAE,QAAQ;IACjB,QAAQ,EAAE,QAAQ;IAClB,IAAI,EAAE,QAAQ;IACd,aAAa;IACb,+FAA+F;IAC/F,yBAAyB;IACzB,0BAA0B;CAC7B,CAAC,CAAA;AAEW,QAAA,mBAAmB,GAAG,OAAC,CAAC,MAAM,CAAC;IACxC,IAAI,EAAE,IAAA,YAAM,GAAE;IACd,QAAQ,EAAE,IAAA,YAAM,GAAE;IAClB,IAAI,EAAE,IAAA,YAAM,GAAE;CACjB,CAAC,CAAA"}
|
package/esm/types/index.js
CHANGED
|
@@ -1,11 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./contracts/index.js"), exports);
|
|
18
|
+
__exportStar(require("./gasPrice.js"), exports);
|
|
19
|
+
__exportStar(require("./mempool.js"), exports);
|
|
20
|
+
__exportStar(require("./utils.js"), exports);
|
|
21
|
+
__exportStar(require("./validation.js"), exports);
|
|
22
|
+
__exportStar(require("./schemas.js"), exports);
|
|
23
|
+
__exportStar(require("./validation.js"), exports);
|
|
24
|
+
__exportStar(require("./gasPrice.js"), exports);
|
|
25
|
+
__exportStar(require("./mempool.js"), exports);
|
|
26
|
+
__exportStar(require("./interfaces.js"), exports);
|
|
11
27
|
//# sourceMappingURL=index.js.map
|
package/esm/types/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../types/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA2B;AAC3B,6CAA0B;AAC1B,4CAAyB;AACzB,0CAAuB;AACvB,+CAA4B;AAC5B,4CAAyB;AACzB,+CAA4B;AAC5B,6CAA0B;AAC1B,4CAAyB;AACzB,+CAA4B"}
|
package/esm/types/interfaces.js
CHANGED
package/esm/types/mempool.js
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SubmissionStatus = exports.isCompressedType = exports.deriveUserOperation = void 0;
|
|
4
|
+
const deriveUserOperation = (op) => {
|
|
5
|
+
return (0, exports.isCompressedType)(op)
|
|
3
6
|
? op.inflatedOp
|
|
4
7
|
: op;
|
|
5
8
|
};
|
|
6
|
-
|
|
9
|
+
exports.deriveUserOperation = deriveUserOperation;
|
|
10
|
+
const isCompressedType = (op) => {
|
|
7
11
|
return "compressedCalldata" in op;
|
|
8
12
|
};
|
|
9
|
-
|
|
13
|
+
exports.isCompressedType = isCompressedType;
|
|
14
|
+
var SubmissionStatus;
|
|
10
15
|
(function (SubmissionStatus) {
|
|
11
16
|
SubmissionStatus["NotSubmitted"] = "not_submitted";
|
|
12
17
|
SubmissionStatus["Rejected"] = "rejected";
|
|
13
18
|
SubmissionStatus["Submitted"] = "submitted";
|
|
14
19
|
SubmissionStatus["Included"] = "included";
|
|
15
|
-
})(SubmissionStatus || (SubmissionStatus = {}));
|
|
20
|
+
})(SubmissionStatus || (exports.SubmissionStatus = SubmissionStatus = {}));
|
|
16
21
|
//# sourceMappingURL=mempool.js.map
|
package/esm/types/mempool.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mempool.js","sourceRoot":"","sources":["../../types/mempool.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"mempool.js","sourceRoot":"","sources":["../../types/mempool.ts"],"names":[],"mappings":";;;AAYO,MAAM,mBAAmB,GAAG,CAC/B,EAAwB,EACX,EAAE;IACf,OAAO,IAAA,wBAAgB,EAAC,EAAE,CAAC;QACvB,CAAC,CAAE,EAA8B,CAAC,UAAU;QAC5C,CAAC,CAAE,EAAoB,CAAA;AAC/B,CAAC,CAAA;AANY,QAAA,mBAAmB,uBAM/B;AAEM,MAAM,gBAAgB,GAAG,CAAC,EAAwB,EAAW,EAAE;IAClE,OAAO,oBAAoB,IAAI,EAAE,CAAA;AACrC,CAAC,CAAA;AAFY,QAAA,gBAAgB,oBAE5B;AAoCD,IAAY,gBAKX;AALD,WAAY,gBAAgB;IACxB,kDAA8B,CAAA;IAC9B,yCAAqB,CAAA;IACrB,2CAAuB,CAAA;IACvB,yCAAqB,CAAA;AACzB,CAAC,EALW,gBAAgB,gCAAhB,gBAAgB,QAK3B"}
|
package/esm/types/schemas.d.ts
CHANGED
|
@@ -1134,10 +1134,10 @@ declare const bundlerSetBundlingModeRequestSchema: z.ZodObject<{
|
|
|
1134
1134
|
method: z.ZodLiteral<"debug_bundler_setBundlingMode">;
|
|
1135
1135
|
params: z.ZodTuple<[z.ZodEnum<["manual", "auto"]>], null>;
|
|
1136
1136
|
}, "strip", z.ZodTypeAny, {
|
|
1137
|
-
params: ["
|
|
1137
|
+
params: ["auto" | "manual"];
|
|
1138
1138
|
method: "debug_bundler_setBundlingMode";
|
|
1139
1139
|
}, {
|
|
1140
|
-
params: ["
|
|
1140
|
+
params: ["auto" | "manual"];
|
|
1141
1141
|
method: "debug_bundler_setBundlingMode";
|
|
1142
1142
|
}>;
|
|
1143
1143
|
declare const bundlerSetReputationsRequestSchema: z.ZodObject<{
|
|
@@ -1924,10 +1924,10 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1924
1924
|
method: z.ZodLiteral<"debug_bundler_setBundlingMode">;
|
|
1925
1925
|
params: z.ZodTuple<[z.ZodEnum<["manual", "auto"]>], null>;
|
|
1926
1926
|
}, "strip", z.ZodTypeAny, {
|
|
1927
|
-
params: ["
|
|
1927
|
+
params: ["auto" | "manual"];
|
|
1928
1928
|
method: "debug_bundler_setBundlingMode";
|
|
1929
1929
|
}, {
|
|
1930
|
-
params: ["
|
|
1930
|
+
params: ["auto" | "manual"];
|
|
1931
1931
|
method: "debug_bundler_setBundlingMode";
|
|
1932
1932
|
}>, z.ZodObject<{
|
|
1933
1933
|
method: z.ZodLiteral<"debug_bundler_setReputation">;
|
|
@@ -2535,8 +2535,8 @@ declare const logSchema: z.ZodObject<{
|
|
|
2535
2535
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2536
2536
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
2537
2537
|
}, "strip", z.ZodTypeAny, {
|
|
2538
|
-
address: `0x${string}`;
|
|
2539
2538
|
data: `0x${string}`;
|
|
2539
|
+
address: `0x${string}`;
|
|
2540
2540
|
blockNumber: bigint;
|
|
2541
2541
|
blockHash: `0x${string}`;
|
|
2542
2542
|
transactionHash: `0x${string}`;
|
|
@@ -2544,8 +2544,8 @@ declare const logSchema: z.ZodObject<{
|
|
|
2544
2544
|
transactionIndex: bigint;
|
|
2545
2545
|
topics: `0x${string}`[];
|
|
2546
2546
|
}, {
|
|
2547
|
-
address: string;
|
|
2548
2547
|
data: string;
|
|
2548
|
+
address: string;
|
|
2549
2549
|
blockNumber: string | number | bigint;
|
|
2550
2550
|
blockHash: string;
|
|
2551
2551
|
transactionHash: string;
|
|
@@ -2573,8 +2573,8 @@ declare const receiptSchema: z.ZodObject<{
|
|
|
2573
2573
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2574
2574
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
2575
2575
|
}, "strip", z.ZodTypeAny, {
|
|
2576
|
-
address: `0x${string}`;
|
|
2577
2576
|
data: `0x${string}`;
|
|
2577
|
+
address: `0x${string}`;
|
|
2578
2578
|
blockNumber: bigint;
|
|
2579
2579
|
blockHash: `0x${string}`;
|
|
2580
2580
|
transactionHash: `0x${string}`;
|
|
@@ -2582,8 +2582,8 @@ declare const receiptSchema: z.ZodObject<{
|
|
|
2582
2582
|
transactionIndex: bigint;
|
|
2583
2583
|
topics: `0x${string}`[];
|
|
2584
2584
|
}, {
|
|
2585
|
-
address: string;
|
|
2586
2585
|
data: string;
|
|
2586
|
+
address: string;
|
|
2587
2587
|
blockNumber: string | number | bigint;
|
|
2588
2588
|
blockHash: string;
|
|
2589
2589
|
transactionHash: string;
|
|
@@ -2606,8 +2606,8 @@ declare const receiptSchema: z.ZodObject<{
|
|
|
2606
2606
|
cumulativeGasUsed: bigint;
|
|
2607
2607
|
contractAddress: `0x${string}` | null;
|
|
2608
2608
|
logs: {
|
|
2609
|
-
address: `0x${string}`;
|
|
2610
2609
|
data: `0x${string}`;
|
|
2610
|
+
address: `0x${string}`;
|
|
2611
2611
|
blockNumber: bigint;
|
|
2612
2612
|
blockHash: `0x${string}`;
|
|
2613
2613
|
transactionHash: `0x${string}`;
|
|
@@ -2629,8 +2629,8 @@ declare const receiptSchema: z.ZodObject<{
|
|
|
2629
2629
|
cumulativeGasUsed: string | number | bigint;
|
|
2630
2630
|
contractAddress: string | null;
|
|
2631
2631
|
logs: {
|
|
2632
|
-
address: string;
|
|
2633
2632
|
data: string;
|
|
2633
|
+
address: string;
|
|
2634
2634
|
blockNumber: string | number | bigint;
|
|
2635
2635
|
blockHash: string;
|
|
2636
2636
|
transactionHash: string;
|
|
@@ -2663,8 +2663,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2663
2663
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2664
2664
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
2665
2665
|
}, "strip", z.ZodTypeAny, {
|
|
2666
|
-
address: `0x${string}`;
|
|
2667
2666
|
data: `0x${string}`;
|
|
2667
|
+
address: `0x${string}`;
|
|
2668
2668
|
blockNumber: bigint;
|
|
2669
2669
|
blockHash: `0x${string}`;
|
|
2670
2670
|
transactionHash: `0x${string}`;
|
|
@@ -2672,8 +2672,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2672
2672
|
transactionIndex: bigint;
|
|
2673
2673
|
topics: `0x${string}`[];
|
|
2674
2674
|
}, {
|
|
2675
|
-
address: string;
|
|
2676
2675
|
data: string;
|
|
2676
|
+
address: string;
|
|
2677
2677
|
blockNumber: string | number | bigint;
|
|
2678
2678
|
blockHash: string;
|
|
2679
2679
|
transactionHash: string;
|
|
@@ -2701,8 +2701,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2701
2701
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2702
2702
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
2703
2703
|
}, "strip", z.ZodTypeAny, {
|
|
2704
|
-
address: `0x${string}`;
|
|
2705
2704
|
data: `0x${string}`;
|
|
2705
|
+
address: `0x${string}`;
|
|
2706
2706
|
blockNumber: bigint;
|
|
2707
2707
|
blockHash: `0x${string}`;
|
|
2708
2708
|
transactionHash: `0x${string}`;
|
|
@@ -2710,8 +2710,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2710
2710
|
transactionIndex: bigint;
|
|
2711
2711
|
topics: `0x${string}`[];
|
|
2712
2712
|
}, {
|
|
2713
|
-
address: string;
|
|
2714
2713
|
data: string;
|
|
2714
|
+
address: string;
|
|
2715
2715
|
blockNumber: string | number | bigint;
|
|
2716
2716
|
blockHash: string;
|
|
2717
2717
|
transactionHash: string;
|
|
@@ -2734,8 +2734,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2734
2734
|
cumulativeGasUsed: bigint;
|
|
2735
2735
|
contractAddress: `0x${string}` | null;
|
|
2736
2736
|
logs: {
|
|
2737
|
-
address: `0x${string}`;
|
|
2738
2737
|
data: `0x${string}`;
|
|
2738
|
+
address: `0x${string}`;
|
|
2739
2739
|
blockNumber: bigint;
|
|
2740
2740
|
blockHash: `0x${string}`;
|
|
2741
2741
|
transactionHash: `0x${string}`;
|
|
@@ -2757,8 +2757,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2757
2757
|
cumulativeGasUsed: string | number | bigint;
|
|
2758
2758
|
contractAddress: string | null;
|
|
2759
2759
|
logs: {
|
|
2760
|
-
address: string;
|
|
2761
2760
|
data: string;
|
|
2761
|
+
address: string;
|
|
2762
2762
|
blockNumber: string | number | bigint;
|
|
2763
2763
|
blockHash: string;
|
|
2764
2764
|
transactionHash: string;
|
|
@@ -2778,8 +2778,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2778
2778
|
actualGasUsed: bigint;
|
|
2779
2779
|
entryPoint: `0x${string}`;
|
|
2780
2780
|
logs: {
|
|
2781
|
-
address: `0x${string}`;
|
|
2782
2781
|
data: `0x${string}`;
|
|
2782
|
+
address: `0x${string}`;
|
|
2783
2783
|
blockNumber: bigint;
|
|
2784
2784
|
blockHash: `0x${string}`;
|
|
2785
2785
|
transactionHash: `0x${string}`;
|
|
@@ -2799,8 +2799,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2799
2799
|
cumulativeGasUsed: bigint;
|
|
2800
2800
|
contractAddress: `0x${string}` | null;
|
|
2801
2801
|
logs: {
|
|
2802
|
-
address: `0x${string}`;
|
|
2803
2802
|
data: `0x${string}`;
|
|
2803
|
+
address: `0x${string}`;
|
|
2804
2804
|
blockNumber: bigint;
|
|
2805
2805
|
blockHash: `0x${string}`;
|
|
2806
2806
|
transactionHash: `0x${string}`;
|
|
@@ -2822,8 +2822,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2822
2822
|
actualGasUsed: string | number | bigint;
|
|
2823
2823
|
entryPoint: string;
|
|
2824
2824
|
logs: {
|
|
2825
|
-
address: string;
|
|
2826
2825
|
data: string;
|
|
2826
|
+
address: string;
|
|
2827
2827
|
blockNumber: string | number | bigint;
|
|
2828
2828
|
blockHash: string;
|
|
2829
2829
|
transactionHash: string;
|
|
@@ -2843,8 +2843,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2843
2843
|
cumulativeGasUsed: string | number | bigint;
|
|
2844
2844
|
contractAddress: string | null;
|
|
2845
2845
|
logs: {
|
|
2846
|
-
address: string;
|
|
2847
2846
|
data: string;
|
|
2847
|
+
address: string;
|
|
2848
2848
|
blockNumber: string | number | bigint;
|
|
2849
2849
|
blockHash: string;
|
|
2850
2850
|
transactionHash: string;
|
|
@@ -2869,8 +2869,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2869
2869
|
actualGasUsed: bigint;
|
|
2870
2870
|
entryPoint: `0x${string}`;
|
|
2871
2871
|
logs: {
|
|
2872
|
-
address: `0x${string}`;
|
|
2873
2872
|
data: `0x${string}`;
|
|
2873
|
+
address: `0x${string}`;
|
|
2874
2874
|
blockNumber: bigint;
|
|
2875
2875
|
blockHash: `0x${string}`;
|
|
2876
2876
|
transactionHash: `0x${string}`;
|
|
@@ -2890,8 +2890,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2890
2890
|
cumulativeGasUsed: bigint;
|
|
2891
2891
|
contractAddress: `0x${string}` | null;
|
|
2892
2892
|
logs: {
|
|
2893
|
-
address: `0x${string}`;
|
|
2894
2893
|
data: `0x${string}`;
|
|
2894
|
+
address: `0x${string}`;
|
|
2895
2895
|
blockNumber: bigint;
|
|
2896
2896
|
blockHash: `0x${string}`;
|
|
2897
2897
|
transactionHash: `0x${string}`;
|
|
@@ -2916,8 +2916,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2916
2916
|
actualGasUsed: string | number | bigint;
|
|
2917
2917
|
entryPoint: string;
|
|
2918
2918
|
logs: {
|
|
2919
|
-
address: string;
|
|
2920
2919
|
data: string;
|
|
2920
|
+
address: string;
|
|
2921
2921
|
blockNumber: string | number | bigint;
|
|
2922
2922
|
blockHash: string;
|
|
2923
2923
|
transactionHash: string;
|
|
@@ -2937,8 +2937,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
|
|
|
2937
2937
|
cumulativeGasUsed: string | number | bigint;
|
|
2938
2938
|
contractAddress: string | null;
|
|
2939
2939
|
logs: {
|
|
2940
|
-
address: string;
|
|
2941
2940
|
data: string;
|
|
2941
|
+
address: string;
|
|
2942
2942
|
blockNumber: string | number | bigint;
|
|
2943
2943
|
blockHash: string;
|
|
2944
2944
|
transactionHash: string;
|
|
@@ -3964,8 +3964,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
3964
3964
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3965
3965
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
3966
3966
|
}, "strip", z.ZodTypeAny, {
|
|
3967
|
-
address: `0x${string}`;
|
|
3968
3967
|
data: `0x${string}`;
|
|
3968
|
+
address: `0x${string}`;
|
|
3969
3969
|
blockNumber: bigint;
|
|
3970
3970
|
blockHash: `0x${string}`;
|
|
3971
3971
|
transactionHash: `0x${string}`;
|
|
@@ -3973,8 +3973,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
3973
3973
|
transactionIndex: bigint;
|
|
3974
3974
|
topics: `0x${string}`[];
|
|
3975
3975
|
}, {
|
|
3976
|
-
address: string;
|
|
3977
3976
|
data: string;
|
|
3977
|
+
address: string;
|
|
3978
3978
|
blockNumber: string | number | bigint;
|
|
3979
3979
|
blockHash: string;
|
|
3980
3980
|
transactionHash: string;
|
|
@@ -4002,8 +4002,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4002
4002
|
data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4003
4003
|
topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
4004
4004
|
}, "strip", z.ZodTypeAny, {
|
|
4005
|
-
address: `0x${string}`;
|
|
4006
4005
|
data: `0x${string}`;
|
|
4006
|
+
address: `0x${string}`;
|
|
4007
4007
|
blockNumber: bigint;
|
|
4008
4008
|
blockHash: `0x${string}`;
|
|
4009
4009
|
transactionHash: `0x${string}`;
|
|
@@ -4011,8 +4011,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4011
4011
|
transactionIndex: bigint;
|
|
4012
4012
|
topics: `0x${string}`[];
|
|
4013
4013
|
}, {
|
|
4014
|
-
address: string;
|
|
4015
4014
|
data: string;
|
|
4015
|
+
address: string;
|
|
4016
4016
|
blockNumber: string | number | bigint;
|
|
4017
4017
|
blockHash: string;
|
|
4018
4018
|
transactionHash: string;
|
|
@@ -4035,8 +4035,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4035
4035
|
cumulativeGasUsed: bigint;
|
|
4036
4036
|
contractAddress: `0x${string}` | null;
|
|
4037
4037
|
logs: {
|
|
4038
|
-
address: `0x${string}`;
|
|
4039
4038
|
data: `0x${string}`;
|
|
4039
|
+
address: `0x${string}`;
|
|
4040
4040
|
blockNumber: bigint;
|
|
4041
4041
|
blockHash: `0x${string}`;
|
|
4042
4042
|
transactionHash: `0x${string}`;
|
|
@@ -4058,8 +4058,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4058
4058
|
cumulativeGasUsed: string | number | bigint;
|
|
4059
4059
|
contractAddress: string | null;
|
|
4060
4060
|
logs: {
|
|
4061
|
-
address: string;
|
|
4062
4061
|
data: string;
|
|
4062
|
+
address: string;
|
|
4063
4063
|
blockNumber: string | number | bigint;
|
|
4064
4064
|
blockHash: string;
|
|
4065
4065
|
transactionHash: string;
|
|
@@ -4079,8 +4079,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4079
4079
|
actualGasUsed: bigint;
|
|
4080
4080
|
entryPoint: `0x${string}`;
|
|
4081
4081
|
logs: {
|
|
4082
|
-
address: `0x${string}`;
|
|
4083
4082
|
data: `0x${string}`;
|
|
4083
|
+
address: `0x${string}`;
|
|
4084
4084
|
blockNumber: bigint;
|
|
4085
4085
|
blockHash: `0x${string}`;
|
|
4086
4086
|
transactionHash: `0x${string}`;
|
|
@@ -4100,8 +4100,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4100
4100
|
cumulativeGasUsed: bigint;
|
|
4101
4101
|
contractAddress: `0x${string}` | null;
|
|
4102
4102
|
logs: {
|
|
4103
|
-
address: `0x${string}`;
|
|
4104
4103
|
data: `0x${string}`;
|
|
4104
|
+
address: `0x${string}`;
|
|
4105
4105
|
blockNumber: bigint;
|
|
4106
4106
|
blockHash: `0x${string}`;
|
|
4107
4107
|
transactionHash: `0x${string}`;
|
|
@@ -4123,8 +4123,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4123
4123
|
actualGasUsed: string | number | bigint;
|
|
4124
4124
|
entryPoint: string;
|
|
4125
4125
|
logs: {
|
|
4126
|
-
address: string;
|
|
4127
4126
|
data: string;
|
|
4127
|
+
address: string;
|
|
4128
4128
|
blockNumber: string | number | bigint;
|
|
4129
4129
|
blockHash: string;
|
|
4130
4130
|
transactionHash: string;
|
|
@@ -4144,8 +4144,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4144
4144
|
cumulativeGasUsed: string | number | bigint;
|
|
4145
4145
|
contractAddress: string | null;
|
|
4146
4146
|
logs: {
|
|
4147
|
-
address: string;
|
|
4148
4147
|
data: string;
|
|
4148
|
+
address: string;
|
|
4149
4149
|
blockNumber: string | number | bigint;
|
|
4150
4150
|
blockHash: string;
|
|
4151
4151
|
transactionHash: string;
|
|
@@ -4170,8 +4170,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4170
4170
|
actualGasUsed: bigint;
|
|
4171
4171
|
entryPoint: `0x${string}`;
|
|
4172
4172
|
logs: {
|
|
4173
|
-
address: `0x${string}`;
|
|
4174
4173
|
data: `0x${string}`;
|
|
4174
|
+
address: `0x${string}`;
|
|
4175
4175
|
blockNumber: bigint;
|
|
4176
4176
|
blockHash: `0x${string}`;
|
|
4177
4177
|
transactionHash: `0x${string}`;
|
|
@@ -4191,8 +4191,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4191
4191
|
cumulativeGasUsed: bigint;
|
|
4192
4192
|
contractAddress: `0x${string}` | null;
|
|
4193
4193
|
logs: {
|
|
4194
|
-
address: `0x${string}`;
|
|
4195
4194
|
data: `0x${string}`;
|
|
4195
|
+
address: `0x${string}`;
|
|
4196
4196
|
blockNumber: bigint;
|
|
4197
4197
|
blockHash: `0x${string}`;
|
|
4198
4198
|
transactionHash: `0x${string}`;
|
|
@@ -4217,8 +4217,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4217
4217
|
actualGasUsed: string | number | bigint;
|
|
4218
4218
|
entryPoint: string;
|
|
4219
4219
|
logs: {
|
|
4220
|
-
address: string;
|
|
4221
4220
|
data: string;
|
|
4221
|
+
address: string;
|
|
4222
4222
|
blockNumber: string | number | bigint;
|
|
4223
4223
|
blockHash: string;
|
|
4224
4224
|
transactionHash: string;
|
|
@@ -4238,8 +4238,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4238
4238
|
cumulativeGasUsed: string | number | bigint;
|
|
4239
4239
|
contractAddress: string | null;
|
|
4240
4240
|
logs: {
|
|
4241
|
-
address: string;
|
|
4242
4241
|
data: string;
|
|
4242
|
+
address: string;
|
|
4243
4243
|
blockNumber: string | number | bigint;
|
|
4244
4244
|
blockHash: string;
|
|
4245
4245
|
transactionHash: string;
|