# Integrate Embedded Wallets with the Celo Blockchain in iOS/Swift Applications

> Integrate Embedded Wallets with the Celo Blockchain in iOS/Swift Applications | Embedded Wallets

While using the Web3Auth iOS SDK, you get the private key within the user scope after successful authorization. This private key can be used to retrieve the user's address, and interact with [Celo](https://ethereum.org/) to make any blockchain calls. We have highlighted a few here for getting you started quickly on that.

## Chain details for Celo

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

- **Chain ID:** 0xa4ec
- **Public RPC URL:** `https://forno.celo.org`
- **Display Name:** Celo Mainnet
- **Block Explorer Link:** `https://explorer.celo.org`
- **Ticker:** CELO
- **Ticker Name:** Celo

</TabItem>

<TabItem value="sepolia">

- **Chain ID:** 0xaa044c
- **Public RPC URL:** `https://forno.celo-sepolia.celo-testnet.org`
- **Display Name:** Celo Sepolia Testnet
- **Block Explorer Link:** `https://celo-sepolia.blockscout.com/`
- **Ticker:** CELO
- **Ticker Name:** Celo

</TabItem>
</Tabs>

## Prerequisites

- Project is set up in the MetaMask Developer Dashboard
- Web3Auth is [integrated in your iOS app](/embedded-wallets/sdk/ios/)

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />

## Send transaction

<SendTransactionSnippet />
