pimlicolabs / erc20-paymaster

An ERC-4337 Paymaster contract by Pimlico that is able to sponsor gas fees in exchange for ERC-20 tokens
https://pimlico.io
MIT License
62 stars 16 forks source link

Add Named imports for better readability #19

Open allwin199 opened 4 months ago

allwin199 commented 4 months ago

https://github.com/pimlicolabs/erc20-paymaster/blob/8e37933ea0125352d89659cb623a959071bf879e/src/ERC20Paymaster.sol#L4

The above line can be improved with named imports

 import {BasePaymaster} from "@account-abstraction/contracts/core/BasePaymaster.sol"; 

Named imports can be applied to all imports.

allwin199 commented 4 months ago

@kristofgazso If you think this change is necessary I would like to work on this.