# Integrate Embedded Wallets with the Ethereum Blockchain

> Integrate Embedded Wallets with the Ethereum Blockchain | Embedded Wallets

Integrate Web3Auth seamlessly with EVM-based Ethereum blockchain. For Web SDKs, Web3Auth returns a provider that can be directly used to initialize the libraries like ethers.js, web3.js etc. and make blockchain calls, while for Mobile & Gaming SDKs, the private key is available in the user scope which can be used in a similar way to initialize the respective blockchain interaction libraries and make calls to the network.

This documentation provides a straightforward guide for developers looking to implement blockchain connections quickly and effortlessly across various platforms.

## Chain details for Ethereum

<Tabs
 defaultValue="mainnet"
  values={[
    { label: "Mainnet", value: "mainnet" },
    { label: "Sepolia Testnet", value: "sepolia" },
    { label: "Holesky Testnet", value: "holesky" },
  ]}
>
<TabItem value="mainnet">

- **Chain ID:** 0x1
- **RPC URL:** You can use our bundled RPC service from Infura, or your own choice of RPC service for production.
- **Display Name:** Ethereum Mainnet
- **Block Explorer Link:** `https://etherscan.io`
- **Ticker:** ETH
- **Ticker Name:** Ethereum

</TabItem>

<TabItem value="sepolia">

- **Chain ID:** 0xaa36a7
- **Public RPC URL:** `https://ethereum-sepolia.publicnode.com`
- **Display Name:** Ethereum Sepolia Testnet
- **Block Explorer Link:** `https://sepolia.etherscan.io`
- **Ticker:** ETH
- **Ticker Name:** SepoliaETH

</TabItem>

<TabItem value="holesky">

- **Chain ID:** 0x4268
- **Public RPC URL:** `https://rpc.holesky.ethpandaops.io`
- **Display Name:** Ethereum Holesky Testnet
- **Block Explorer Link:** `https://holesky.etherscan.io`
- **Ticker:** ETH
- **Ticker Name:** HoleskyETH

</TabItem>
</Tabs>

export const Ethereum = [
  {
    name: '',
    description: '',
    tiles: [
      {
        key: 'react',
        title: 'React',
        icon: 'logo-react.png',
        path: '/embedded-wallets/connect-blockchain/evm/ethereum/react',
      },
            {
        key: 'vue',
        title: 'Vue',
        icon: 'logo-vue.png',
        path: '/embedded-wallets/connect-blockchain/evm/ethereum/vue',
      },

      {
        key: 'javascript',
        title: 'JavaScript',
        icon: 'logo-js.png',
        path: '/embedded-wallets/connect-blockchain/evm/ethereum/javascript',
      },
      {
        key: 'android',
        title: 'Android (Kotlin)',
        icon: 'logo-android.png',
        path: '/embedded-wallets/connect-blockchain/evm/ethereum/android',
      },
      {
        key: 'apple',
        title: 'iOS (Swift)',
        icon: 'logo-apple.png',
        path: '/embedded-wallets/connect-blockchain/evm/ethereum/ios',
      },
      {
        key: 'flutter',
        title: 'Flutter',
        icon: 'logo-flutter.png',
        path: '/embedded-wallets/connect-blockchain/evm/ethereum/flutter',
      },
      {
        key: 'react-native',
        title: 'React Native',
        icon: 'logo-react.png',
        path: '/embedded-wallets/connect-blockchain/evm/ethereum/react-native',
      },
      {
        key: 'unity',
        title: 'Unity',
        icon: 'logo-unity.png',
        path: '/embedded-wallets/connect-blockchain/evm/ethereum/unity',
      },
    ],

},
]

<Tiles tileGroups={Ethereum} />
