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

# Mainnet-Details

> Konfigurationsreferenz zum Verbinden mit dem Plasma Mainnet.

## Netzwerkparameter

| Parameter          | Wert                               | Beschreibung                                   |
| ------------------ | ---------------------------------- | ---------------------------------------------- |
| Netzwerkname       | `Plasma Mainnet Beta`              | Öffentliche Mainnet-Beta-Umgebung für Plasma.  |
| Öffentliches RPC   | `https://rpc.plasma.to`            | Öffentlicher, rate-limitierter RPC-Endpunkt.   |
| Chain ID           | `9745`                             | Eindeutige Kennung für das Plasma Mainnet.     |
| Währungssymbol     | `XPL`                              | Natives Tokensymbol des Mainnet.               |
| Blockzeit          | \~1 Sekunde                        | Durchschnittliche Zeit zwischen Blöcken.       |
| Konsens            | PlasmaBFT (Fast-HotStuff-Variante) | Proof-of-Stake-Konsensmechanismus.             |
| EVM-Kompatibilität | Vollständig                        | 100 % kompatibel mit Ethereum-Smart-Contracts. |

## Verbindungsendpunkte

Ein öffentlicher HTTPS-RPC-Endpunkt ist unter `https://rpc.plasma.to` verfügbar.

<Tip>
  Sowohl HTTPS- als auch WebSocket-Endpunkte sind über unsere [RPC-Anbieter-Partner](../../plasma-chain/tools/rpc-providers) verfügbar.
</Tip>

```shell theme={null}
curl --location 'https://rpc.plasma.to' --header 'Content-Type: application/json' --data '{"method":"eth_blockNumber","params":[],"id":1,"jsonrpc":"2.0"}'
```

Das sollte etwa Folgendes ausgeben:

```output theme={null}
{"jsonrpc":"2.0","id":1,"result":"0x11180f"}
```

### Block-Explorer

| Dienst   | URL                                              | Status |
| -------- | ------------------------------------------------ | ------ |
| Explorer | [https://plasmascan.to/](https://plasmascan.to/) | Live   |

## Gas & Gebühren

Plasma Mainnet unterstützt derzeit Gebührenzahlungen in:

| Token                        | Ticker | Status |
| ---------------------------- | ------ | ------ |
| Natives Plasma-Mainnet-Token | `XPL`  | Live   |

*Plasma wird bald Gebührenzahlungen in mehreren Tokens unterstützen.*

## Entwicklungsressourcen

### Dokumentation

| URL                                                | Status |
| -------------------------------------------------- | ------ |
| [www.plasma.org/docs](https://www.plasma.org/docs) | Live   |

## Beispiele für die Chain-Konfiguration

### Netzwerkkonfiguration für Browser-Wallets

Fügen Sie das Plasma Mainnet Beta zu Ihrer Browser-Wallet (MetaMask, Trust Wallet, Rabby) mit den folgenden Parametern hinzu:

* **Netzwerkname**: `Plasma Mainnet Beta`
* **RPC-URL**: `https://rpc.plasma.to`
* **Chain ID**: `9745`
* **Währungssymbol**: `XPL`
* **Block-Explorer-URL**:`https://plasmascan.to`

Siehe den Leitfaden [Browser-Wallet-Einrichtung](../asset-management/browser-wallet-setup) für wallet-spezifische Pfade und Screenshots.

### Hardhat

```javascript theme={null}
// hardhat.config.js
module.exports = {
  networks: {
    plasmaMainnet: {
      url: "https://rpc.plasma.to",
      chainId: 9745,
      accounts: [process.env.PRIVATE_KEY]
    }
  }
};
```

### Truffle

```javascript theme={null}
// truffle-config.js
module.exports = {
  networks: {
    plasmaMainnet: {
      provider: () => new HDWalletProvider(MNEMONIC, "https://rpc.plasma.to"),
      network_id: 9745,
      gas: 5500000,
      confirmations: 2,
      timeoutBlocks: 200,
      skipDryRun: true
    }
  }
};
```
