For the complete documentation index, see llms.txt. This page is also available as Markdown.

setOracleUpdates

Real-time stream of oracle, mark and external perp prices for a DEX, including failed updates

Every live data message includes both routing identifiers with the same value:

{"type": "setOracleUpdates", "channel": "setOracleUpdates"}

Other payload fields are omitted above. Existing clients may continue routing on either field.

setOracleUpdates is a live-only stream. It does not support replay on reconnect, and live messages currently use "cursor": "0".

Subscribe

{
    "type": "subscribe",
    "subscription": {
        "type": "setOracleUpdates",
        "dex": "vntls"
    }
}

Unsubscribe

{
    "type": "unsubscribe",
    "subscription": {
        "type": "setOracleUpdates",
        "dex": "vntls"
    }
}

setOracle update format

Succesful

Failed

Examples

Last updated