Cronos (CRO) 노드 가이드
Cronos는 EVM 호환 Cosmos SDK 체인입니다. cronosd 바이너리로 Full Node·Validator를 설치·운영할 수 있으며, State Sync·Quicksync 등으로 빠른 동기화가 가능합니다.
공식 문서: Cronos Docs - Running Nodes · Cronos Mainnet.
노드 종류
| 역할 | 설명 |
|---|---|
| Full Node | 블록체인 동기화, RPC·피어 제공. pruning 설정에 따라 저장 용량·역사 조회 가능 여부가 달라짐. |
| Validator | 스테이킹·블록 검증. cronosd tx staking create-validator로 생성. |
| Archive Node | pruning=nothing으로 전체 이력 보관. 저장 공간·리소스 많이 필요. |
하드웨어 요구사항 (공식 기준)
| 노드 유형 | 스토리지 | RAM | CPU |
|---|---|---|---|
| Archive (pruning=nothing) | ~6TB (LevelDB) / ~4.5TB (RocksDB) | 32GB (LevelDB) / 64GB (RocksDB) | 4코어+ |
| Full (pruning=default) | ~1TB | 32GB / 64GB (RocksDB) | 4코어+ |
| Pruned / State Sync | ~50GB (state-sync 시) | 32GB / 64GB (RocksDB) | 4코어+ |
- 권장: Ubuntu 20.04/22.04, 8코어 CPU, 32GB RAM, 2TB SSD (프로덕션 Full Node 기준).
- State Sync 사용 시 동기화 중 일시적으로 RAM 사용량이 올라갈 수 있음.
지원 환경
- OS: Linux (x86_64), macOS, Windows. 공식은 Linux 중심.
- 바이너리: crypto-org-chain/cronos Releases. 버전은 네트워크 업그레이드에 맞춰 확인 (예: Huygen 이후 v0.7.0+, 최신은 v1.x).
- Chain ID: Mainnet
cronosmainnet_25-1(공식 문서 기준).
설치 방법
Localhost 설치 (권장)
바이너리 다운로드 → cronosd init → genesis·config → cronosd start 또는 systemd 서비스.
시작하기: localhost/README.md
Docker
참고: docker/README.md
폴더 구조
cronos/
├── README.md # 이 파일
├── localhost/
│ ├── README.md
│ ├── installation.md # 바이너리·초기화·genesis·config·State Sync·systemd
│ ├── configuration.md # pruning·seeds·Validator
│ ├── troubleshooting.md
│ └── updates/
│ └── README.md
└── docker/
└── README.md
네트워크·동기화
- Genesis: cronos-mainnet genesis.json. 다운로드 후 sha256sum 검증 권장.
- Seeds: 공식 문서·cronos-mainnet 참고.
- 동기화 방식: 스크래치 동기화, State Sync, Quicksync 등.
주의사항
- 네트워크 업그레이드(예: Huygen) 시 cronosd 버전 업그레이드 필요. 업그레이드 가이드 참고.
- Validator는 스테이킹·키 관리·sentry 구성 등 Validator 가이드 및 Production 배포 노트 참고.
- Explorer: cronoscan.com.
참고 링크
- Cronos Mainnet (Full Node)
- State Sync
- Validator 가이드 (Cronos POS)
- Upgrade 가이드 (예: v1.5 Smarturn)
- crypto-org-chain/cronos (GitHub) — 소스,
make build - crypto-org-chain/cronos-docs (GitHub) — 문서, systemd 스크립트
- crypto-org-chain/cronos-mainnet — genesis, seeds
- Cronos Masternode Setup