# Integrate Embedded Wallets with the Harmony Blockchain in Node

> Integrate Embedded Wallets with the Harmony 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 [Harmony](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 Harmony

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

- **Chain ID:** 0x63564c40
- **Public RPC URL:** `https://api.harmony.one`
- **Display Name:** Harmony Mainnet Shard 0
- **Block Explorer Link:** `https://explorer.harmony.one`
- **Ticker:** ONE
- **Ticker Name:** Harmony

</TabItem>

<TabItem value="testnet">

- **Chain ID:** 0x6357d2e0
- **Public RPC URL:** `https://api.s0.b.hmny.io`
- **Display Name:** Harmony Testnet Shard 0
- **Block Explorer Link:** `https://explorer.testnet.harmony.one`
- **Ticker:** ONE
- **Ticker Name:** Harmony

</TabItem>
</Tabs>

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />
