# Integrate Embedded Wallets with the Songbird Blockchain in Node

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

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

- **Chain ID:** 0x13
- **Public RPC URL:** `https://songbird-api.flare.network/ext/C/rpc`
- **Display Name:** Songbird Canary Network
- **Block Explorer Link:** `https://songbird-explorer.flare.network`
- **Ticker:** SGB
- **Ticker Name:** Songbird

</TabItem>

<TabItem value="coston">

- **Chain ID:** 0x10
- **Public RPC URL:** `https://coston-api.flare.network/ext/C/rpc`
- **Display Name:** Songbird Coston Testnet
- **Block Explorer Link:** `https://coston-explorer.flare.network`
- **Ticker:** CFLR
- **Ticker Name:** Coston Flare

</TabItem>
</Tabs>

## Installation

<InstallationSnippet />

## Initialize

<InitialisationSnippet />

## Get account

<GetAccountSnippet />

## Get balance

<GetBalanceSnippet />

## Sign a message

<SignMessageSnippet />
