# Integrate Embedded Wallets with the XDC Blockchain in Node

> Integrate Embedded Wallets with the XDC Blockchain in Node | Embedded Wallets

While using the Web3Auth Node SDK, you get a Ethers Signer on successful authentication. This signer can be used with libraries like [`ethers.js`](https://docs.ethers.io/v5/getting-started/) etc. to make [XDC](https://ethereum.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 XDC

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

- **Chain ID:** 0x32
- **Public RPC URL:** `https://erpc.xinfin.network`
- **Display Name:** XDC Network Mainnet
- **Block Explorer Link:** `https://xdcscan.io`
- **Ticker:** XDC
- **Ticker Name:** XDC Network

</TabItem>

<TabItem value="apothem">

- **Chain ID:** 0x33
- **Public RPC URL:** `https://rpc.apothem.network`
- **Display Name:** XDC Apothem Network
- **Block Explorer Link:** `https://apothem.xdcscan.io`
- **Ticker:** XDC
- **Ticker Name:** XDC Network

</TabItem>

<TabItem value="devnet">

- **Chain ID:** 0x227
- **Public RPC URL:** `https://devnetstats.apothem.network/devnet`
- **Display Name:** XDC Network Devnet
- **Block Explorer Link:** `https://devnet.xdcscan.io`
- **Ticker:** XDC
- **Ticker Name:** XDC Network

</TabItem>
</Tabs>

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />
