# Integrate Embedded Wallets with the Shardeum Blockchain in Unity

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

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

- **Chain ID:** 0x1F92
- **Public RPC URL:** `https://atomium.shardeum.org`
- **Display Name:** Shardeum Atomium Testnet
- **Block Explorer Link:** `https://explorer-atomium.shardeum.org`
- **Ticker:** SHM
- **Ticker Name:** Shardeum

</TabItem>
</Tabs>

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />

## Send transaction

<SendTransactionSnippet />
