Ethereum Classic Quickstart

이더리움 클래식(Ethereum Classic)은 이더리움 네크워크에서 분기되어 독립적으로 운영되는 블록체인으로, 데이터의 불변성과 자율성을 중시합니다. EVM(Ethereum Virtual Machine) 기반의 스마트 컨트랙트 환경을 제공하며, 작업 증명(Proof of Work, PoW) 합의를 통해 네트워크의 안정성과 보안을 유지합니다. 높은 EVM 호환성을 바탕으로, 기존 이더리움 생태계의 도구와 애플리케이션을 그대로 활용할 수 있습니다.

↗ 공식사이트: Ethereum Classic Foundation

↗ Explorer: Ethereum Classic Scan


Feature

Mainnet Support

Testnet Support

Elastic Node

Dedicated Node

Web3 Data API

Webhook

Stream

Datasquare


Web3 Data API

  • Blockchain API

  • Native API

  • Token API

  • NFT API

  • Statistics API

  • Example

    • Request (Node.js)

      const axios = require('axios');
      let data = JSON.stringify({
        "accountAddress": "0x9872F9cFD51dD9f5CF45a54F96a16eeE238A056a"
      });
      
      let config = {
        method: 'post',
        maxBodyLength: Infinity,
        url: 'https://web3.nodit.io/v1/ethereumclassic/mainnet/native/getNativeBalanceByAccount',
        headers: { 
          'Content-Type': 'application/json', 
          'X-API-KEY': '{{API-KEY}}'
        },
        data : data
      };
      
      axios.request(config)
      .then((response) => {
        console.log(JSON.stringify(response.data));
      })
      .catch((error) => {
        console.log(error);
      });
      
    • Response

      {
          "ownerAddress": "0x9872F9cFD51dD9f5CF45a54F96a16eeE238A056a",
          "balance": "7164781835439389444"
      }