Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns filter changes since last poll
eth_newFilter
curl -X POST "https://edge.goldsky.com/standard/evm/1?secret=demo" \ -H "Content-Type: application/json" \ -d '{"jsonrpc": "2.0", "method": "eth_getFilterChanges", "params": ["0x1"], "id": 1}'
const response = await fetch('https://edge.goldsky.com/standard/evm/1?secret=demo', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ "jsonrpc": "2.0", "method": "eth_getFilterChanges", "params": [ "0x1" ], "id": 1 }) }); const { result } = await response.json(); console.log(result);
import requests response = requests.post( 'https://edge.goldsky.com/standard/evm/1?secret=demo', json={ "jsonrpc": "2.0", "method": "eth_getFilterChanges", "params": [ "0x1" ], "id": 1 } ) print(response.json()['result'])
Related topics
Was this page helpful?