eth_getcode - Worldchain

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

Returns the code at a specified address on the World Chain network. This is used to check if an address is a smart contract.

Parameters

Parameter
Type
Description

address

string

The address to get the code from (20 bytes)

blockNumber

string

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

Request

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "eth_getCode",
    "params": ["0x1234567890123456789012345678901234567890", "latest"],
    "id": "getblock.io"
}'

Response

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

Response Parameters

Field
Type
Description

result

string

The bytecode at the address, or 0x if no contract exists

Use Case

The eth_getCode method on World Chain is typically used for:

  • Contract verification

  • Address type detection

  • Contract analysis

  • Security auditing

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid ACCESS-TOKEN

Web3 Integration

Last updated

Was this helpful?