# Integrate Embedded Wallets with the Polygon Blockchain in Node

> Integrate Embedded Wallets with the Polygon 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 [Polygon](https://polygon.technology/) 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 Polygon

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

- **Chain ID:** 0x89
- **RPC URL:** You can use our bundled RPC service from Infura, or your own choice of RPC service for production.
- **Display Name:** Polygon Mainnet
- **Block Explorer Link:** `https://polygonscan.com`
- **Ticker:** MATIC
- **Ticker Name:** Polygon

</TabItem>

<TabItem value="amoy">

- **Chain ID:** 0x13882
- **Public RPC URL:** `https://rpc-amoy.polygon.technology`
- **Display Name:** Polygon Amoy Testnet
- **Block Explorer Link:** `https://amoy.polygonscan.com`
- **Ticker:** MATIC
- **Ticker Name:** Polygon

</TabItem>
</Tabs>

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />
