> ## Documentation Index
> Fetch the complete documentation index at: https://docs.magic.link/llms.txt
> Use this file to discover all available pages before exploring further.

# Flare

## Overview

[Flare](https://flare.network/) is a Layer 1 blockchain with native data acquisition protocols, providing developers with decentralized access to high-integrity data from other blockchains without relying on third party oracles. Users can effortlessly create wallets and interact with Flare using the Magic SDK.

**As Flare is EVM compatible**, you can follow the [Ethereum](/embedded-wallets/blockchains/ethereum/javascript) documentation to send your first transaction and utilize all other features.

## Configure Flare

<CodeGroup>
  ```js Testnet icon="square-js" theme={null}
  const FlareOptions = {
    rpcUrl: 'https://coston-api.flare.network/ext/bc/C/rpc',
    chainId: 16,
  };

  // Setting network to point to Coston Testnet
  const magic = new Magic('YOUR_PUBLISHABLE_API_KEY', { network: FlareOptions });
  ```

  ```js Mainnet icon="square-js" theme={null}
  const FlareOptions = {
    rpcUrl: 'https://flare-api.flare.network/ext/bc/C/rpc',
    chainId: 14,
  };

  // Setting network to point to Flare
  const magic = new Magic('YOUR_PUBLISHABLE_API_KEY', { network: FlareOptions });
  ```
</CodeGroup>

## Compatibility

* All `Auth`, `User` and most `Wallet` module methods\*
* All EVM Provider functionality to respond to supported [RPC methods](/embedded-wallets/sdk/client-side/javascript#evm-rpc-methods)

*\*Some features are not yet compatible such as NFT Viewer and Fiat On-ramps.*

*Need a feature or see a problem?* File an issue on our [github repo](https://github.com/magiclabs/magic-js).

## Resources & Tools

* Documentation: [https://docs.flare.network/](https://docs.flare.network/)
* Block Explorer:
  * [https://mainnet.flarescan.com/](https://mainnet.flarescan.com/) (Mainnet)
  * [https://coston-explorer.flare.network/](https://coston-explorer.flare.network/) (Testnet)
* Testnet Faucet: [https://faucet.flare.network/coston](https://faucet.flare.network/coston)
