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

# 테스트넷 상세 정보

> Plasma 테스트넷에 연결하기 위한 구성 참조.

## 네트워크 매개변수

| 매개변수    | 값                               | 설명                               |
| ------- | ------------------------------- | -------------------------------- |
| 네트워크 이름 | `Plasma Testnet`                | Plasma의 공개적이고 지속 운영 중인 테스트 네트워크. |
| 공개 RPC  | `https://testnet-rpc.plasma.to` | 공개된 속도 제한이 적용되는 RPC 엔드포인트.       |
| 체인 ID   | `9746`                          | Plasma 테스트넷의 고유 식별자.             |
| 통화 기호   | `XPL`                           | 테스트넷 네이티브 토큰 기호.                 |
| 블록 시간   | 약 1초                            | 블록 간 평균 시간.                      |
| 합의      | PlasmaBFT (Fast HotStuff 변형)    | 지분 증명 합의 메커니즘.                   |
| EVM 호환성 | 완전                              | Ethereum 스마트 컨트랙트와 100% 호환.      |

## 연결 엔드포인트

공개 HTTPS RPC 엔드포인트는 `https://testnet-rpc.plasma.to`에서 사용할 수 있습니다.

<Tip>
  HTTPS와 WebSocket 엔드포인트 모두 [RPC 공급자 파트너](../../plasma-chain/tools/rpc-providers)를 통해 이용할 수 있습니다.
</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"}'
```

다음과 같이 출력됩니다:

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

### 블록 익스플로러

| 서비스   | URL                                                            | 상태   |
| ----- | -------------------------------------------------------------- | ---- |
| 익스플로러 | [https://testnet.plasmascan.to](https://testnet.plasmascan.to) | 운영 중 |

## 가스 및 수수료

Plasma 테스트넷은 다음을 포함한 여러 토큰으로 수수료 지불을 지원합니다:

| 토큰                  | 티커      | 상태   |
| ------------------- | ------- | ---- |
| 네이티브 Plasma 테스트넷 토큰 | `XPL`   | 운영 중 |
| 테스트넷 USD₮0          | `USD₮0` | 개발 중 |

<Tip>
  수수료가 없는 USD₮0 전송은 현재 개발 중이며 곧 테스트에 사용할 수 있습니다.
</Tip>

## 개발 리소스

### 포셋

| 토큰  | URL                                                     | 상태   |
| --- | ------------------------------------------------------- | ---- |
| XPL | [openfaucet.org](https://openfaucet.org/)               | 운영 중 |
| XPL | [QuickNode faucet](https://faucet.quicknode.com/plasma) | 운영 중 |

## 체인 구성 예시

### 브라우저 지갑용 네트워크 구성

다음 매개변수를 사용하여 Plasma 테스트넷을 브라우저 지갑(MetaMask, Trust Wallet, Rabby)에 추가합니다:

* **네트워크 이름**: `Plasma Testnet`
* **RPC URL**: `https://testnet-rpc.plasma.to`
* **체인 ID**: `9746`
* **통화 기호**: `XPL`
* **블록 익스플로러 URL**:`https://testnet.plasmascan.to`

지갑별 경로와 스크린샷은 [브라우저 지갑 설정](../asset-management/browser-wallet-setup) 가이드를 참조하세요.

### 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
    }
  }
};
```
