eth_unsubscribe
Subscriptions are cancelled with a regular RPC call with eth_unsubscribe as a method and the subscription id as the first parameter. It returns a bool indicating if the subscription was cancelled.
SUBSCRIPTION ID
UNSUBSCRIBED FLAG - true if the subscription was canceled successfully.
// Request
curl https://zetachain-athens-evm.blockpi.network/v1/rpc/your-rpc-key -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_unsubscribe","params":["0x9cef478923ff08bf67fde6c64013158d"],"id":1}'
// Result
{
"jsonrpc": "2.0",
"id": 1,
"result": ture
}
Last modified 3mo ago