Prerequisites: This tutorial assumes you’ve read the Enable MEE for EOA Users and understand EIP-7702 based execution and Fusion execution.
- Users can pay gas without native tokens.
- Gas can be paid with thousands of tokens, even using lending position tokens (e.g. aUSDC), LP tokens, governance tokens, derivatives, and more.
- Integrate with DeFi-native flows where users already hold non-native tokens.
1. EIP-7702 EOAs (Used With Embedded Wallets)
Smart-account logic is installed directly on the EOA. Just pass afeeToken
when quoting. EIP-7702 supports
same-chain and cross-chain gas (using tokens from one chain to pay for transaction on another).
Learn how to set up EIP-7702 on your EOA
Not just stablecoins: Supports any ERC-20 token as the gas token—including wrapped assets and derivatives. Multiple tokens can be used per quote.
2. Fusion Mode (Used With External Wallets)
Learn how to set up Fusion Mode Fusion uses a Trigger + Companion Account. Fusion mode is used when working with External Wallets such as MetaMask, Rabby, Trust, … Fusion mode must be used with those wallets as they don’t allow apps to install code on EOAs through EIP-7702. The token that funds the trigger must also be the gas token. Fusion mode is limited to using only tokens on the same chain to pay for gas, but has the broadest wallet coverage (does not require EIP-7702 or Smart Account)- If token supports ERC-2612 (ERC20Permit), trigger is gasless.
- If not, user must first send an
approve()
tx (gas is needed). - Fusion requires same token for trigger and gas payment.
- Only one token per user signature is supported.
3. Native Smart Contract Accounts (SCAs)
Use MEE Nexus SCAs to execute on one chain and pay gas on another.Key Takeaways
- Use any ERC-20—not just standard tokens, but LPs, lending receipts, governance tokens, and more.
- Execute on one chain, pay on another.
- Choose orchestration method based on wallet type:
- EIP-7702: simplest
- Fusion: requires trigger
- SCAs: most advanced, composable
- Fusion requires ERC20Permit for gasless usage.
- Consider gas sponsorship to remove all gas costs for users.