# Integrate Embedded Wallets with the Bitkub Blockchain in Android

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

## Chain details for Bitkub

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

- **Chain ID:** 0x60
- **Public RPC URL:** `https://rpc.bitkubchain.io`
- **Display Name:** Bitkub Chain Mainnet
- **Block Explorer Link:** `https://www.bkcscan.com`
- **Ticker:** KUB
- **Ticker Name:** Bitkub Coin

</TabItem>

<TabItem value="testnet">

- **Chain ID:** 0x6545
- **Public RPC URL:** `https://rpc-testnet.bitkubchain.io`
- **Display Name:** Bitkub Chain Testnet
- **Block Explorer Link:** `https://testnet.bkcscan.com`
- **Ticker:** tKUB
- **Ticker Name:** Test Bitkub Coin

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