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

# Soneium

## Overview

[Soneium](https://soneium.org/en/) is an Ethereum layer-2 blockchain developed by Sony Group Corporation and Startale, designed to create an accessible, developer-friendly platform that empowers creators and communities to explore blockchain's potential in entertainment, gaming, finance, and beyond. Users can effortlessly create wallets and interact with Soneium using the Magic SDK.

**As Soneium 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 Soneium

<CodeGroup>
  ```js Testnet icon="square-js" theme={null}
  // Get your Startale API key here - https://portal.scs.startale.com
  const SoneiumOptions = {
    rpcUrl: 'https://soneium-minato.rpc.scs.startale.com?apikey=your-api-key', // Soneium testnet RPC URL
    chainId: 1946, // Soneium chain id
  };

  // Setting network to point to Soneium
  const magic = new Magic('YOUR_PUBLISHABLE_API_KEY', { network: SoneiumOptions });
  ```

  ```js Mainnet icon="square-js" theme={null}
  // Get your Startale API key here - https://portal.scs.startale.com
  const SoneiumOptions = {
    rpcUrl: 'https://soneium.rpc.scs.startale.com?apikey=your-api-key', // Soneium mainnet RPC URL
    chainId: 1868, // Soneium chain id
  };

  // Setting network to point to Soneium
  const magic = new Magic('YOUR_PUBLISHABLE_API_KEY', { network: SoneiumOptions });
  ```
</CodeGroup>

* 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

* Startale Cloud Services: [https://startale.com/en/scs](https://startale.com/en/scs)
* Documentation: [https://docs.soneium.org/docs/](https://docs.soneium.org/docs/)
* Block Explorer: [https://explorer-testnet.soneium.org/](https://explorer-testnet.soneium.org/)
* Testnet Faucet: [https://docs.soneium.org/docs/builders/tools/faucets](https://docs.soneium.org/docs/builders/tools/faucets)
