/erc4337huff

Primary LanguageSolidity

ERC4337 Huff

Huff-golfing for cheap account abstraction

This repo contains a Huff-rewrite of the ERC-4337 EntryPoint contract. The EntryPoint contract is critical infra for ERC-4337 that routes UserOperations (psuedo-transactions) to the correct account contract, including account deployment, validation and execution.

Note

These contracts are unaudited and are not recommended for use in production.

The main usage of these contracts is to find out how much gas can be saved by using a Huff EntryPoint.

Gas calculations

1 UO 2 UO 10 UO
HuffEntryPoint 126,763 140,029 246,448
EntryPoint 281,212 342,545 833,895
-------------- ------ ----- -----
Difference 154,449 202,516 587,447
% Difference 55% 60% 70%

Todo

  • Gas estimations
  • Check nonces
  • Pay beneficiary

Using this repo

  1. Clone this repo
git clone https://github.com/leekt/erc4337huff.git
cd erc4337huff
  1. Install dependencies

Once you've cloned and entered into your repository, you need to install the necessary dependencies. In order to do so, simply run:

forge install
  1. Build & Test

To build and test your contracts, you can run:

forge build
forge test
  1. Run gas tests

To run gas tests, you can run:

forge test --mc GasCalcs -vv

For more information on how to use Foundry, check out the Foundry Github Repository and the foundry-huff library repository.

Acknowledgements

Disclaimer

These smart contracts are being provided as is. No guarantee, representation or warranty is being made, express or implied, as to the safety or correctness of the user interface or the smart contracts. They have not been audited and as such there can be no assurance they will work as intended, and users may experience delays, failures, errors, omissions, loss of transmitted information or loss of funds. The creators are not liable for any of the foregoing. Users should proceed with caution and use at their own risk.