EntryPoint Contract
A singleton entry point contract to verify and execute bundles of UserOperations.
Overview
The EntryPoint contract is a core component of account abstraction, serving as a "global trusted singleton" that processes UserOperations. Bundlers submit these UserOperations to the handleOps
method of the EntryPoint contract, which verifies their validity and executes them on-chain through the respective Account contracts. This ensures a secure and seamless flow of transactions while supporting advanced features like social recovery and multi-signature wallets.
Role
The EntryPoint contract plays a pivotal role in the verification and execution of transactions. Below is a step-by-step outline of its operation:
Verification Simulation: The Bundler listens for UserOperations and calls the
EntryPoint.simulateVerification()
function for the UserOperation. If successful, the process proceeds.Handling Operations: The Bundler calls
EntryPoint.handleOps()
, initiating a verification and execution loop.Account Deployment: If this is the first time the account has made a transaction, the EntryPoint contract will use the
userOperation.initCode
field to deploy the Account contract via the Account Factory contract.UserOperation Validation: Now that the Account contract is deployed the EntryPoint contract will call
Account.validateUserOp()
passing in the UserOperation as a parameter. The account is responsible for verifying thesignature
which could potentially have arbitrary verification logic such as social recovery, muti-signature, etc.Fee Payment: The EntryPoint contract passes the fee in the
Account.validateUserOp()
and if it is a valid UserOperation the Account contract pays the fee back to the EntryPoint contract. If there is a Paymaster involved then the Paymaster will be asked to pay the fee by the EntryPoint contract by runningPaymaster.validatePaymasterUserOp()
to verify that the Paymaster is willing to pay the fee.Execution: If that verification step passes, finally, the EntryPoint contract calls the account contract with
UserOperation.callData
. Which executes the user’s intent as a transaction.
Implementation
As a singleton, the EntryPoint contract has a single deployment on both VeChainThor’s mainnet and testnet:
Mainnet
0xeE8A9E01A08bbdf3586dFa97d15aCA174DFc4d29
Testnet
0xf9188E94783Ca505886488F04249DD7f6a36770B
VeChain-Specific Modifications
The EntryPoint contract was developed for the Ethereum blockchain. Given VeChain has some modifications that are not present in Ethereum it is expected that the EntryPoint contract requires some modifications to be interoperable with VeChain.
The most significant modification to implementing account abstraction on VeChain is to adjust the smart contracts to accommodate for the VeChain two-token design which is in contrast to the single asset ETH on Ethereum. On Ethereum, all account abstraction participants spend and are compensated in ETH, the native token of Ethereum. Whereas, on VeChain the account abstraction participants are modified to accept VTHO, the VeChain gas token, instead of VET, the VeChain utility token, by adding additional VTHO-equivalent methods.
The EntryPoint contract was modified to accept VTHO instead of VET by adding additional VTHO-equivalent methods to its public interface and subsequently the BaseAccount and Paymaster were modified to reimburse VTHO instead of VET back to the EntryPoint contract using these new methods.
StakeManager Adjustments
Modifications were made to the StakeManager contract which the EntryPoint contract inherits from. The purpose of the modifications to the StakeManager contract was to use the VTHO asset instead of the VET asset. Modifications were made to all methods that were payable to not payable since we do not require the Account contract or the Paymaster contract to deposit VET. We also added depositAmount()
and addStakeAmount()
alongside deposit()
and addStake()
such that the Account contract or Paymaster contract can deposit a specific amount and not all of their VTHO allowance.
The changes to the StakeManager interface can be found below:
The new StakeManager interface can be found below:
Last updated
Was this helpful?