# Integrate Embedded Wallets with the BNB Blockchain in React Native

> Integrate Embedded Wallets with the BNB Blockchain in React Native | Embedded Wallets

While using the Web3Auth React Native SDK, you get a [`EIP1193`](https://eips.ethereum.org/EIPS/eip-1193) provider, similar to the [MetaMask Provider](https://docs.metamask.io/guide/ethereum-provider.html). This provider can be used with libraries like [`web3.js`](https://docs.web3js.org/), [`ethers.js`](https://docs.ethers.io/v5/getting-started/) etc. to make [BNB](https://www.bnbchain.org/) blockchain calls like getting the user's `account`, fetching `balance`, `sign transaction`, `send transaction`, `read` from and `write` to the smart contract, etc. We have highlighted a few here to get you started.

## Chain details for BNB

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

- **Chain ID:** 0x38
- **RPC URL:** You can use our bundled RPC service from Infura, or your own choice of RPC service for production.
- **Display Name:** BNB Smart Chain Mainnet
- **Block Explorer Link:** `https://bscscan.com`
- **Ticker:** BNB
- **Ticker Name:** Binance Coin

</TabItem>

<TabItem value="testnet">

- **Chain ID:** 0x61
- **Public RPC URL:** `https://data-seed-prebsc-1-s1.binance.org:8545`
- **Display Name:** BNB Smart Chain Testnet
- **Block Explorer Link:** `https://testnet.bscscan.com`
- **Ticker:** BNB
- **Ticker Name:** Binance Coin

</TabItem>
</Tabs>

## Installation

<InstallationSnippet />

## Initializing provider

Using `eip155` as `chainNamespace` while initializing `web3auth` will provide an [`EIP1193`](https://eips.ethereum.org/EIPS/eip-1193) compatible provider as **`web3auth.provider`** after successful authentication.

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Send transaction

<SendTransactionSnippet />

## Sign a message

<SignMessageSnippet />
