# Integrate Embedded Wallets with the Flare Blockchain in Android

> Integrate Embedded Wallets with the Flare Blockchain in Android | Embedded Wallets

While using the Web3Auth Android 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 [Flare](https://ethereum.org/) to make any blockchain calls. We have highlighted a few here for getting you started quickly on that.

## Chain details for Flare

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

- **Chain ID:** 0xE
- **Public RPC URL:** `https://flare-api.flare.network/ext/C/rpc`
- **Display Name:** Flare Mainnet
- **Block Explorer Link:** `https://flare-explorer.flare.network`
- **Ticker:** FLR
- **Ticker Name:** Flare

</TabItem>

<TabItem value="coston2">

- **Chain ID:** 0x72
- **Public RPC URL:** `https://coston2-api.flare.network/ext/C/rpc`
- **Display Name:** Flare Coston2 Testnet
- **Block Explorer Link:** `https://coston2-explorer.flare.network`
- **Ticker:** C2FLR
- **Ticker Name:** Coston2 Flare

</TabItem>
</Tabs>

## Prerequisites

This doc assumes you have already setup your project in the Embedded Wallets dashboard (formerly Web3Auth), and have integrated Embedded Wallets in your Android app. If you haven't done that yet, you can learn how to [integrate Embedded Wallets in your Android app](/embedded-wallets/sdk/android/).

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />

## Send transaction

<SendTransactionSnippet />
