# Integrate Embedded Wallets with the Neon Blockchain in Unity

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

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

- **Chain ID:** 0xe9ac0d6
- **Public RPC URL:** `https://neon-proxy-mainnet.solana.p2p.org`
- **Display Name:** Neon EVM Mainnet
- **Block Explorer Link:** `https://neonscan.org`
- **Ticker:** NEON
- **Ticker Name:** Neon

</TabItem>

<TabItem value="devnet">

- **Chain ID:** 0xe9ac0ce
- **Public RPC URL:** `https://devnet.neonevm.org`
- **Display Name:** Neon EVM Devnet
- **Block Explorer Link:** `https://devnet.neonscan.org`
- **Ticker:** NEON
- **Ticker Name:** Neon

</TabItem>
</Tabs>

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />

## Send transaction

<SendTransactionSnippet />
