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

> Integrate Embedded Wallets with the Aleph Zero 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 [Aleph Zero](https://ethereum.org/) to make any blockchain calls. We have highlighted a few here for getting you started quickly on that.

## Chain details for Aleph Zero

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

- **Chain ID:** 0x1b5
- **Public RPC URL:** `https://rpc.azero.dev`
- **Display Name:** Aleph Zero Mainnet
- **Block Explorer Link:** `https://alephzero.subscan.io`
- **Ticker:** AZERO
- **Ticker Name:** Aleph Zero

</TabItem>

<TabItem value="testnet">

- **Chain ID:** 0x1b6
- **Public RPC URL:** `https://rpc.test.azero.dev`
- **Display Name:** Aleph Zero Testnet
- **Block Explorer Link:** `https://test.azero.subscan.io`
- **Ticker:** AZERO
- **Ticker Name:** Aleph Zero

</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 />
