# Integrate Embedded Wallets with the Manta Blockchain in Unity

> Integrate Embedded Wallets with the Manta Blockchain in Unity | Embedded Wallets

While using the Web3Auth Unity SDK, you get the private key within the user scope. This private key can interact with the [Nethereum Library](https://nethereum.com/) to make EVM based blockchain calls, like getting user's `account`, fetch `balance`, `sign transaction`, `send transaction`, `read` from and `write` to the smart contract, etc. We have highlighted a few here for getting you started quickly on that.

## Chain details for Manta

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

- **Chain ID:** 0xA9
- **Public RPC URL:** `https://pacific-rpc.manta.network/http`
- **Display Name:** Manta Pacific Mainnet
- **Block Explorer Link:** `https://pacific-explorer.manta.network`
- **Ticker:** ETH
- **Ticker Name:** Ethereum

</TabItem>

<TabItem value="sepolia">

- **Chain ID:** 0x34816E
- **Public RPC URL:** `https://pacific-rpc.sepolia-testnet.manta.network/http`
- **Display Name:** Manta Pacific Sepolia Testnet
- **Block Explorer Link:** `https://pacific-explorer.sepolia-testnet.manta.network`
- **Ticker:** ETH
- **Ticker Name:** Ethereum

</TabItem>
</Tabs>

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />

## Send transaction

<SendTransactionSnippet />
