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

# Testnet-Details

> Konfigurationsreferenz zum Verbinden mit dem Plasma Testnet.

## Netzwerkparameter

| Parameter          | Wert                               | Beschreibung                                   |
| ------------------ | ---------------------------------- | ---------------------------------------------- |
| Netzwerkname       | `Plasma Testnet`                   | Öffentliches, laufendes Testnetz für Plasma.   |
| Öffentliches RPC   | `https://testnet-rpc.plasma.to`    | Öffentlicher, rate-limitierter RPC-Endpunkt.   |
| Chain ID           | `9746`                             | Eindeutige Kennung für das Plasma Testnet.     |
| Währungssymbol     | `XPL`                              | Natives Tokensymbol des Testnet.               |
| 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://testnet-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://testnet-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":"0x9f61b"}
```

### Block-Explorer

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

## Gas & Gebühren

Plasma Testnet unterstützt Gebührenzahlungen in mehreren Tokens, einschließlich:

| Token                        | Ticker  | Status         |
| ---------------------------- | ------- | -------------- |
| Natives Plasma-Testnet-Token | `XPL`   | Live           |
| Testnet-USD₮0                | `USD₮0` | In Entwicklung |

<Tip>
  Gebührenfreie USD₮0-Transfers sind derzeit in Entwicklung und werden bald zum Testen verfügbar sein.
</Tip>

## Entwicklungsressourcen

### Faucets

| Token | URL                                                     | Status |
| ----- | ------------------------------------------------------- | ------ |
| XPL   | [openfaucet.org](https://openfaucet.org/)               | Live   |
| XPL   | [QuickNode-Faucet](https://faucet.quicknode.com/plasma) | Live   |

## Beispiele für die Chain-Konfiguration

### Netzwerkkonfiguration für Browser-Wallets

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

* **Netzwerkname**: `Plasma Testnet`
* **RPC-URL**: `https://testnet-rpc.plasma.to`
* **Chain ID**: `9746`
* **Währungssymbol**: `XPL`
* **Block-Explorer-URL**:`https://testnet.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: {
    plasmaTestnet: {
      url: "https://testnet-rpc.plasma.to",
      chainId: 9746,
      accounts: [process.env.PRIVATE_KEY]
    }
  }
};
```

### Truffle

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