# Integrate Embedded Wallets with the OpBNB Blockchain in Unity

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

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

- **Chain ID:** 0xCC
- **Public RPC URL:** `https://opbnb-mainnet-rpc.bnbchain.org`
- **Display Name:** opBNB Mainnet
- **Block Explorer Link:** `https://opbnbscan.com`
- **Ticker:** BNB
- **Ticker Name:** BNB

</TabItem>

<TabItem value="testnet">

- **Chain ID:** 0x15EB
- **Public RPC URL:** `https://opbnb-testnet-rpc.bnbchain.org`
- **Display Name:** opBNB Testnet
- **Block Explorer Link:** `https://testnet.opbnbscan.com`
- **Ticker:** tBNB
- **Ticker Name:** Test BNB

</TabItem>
</Tabs>

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />

## Send transaction

<SendTransactionSnippet />
