eth_unsubscribe
Subscriptions are cancelled with a regular RPC call with eth_unsubscribe as method and the subscription id as first parameter. It returns a bool indicating if the subscription was cancelled successful.
REQUEST PARAMS
SUBSCRIPTION ID
[required]
EXAMPLE
>wscat -c wss://eth-mainnet.paralinker.com/wss/v1/YOUR-PROJECT-ID
>{"jsonrpc":"2.0", "id": 1, "method": "eth_unsubscribe", "params": ["0x9cef478923ff08bf67fde6c64013158d"]}
RESPONSE
RESULT FIELDS
UNSUBSCRIBED FLAG
- true if the subscription was cancelled successful.
BODY
{
"id": 1,
"jsonrpc": "2.0",
"result": true
}
Last updated