Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: contract based binary search for call gas limit estimate #214

Merged
merged 2 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "root",
"private": true,
"version": "2.0.6",
"version": "2.0.7",
"engines": {
"node": ">=18.0.0"
},
Expand Down
5 changes: 5 additions & 0 deletions packages/executor/src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,3 +253,8 @@ export interface KnownEntities {
accounts: string[];
otherEntities: string[];
}

export interface ExecutionResultAndCallGasLimit {
returnInfo: ExecutionResult;
callGasLimit: BigNumber;
}
16 changes: 8 additions & 8 deletions packages/executor/src/modules/eth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,13 +177,15 @@ export class Eth {
userOp.signature = ECDSA_DUMMY_SIGNATURE;
}

const returnInfo = await this.userOpValidationService.validateForEstimation(
userOp,
entryPoint
);
// eslint-disable-next-line prefer-const
let { returnInfo, callGasLimit } =
await this.userOpValidationService.validateForEstimation(
userOp,
entryPoint
);

// eslint-disable-next-line prefer-const
let { preOpGas, validAfter, validUntil, paid } = returnInfo;
let { preOpGas, validAfter, validUntil } = returnInfo;

const verificationGasLimit = BigNumber.from(preOpGas)
.sub(userOp.preVerificationGas)
Expand All @@ -194,9 +196,7 @@ export class Eth {

// calculate callGasLimit based on paid fee
const { cglMarkup } = this.config;
const totalGas: BigNumber = BigNumber.from(paid).div(userOp.maxFeePerGas);
let callGasLimit = totalGas
.sub(preOpGas)
callGasLimit = callGasLimit
.mul(10000 + this.config.cglMarkupPercent)
.div(10000) // % markup
.add(cglMarkup || 0);
Expand Down
2 changes: 2 additions & 0 deletions packages/executor/src/services/EntryPointService/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ export const DefaultGasOverheads = {
bundleSize: 1,
sigSize: 65,
};

export const IMPLEMENTATION_ADDRESS_MARKER = "0xA13dB4eCfbce0586E57D1AeE224FbE64706E8cd3";
ch4r10t33r marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,23 @@ export function decodeRevertReason(
}
}

export function decodeTargetData(data: string) {
try {
const methodSig = data.slice(0, 10);
const dataParams = "0x" + data.slice(10);
if(methodSig === "0x8c83589a") {
const res = ethers.utils.defaultAbiCoder.decode(
["uint256", "uint256"],
dataParams
);
return res;
}
throw Error("Error decoding target data");
} catch (error) {
throw error;
}
}

