starknet_getClassHashAt - Get the contract...
Get the contract class hash in the given block for the contract deployed at the given address
Get the contract class hash in the given block for the contract deployed at the given address
Request Parameters
Block reference ("latest", "l1_accepted", block hash, or block number)
Contract address
Response Body
The class hash of the given contract Class hash (felt252)
Errors
| Code | Message |
|---|---|
| 24 | Block not found |
| 20 | Contract not found |
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_getClassHashAt",
"params": [
"latest",
"0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"
],
"id": 1
}'