For the complete documentation index, see llms.txt. This page is also available as Markdown.

eth_getCode - Scroll

Example code for the eth_getCode JSON-RPC method. Complete guide on how to use eth_getCode JSON-RPC in GetBlock Web3 documentation.

This method returns the deployed bytecode at an address at a given block, or 0x for an account with no code. It is used to distinguish contracts from externally owned accounts.

Parameters

Parameter
Type
Required
Description

address

string

Yes

20-byte address to query

blockParameter

string

Yes

Block number in hex, or "latest", "earliest", "pending"

Request

curl --location --request POST 'https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "eth_getCode",
    "params": ["0x4200000000000000000000000000000000000006", "latest"],
    "id": "getblock.io"
}'
example.js
const axios = require('axios');

const response = await axios.post('https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/', {
    jsonrpc: '2.0',
    method: 'eth_getCode',
    params: ['0x4200000000000000000000000000000000000006', 'latest'],
    id: 'getblock.io'
}, {
    headers: { 'Content-Type': 'application/json' }
});

console.log(response.data.result);
example.py
import requests

response = requests.post(
    'https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/',
    headers={'Content-Type': 'application/json'},
    json={
        'jsonrpc': '2.0',
        'method': 'eth_getCode',
        'params': ['0x4200000000000000000000000000000000000006', 'latest'],
        'id': 'getblock.io'
    }
)

print(response.json())

Response

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": "0x60806040523480156100..."
}

Response Parameters

Parameter
Type
Description

jsonrpc

string

JSON-RPC protocol version ("2.0")

id

string

Request identifier matching the request

result

string

Hex-encoded deployed bytecode, or 0x if none

Use Cases

  • Contract Detection: Check whether an address holds code before calling it

  • Bytecode Verification: Compare on-chain bytecode against an expected build

  • EIP-7702 Checks: Detect delegated EOAs that temporarily carry code

  • Deployment Confirmation: Confirm a contract deployed by reading non-empty code

Error Handling

Error Code
Message
Description

-32602

Invalid params

Malformed address or block parameter

-32603

Internal error

The node failed to read the account code

Web3 Integration

Last updated

Was this helpful?