자주 쓰는 명령어
카이아 디렉터리(일반적으로 "카이아 DIR") 찾는 방법
카이아 디렉터리는 kcn
또는 kpn
설정에서 확인할 수 있습니다. 설정 파일은 /etc/kcnd/conf
또는 /etc/kpnd/conf
아래에 있습니다.
cat /etc/kcnd/conf/kcnd.conf (or /etc/kpnd/conf/kpnd.conf)# Find DATA_DIR and LOG_DIR path as below exampleDATA_DIR=/var/kcnd/data/LOG_DIR=/var/kcnd/logs/
카이아 콘솔에 접속하는 방법
카이아 API에 연결하여 노드 및 네트워크 상태를 확인합니다.
# execute the command below with the Kaia DATA_DIR Path$ sudo kcn attach --datadir <DATA_DIR>>
유용한 API
# Check current block Number > kaia.blockNumber# Check my kni address > admin.nodeInfo# Check my dode address > governance.nodeAddress# Check other connected nodes > admin.peers# Add or remove nodes > admin.addPeer("kni") > admin.removePeer("kni")
API 결과만 가져오기
# execute the command below with the Kaia DATA_DIR Path$ sudo kcn attach --exec <statement> --datadir <DATA_DIR>e.g.# Check my dode address$ sudo kcn attach --exec "governance.nodeAddress" --datadir /path/to/datadir"0xda23978e6e354fbf25dd87aaf1d1bb4ed112753f"