PUB wss://ws.aevo.xyz
Get available channels to subscribe to.
REQUEST
id integer Request ID, an arbitrary integer to link requests with responses. Eg. 1 |
op string required Operation code: status |
Example
{
"id": 1,
"op": "status"
}
RESPONSE
id integer Response ID, an arbitrary integer to link requests with responses. Eg. 1 |
data.account string required Account's Ethereum address.. Eg. 0xE9b3a48d15BE316A8e34FAd53fFDFDddf0C3D24b |
data.subscriptions array of strings required Array of available channels to subscribe to. Eg. orderbook:ETH-27JAN23-1050-P |
Example
{
"id": 1,
"data": {
"account": "0xE9b3a48d15BE316A8e34FAd53fFDFDddf0C3D24b",
"subscriptions": ["orderbook:ETH-27JAN23-1050-P"]
}
}