// not sure why ethers fail to decode revert reasons, not even "Error()" (and obviously, not custom errors)
export function rethrowWithRevertReason(e: Error): never {
throw new Error(decodeRevertReason(e, false) as any);
Expand Down
45 changes: 39 additions & 6 deletions packages/executor/src/services/EntryPointService/versions/0.0.7.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ import {
UserOperationByHashResponse,
} from "@skandha/types/lib/api/interfaces";
import { deepHexlify } from "@skandha/utils/lib/hexlify";
import {
CallGasEstimationProxy__factory,
_deployedBytecode as _callGasEstimationProxyDeployedBytecode,
} from "@skandha/types/lib/contracts/EPv7/factories/core/CallGasEstimationProxy__factory";
import { CallGasEstimationProxy } from "@skandha/types/lib/contracts/EPv7/core/CallGasEstimationProxy";
import {
encodeUserOp,
mergeValidationDataValues,
Expand All @@ -35,13 +40,20 @@ import {
StakeInfo,
UserOpValidationResult,
} from "../../../interfaces";
import { DefaultGasOverheads } from "../constants";
import {
DefaultGasOverheads,
IMPLEMENTATION_ADDRESS_MARKER,
} from "../constants";
import { StateOverrides } from "../interfaces";
import { decodeRevertReason } from "../utils/decodeRevertReason";
import {
decodeRevertReason,
decodeTargetData,
} from "../utils/decodeRevertReason";
import { getUserOpGasLimit } from "../../BundlingService/utils";
import { IEntryPointService } from "./base";

const entryPointSimulations = IEntryPointSimulations__factory.createInterface();
const callGasEstimateProxy = CallGasEstimationProxy__factory.createInterface();

export class EntryPointV7Service implements IEntryPointService {
contract: EntryPoint;
Expand Down Expand Up @@ -71,10 +83,21 @@ export class EntryPointV7Service implements IEntryPointService {
)
: undefined;

const [data, stateOverrides] = this.encodeSimulateHandleOp(
const estimateCallGasArgs: CallGasEstimationProxy.EstimateCallGasArgsStruct =
{
userOp: packUserOp(userOp),
isContinuation: true,
maxGas: "20000000",
minGas: "21000",
rounding: "500",
};

const [data] = this.encodeSimulateHandleOp(
userOp,
AddressZero,
BytesZero
this.address,
callGasEstimateProxy.encodeFunctionData("estimateCallGas", [
estimateCallGasArgs,
])
);

const tx: providers.TransactionRequest = {
Expand All @@ -83,6 +106,15 @@ export class EntryPointV7Service implements IEntryPointService {
gasLimit,
};

const stateOverrides: StateOverrides = {
[this.address]: {
code: _callGasEstimationProxyDeployedBytecode,
},
[IMPLEMENTATION_ADDRESS_MARKER]: {
code: _deployedBytecode,
},
};

try {
const simulationResult = await this.provider.send("eth_call", [
tx,
Expand All @@ -93,7 +125,8 @@ export class EntryPointV7Service implements IEntryPointService {
"simulateHandleOp",
simulationResult
);
return res[0];
const [callGasLimit] = decodeTargetData(res[0].targetResult);
return { returnInfo: res[0], callGasLimit: callGasLimit };
} catch (error: any) {
console.log(error);
const err = decodeRevertReason(error);
Expand Down
3 changes: 2 additions & 1 deletion packages/executor/src/services/UserOpValidation/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { UserOperation } from "@skandha/types/lib/contracts/UserOperation";
import { Config } from "../../config";
import {
ExecutionResult,
ExecutionResultAndCallGasLimit,
NetworkConfig,
UserOpValidationResult,
} from "../../interfaces";
Expand Down Expand Up @@ -62,7 +63,7 @@ export class UserOpValidationService {
async validateForEstimation(
userOp: UserOperation,
entryPoint: string
): Promise<ExecutionResult> {
): Promise<ExecutionResultAndCallGasLimit> {
return await this.estimationService.estimateUserOp(userOp, entryPoint);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { providers } from "ethers";
import { Logger } from "@skandha/types/lib";
import { UserOperation } from "@skandha/types/lib/contracts/UserOperation";
import { ExecutionResult } from "../../../interfaces";
import { ExecutionResultAndCallGasLimit } from "../../../interfaces";
import { EntryPointService } from "../../EntryPointService";
import { mergeValidationDataValues } from "../../EntryPointService/utils";

Expand All @@ -15,22 +15,23 @@ export class EstimationService {
async estimateUserOp(
userOp: UserOperation,
entryPoint: string
): Promise<ExecutionResult> {
const returnInfo = await this.entryPointService.simulateHandleOp(
entryPoint,
userOp
);
): Promise<ExecutionResultAndCallGasLimit> {
const { returnInfo, callGasLimit } =
await this.entryPointService.simulateHandleOp(entryPoint, userOp);
const { validAfter, validUntil } = mergeValidationDataValues(
returnInfo.accountValidationData,
returnInfo.paymasterValidationData
);
return {
preOpGas: returnInfo.preOpGas,
paid: returnInfo.paid,
validAfter: validAfter,
validUntil: validUntil,
targetSuccess: returnInfo.targetSuccess,
targetResult: returnInfo.targetResult,
returnInfo: {
preOpGas: returnInfo.preOpGas,
paid: returnInfo.paid,
validAfter: validAfter,
validUntil: validUntil,
targetSuccess: returnInfo.targetSuccess,
targetResult: returnInfo.targetResult,
},
callGasLimit,
};
}
}
Loading