starknet_getEvents - Returns all events mat...
Returns all events matching the given filter
Returns all events matching the given filter
Returns all event objects matching the conditions in the provided filter
Request Parameters
Event filter with `from_block`, `to_block`, `address`, `keys`, and `chunk_size`
Response Body
All the event objects matching the filter Events chunk with matching events and continuation token
Errors
| Code | Message |
|---|---|
| 31 | Requested page size is too big |
| 33 | The supplied continuation token is invalid or unknown |
| 24 | Block not found |
| 34 | Too many keys provided in a filter |
Examples
curl -X POST https://api-starknet-mainnet.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "starknet_getEvents",
"params": [
{
"chunk_size": 1,
"from_block": "latest",
"to_block": "latest",
"address": "0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7",
"keys": [
[
"0x1"
]
]
}
],
"id": 1
}'starknet_getClassHashAt - Get the contract...
Get the contract class hash in the given block for the contract deployed at the given address
starknet_getMessagesStatus - Given an l1 tx...
Given an l1 tx hash, returns the associated l1_handler tx hashes and statuses for all L1 -> L2 messages sent by the l1 transaction, ordered by the l1 tx sending order