> ## Documentation Index
> Fetch the complete documentation index at: https://developers.particle.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Particle Account Abstraction FAQ

> Find Frequently Asked Questions about Particle Account Abstraction.

<AccordionGroup>
  <Accordion title="How can I support new ERC-20 tokens for Gas payments?" icon="gas-pump">
    **Answer:** Particle Network uses the Biconomy Paymaster to sponsor transactions using ERC-20 tokens for gas fees. To support new ERC-20 tokens, it is dependent on Biconomy's integration. The availability of a token for gas payments is determined by Biconomy's supported token list.

    <Note>For a complete list of supported ERC-20 tokens, please refer to the [Biconomy documentation](https://docs.biconomy.io/supportedNetworks#supported-tokens).</Note>
  </Accordion>

  <Accordion title="On which chains can I fund the Paymaster?" icon="filter-circle-dollar">
    **Answer:** You can fund the Paymaster by depositing **USDT** on either **Ethereum** or **BNB Chain** through the **Paymaster** menu on the **Particle Network Dashboard**.

    The choice of chain only affects the deposit origin, not the Paymaster’s functionality. Once deposited, USDT is converted to the native token of the target chain, enabling you to sponsor transactions on any supported EVM chain.

    To view the full list of supported EVM chains, head over to the [Network Coverage](/social-logins/network-coverage) page.

    <Note>No USDT deposit is needed for testnet sponsorship.</Note>
  </Accordion>

  <Accordion title="Can I use a custom smart account?" icon="file-user">
    **Answer:** The AA SDK currently doesn't offer native support for custom smart accounts. We support a select range of smart accounts:

    * **SimpleAccount**: `SIMPLE`
    * **Biconomy**: `BICONOMY`
    * **CyberConnect**: `CYBERCONNECT`
    * **Light**: `LIGHT`
    * **Coinbase**: `COINBASE`

    <Tip>For more information on supported smart accounts and how to initialize them, visit the [AA SDK documentation](/aa/sdks/desktop/web#initialization).</Tip>
  </Accordion>

  <Accordion title="Can I automate transactions and/or remove confirmation pop-ups?" icon="robot">
    **Answer:** Yes, with Biconomy V2, you can use **session keys** to grant users the ability to conditionally delegate signing authority. This allows for the automation of transactions and the elimination of confirmation pop-ups, providing a smoother user experience.

    <Note>Learn more about implementing [Session Keys](/aa/guides/keys) in your application.</Note>
  </Accordion>

  <Accordion title="How do I use a custom Bundler?" icon="box">
    **Answer:** Although our SDK doesn't natively support custom Bundlers, you can still create a `UserOperation` object using the SDK. Once constructed, this object can be executed via a standard API call to your own Bundler endpoint.

    <Tip>For detailed guidance on creating and using `UserOperation` objects, check out our [API reference](/aa/rpc/createuserop).</Tip>
  </Accordion>

  <Accordion title="How do I use a custom Paymaster?" icon="money-bill">
    **Answer:** The AA SDK currently only supports Particle's native Paymaster, accessible via the [Particle Network Dashboard](https://dashboard.particle.network), and Biconomy's Paymaster. If you wish to use a custom Paymaster, you'll need to integrate it through a custom API in your application, sponsoring a `UserOperation` constructed by the AA SDK/API.

    After that, using our SDK, you can execute the resulting `UserOperation` (including `paymasterAndData` from your Paymaster).

    <Tip>For more details on the available endpoints, visit the [AA APIs documentation](/aa/rpc/getsmartaccount).</Tip>
  </Accordion>

  <Accordion title="What are the differences between the natively supported smart accounts?" icon="user">
    **Answer:** Each natively-supported smart account differs in feature-set (such as session keys, multi-chain signatures, and so on).

    Below is a table detailing the core differences between account types as it relates to the features they support.

    | Account Type                                                                                                            | Session Keys | Transferable Signer | Multichain Signatures | Gasless Transactions |
    | ----------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------- | --------------------- | -------------------- |
    | [Biconomy (V2)](https://github.com/bcnmy/scw-contracts/blob/main/contracts/smart-account/SmartAccount.sol)              | ✓            | ✓                   | ✓                     | ✓                    |
    | Biconomy (V1)                                                                                                           | ✗            | ✗                   | ✗                     | ✓                    |
    | [Light](https://github.com/alchemyplatform/light-account)                                                               | ✗            | ✓                   | ✗                     | ✓                    |
    | [Coinbase](https://github.com/coinbase/coinbase-wallet-sdk)                                                             | ✗            | ✗                   | ✗                     | ✓                    |
    | CyberConnect                                                                                                            | ✗            | ✗                   | ✗                     | ✓                    |
    | [SimpleAccount](https://github.com/eth-infinitism/account-abstraction/blob/develop/contracts/samples/SimpleAccount.sol) | ✗            | ✗                   | ✗                     | ✓                    |

    <Tip>For more information on the chains supported by each account type, head over to the [Network Coverage page](/social-logins/network-coverage).</Tip>
  </Accordion>
</AccordionGroup>

<Note>
  **Still need help?**

  [Open a ticket](https://t.me/particle_developer_bot) with Particle's Developer Relations team through the dedicated Telegram support bot.
</Note>
