> ## 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.

# Berachain

## Overview

[Berachain](https://www.berachain.com/) is an EVM-compatible L1 blockchain built on-top of the Cosmos-SDK, which uses [Proof-of-Liquidity](https://docs.berachain.com/learn/#proof-of-liquidity-overview) consensus.

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

## Configure Berachain

Ensure you have installed the Magic SDK and have access to your API key, follow the [quickstart](/embedded-wallets/quickstart/overview) to get started.

```js Testnet icon="square-js" theme={null}
// Setting network to point to Berachain Artio testnet
const magic = new Magic("YOUR_PUBLISHABLE_API_KEY", {
  network: {
    rpcUrl: "https://artio.rpc.berachain.com/",
    chainId: 80085,
  },
});
```

## Compatibility

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

*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.berachain.com/](https://docs.berachain.com/)
* Block Explorer:
  * [https://artio.beratrail.io/](https://artio.beratrail.io/) (Testnet)
* Faucets: [https://docs.berachain.com/developers/testnet-faucet](https://docs.berachain.com/developers/testnet-faucet)
