> ## 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 세부 정보

> Plasma Mainnet에 연결하기 위한 설정 참조.

## 네트워크 매개변수

| 매개변수    | 값                            | 설명                        |
| ------- | ---------------------------- | ------------------------- |
| 네트워크 이름 | `Plasma Mainnet Beta`        | Plasma의 퍼블릭 메인넷 베타 환경.    |
| 공개 RPC  | `https://rpc.plasma.to`      | 공개, 속도 제한이 있는 RPC 엔드포인트.  |
| 체인 ID   | `9745`                       | Plasma Mainnet의 고유 식별자.   |
| 통화 기호   | `XPL`                        | 메인넷 네이티브 토큰 기호.           |
| 블록 시간   | \~1초                         | 블록 사이의 평균 시간.             |
| 합의      | PlasmaBFT (Fast HotStuff 변형) | Proof of Stake 합의 메커니즘.   |
| EVM 호환성 | 완전 지원                        | Ethereum 스마트 계약과 100% 호환. |

## 연결 엔드포인트

공개 HTTPS RPC 엔드포인트는 `https://rpc.plasma.to`에서 제공됩니다.

<Tip>
  HTTPS 및 WebSocket 엔드포인트 모두 [RPC 제공자 파트너](../../plasma-chain/tools/rpc-providers)를 통해 제공됩니다.
</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"}'
```

다음과 같은 출력이 표시되어야 합니다:

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

### 블록 익스플로러

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

## 가스 및 수수료

Plasma Mainnet은 현재 다음 토큰으로 수수료 지불을 지원합니다:

| 토큰                     | 티커    | 상태   |
| ---------------------- | ----- | ---- |
| 네이티브 Plasma Mainnet 토큰 | `XPL` | 운영 중 |

*Plasma는 곧 여러 토큰으로 수수료 지불을 지원할 예정입니다.*

## 개발 리소스

### 문서

| URL                                                | 상태   |
| -------------------------------------------------- | ---- |
| [www.plasma.org/docs](https://www.plasma.org/docs) | 운영 중 |

## 체인 구성 예제

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

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

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

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

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