# Integrate Embedded Wallets with the Avalanche Blockchain in Unity

> Integrate Embedded Wallets with the Avalanche 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 Avalanche

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

- **Chain ID:** 0xa86a
- **RPC URL:** You can use our bundled RPC service from Infura, or your own choice of RPC service for production.
- **Display Name:** Avalanche C-Chain
- **Block Explorer Link:** `https://snowtrace.io`
- **Ticker:** AVAX
- **Ticker Name:** Avalanche

</TabItem>

<TabItem value="fuji">

- **Chain ID:** 0xa869
- **Public RPC URL:** `https://api.avax-test.network/ext/bc/C/rpc`
- **Display Name:** Avalanche Fuji Testnet
- **Block Explorer Link:** `https://testnet.snowtrace.io`
- **Ticker:** AVAX
- **Ticker Name:** Avalanche

</TabItem>
</Tabs>

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />

## Send transaction

<SendTransactionSnippet />
