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

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

## Chain details for Fhenix

<Tabs
 defaultValue="helium"
  values={[
    { label: "Helium Testnet", value: "helium" },
  ]}
>
<TabItem value="helium">

- **Chain ID:** 0x7a31c7
- **Public RPC URL:** `https://api.helium.fhenix.zone`
- **Display Name:** Fhenix Helium Testnet
- **Block Explorer Link:** `https://explorer.helium.fhenix.zone`
- **Ticker:** tFHE
- **Ticker Name:** Test FHE

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