PUBLISH Ping

PUB wss://ws.aevo.xyz

Sends a ping to the server.

REQUEST

id integer
Request ID, an arbitrary integer to link requests with responses. Eg. 1
op string required
Operation code: ping
Example
{
	"id": 1,
	"op": "ping"
}

RESPONSE

id integer
Response ID, an arbitrary integer to link requests with responses. Eg. 1
data.success boolean required
True if ping is successful.
data.timestamp string required
Timestamp in UNIX timestamp in nanoseconds. Eg. 1680249600000000000
Example
{
    "id": 1,
    "data": {
      	"success": true,
        "timestamp": "1673436052887313432"
    }
}