# Integrate Embedded Wallets with the Bitkub Blockchain in Node

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

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

- **Chain ID:** 0x60
- **Public RPC URL:** `https://rpc.bitkubchain.io`
- **Display Name:** Bitkub Chain Mainnet
- **Block Explorer Link:** `https://www.bkcscan.com`
- **Ticker:** KUB
- **Ticker Name:** Bitkub Coin

</TabItem>

<TabItem value="testnet">

- **Chain ID:** 0x6545
- **Public RPC URL:** `https://rpc-testnet.bitkubchain.io`
- **Display Name:** Bitkub Chain Testnet
- **Block Explorer Link:** `https://testnet.bkcscan.com`
- **Ticker:** tKUB
- **Ticker Name:** Test Bitkub Coin

</TabItem>
</Tabs>

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />
