Returns an array of all peer connection statuses.
{ }[- {
- "peer": "string",
- "connecting": true,
- "syncing": true,
- "last_handshake": {
- "network_version": 0,
- "chain_id": "string",
- "node_id": "string",
- "key": "string",
- "time": "string",
- "token": "string",
- "sig": "string",
- "p2p_address": "string",
- "last_irreversible_block_num": 0,
- "last_irreversible_block_id": "string",
- "head_num": 0,
- "head_id": "string",
- "os": "string",
- "agent": "string",
- "generation": 0
}
}
]Initiate a connection to a specified peer.
| endpoint required | string the endpoint to connect to expressed as either IP address or URL |
{- "endpoint": "127.0.0.1:4443"
}"string"Initiate disconnection from a specified peer.
| endpoint required | string the endpoint to disconnect from, expressed as either IP address or URL |
{- "endpoint": "127.0.0.1:4443"
}"string"Retrieves the connection status for a specified peer.
| endpoint required | string the endpoint to get the status for, expressed as either IP address or URL |
{- "endpoint": "127.0.0.1:4443"
}{- "peer": "string",
- "connecting": true,
- "syncing": true,
- "last_handshake": {
- "network_version": 0,
- "chain_id": "string",
- "node_id": "string",
- "key": "string",
- "time": "string",
- "token": "string",
- "sig": "string",
- "p2p_address": "string",
- "last_irreversible_block_num": 0,
- "last_irreversible_block_id": "string",
- "head_num": 0,
- "head_id": "string",
- "os": "string",
- "agent": "string",
- "generation": 0
}
}Returns the list of block producer gossip peers. These are peers that have registered as block producers and share their network endpoint information for direct peer-to-peer communication.
Empty object - no parameters required
{ }[- {
- "producer_name": "producer1",
- "server_endpoint": "192.168.1.100:9876",
- "outbound_ip_address": "192.168.1.100",
- "expiration": "2025-02-07T18:50:13.000"
}, - {
- "producer_name": "producer2",
- "server_endpoint": "192.168.1.101:9876",
- "outbound_ip_address": "192.168.1.101",
- "expiration": "2025-02-07T18:50:13.000"
}
]