이 페이지는 영어로 된 기계 번역을 사용하므로 오류나 불명확한 언어가 포함될 수 있습니다. 가장 정확한 정보는 영어 원문을 참조하시기 바랍니다. 잦은 업데이트로 인해 일부 콘텐츠는 원래 영어로 되어 있을 수 있습니다. Crowdin에서 이 페이지의 번역을 개선하는 데 동참하여 도움을 주세요. (Crowdin translation page, Contributing guide)
admin_peers
The peers administrative property can be queried for all the information known about the connected remote nodes at the networking granularity. These include general information about the nodes themselves as participants of the devp2p P2P overlay protocol, as well as specialized information added by each of the running application protocols.
JSONRPC: admin_peers
Request
- application/json
Body
params array
Responses
- 200
The information about all connected peers.
- application/json
- Schema
- Example (from schema)
Schema
error
object
result object[]
The information about all connected peers.
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": [
{
"id": "144af69d2bb030c6a2a5ceee7445dc613e200f19358547cffc353d56e6c8a5b4186a6953c028b6afd0ab3c2bfc4c86f24b0bf855d0686b964ec65cefd3deec37",
"name": "Kaia/vvX.X.X/XXXX-XXXX/goX.X.X",
"caps": [
"istanbul/64"
],
"network": {
"localAddress": "10.0.10.1:49355",
"remoteAddress": "10.0.0.1:32323",
"inbound": false,
"trusted": false,
"static": true
},
"protocols": {
"istanbul": {
"version": 64,
"difficulty": 1285901,
"head": "0x2d04ac52df4af08a9a0e15d5939c29decb00031e7b3f6abd05bc0c731f6b5561"
}
}
},
{
"id": "a875620f67f0b12edb97d0ec269e7940f2505b1f62576f39858c37e1d7f956318c3a619239f03f806a79ccaa8e7e9b5def343c24a9fd2e9d715964e0952dd995",
"name": "Kaia/vvX.X.X/XXXX-XXXX/goX.X.X",
"caps": [
"istanbul/64"
],
"networks": [
{
"localAddress": "10.0.10.2:49353",
"remoteAddress": "10.0.0.2:32323",
"inbound": false,
"trusted": false,
"static": true
}
],
"protocols": {
"istanbul": {
"version": 64,
"difficulty": 1285901,
"head": "0x2d04ac52df4af08a9a0e15d5939c29decb00031e7b3f6abd05bc0c731f6b5561"
}
}
},
{
"id": "e18d6d4e0ffac0a51028a8d49a548295ac8ac50d064f3581600799a3ae761a61f0b39c38b4195e163e01f30db616debf61b5b2ddea716bc8fb1c907ce7a1de26",
"name": "Kaia/vvX.X.X/XXXX-XXXX/goX.X.X",
"caps": [
"istanbul/64"
],
"network": {
"localAddress": "10.0.10.3:49354",
"remoteAddress": "10.0.0.3:32323",
"inbound": false,
"trusted": false,
"static": true
},
"protocols": {
"istanbul": {
"version": 64,
"difficulty": 1285900,
"head": "0x2e228a45c7c9b9e6729b6c66b31957d6cb62ce53e32cedf156615a4e8a2e253a"
}
}
}
]
}
- curl
- python
- nodejs
- java
- Curl
curl -X 'POST' \
'https://public-en-kairos.node.kaia.io' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"method": "admin_peers",
"id": 1,
"jsonrpc": "2.0"
}'
- CURL
curl -L 'https://public-en-kairos.node.kaia.io/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"method": "admin_peers",
"id": 1,
"jsonrpc": "2.0",
"params": [
null
]
}'
ResponseClear