# Integrate Embedded Wallets with the Astar Zkyoto Blockchain in Android

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

## Chain details for Astar Zkyoto

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

- **Chain ID:** 0x5C2359
- **Public RPC URL:** `https://rpc.startale.com/astar-zkyoto`
- **Display Name:** Astar zKyoto Testnet
- **Block Explorer Link:** `https://zkyoto.explorer.startale.com`
- **Ticker:** ETH
- **Ticker Name:** Ethereum

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