eth_getCode - Mantle

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 code at a given address on the Mantle network.

Parameters

Parameter
Type
Description

address

string

20-byte contract address

blockParameter

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": ["0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE", "latest"],
    "id": "getblock.io"
}'

Response

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

Response Parameters

Field
Type
Description

jsonrpc

string

JSON-RPC protocol version ("2.0")

id

string

Request identifier matching the request

result

string

Contract bytecode (hex), or "0x" if no code

Use Case

The eth_getCode method is essential for:

  • Contract verification

  • Checking if address is a contract

  • Smart contract analysis

  • Security auditing

  • Contract deployment verification

  • Distinguishing EOA from contracts

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid ACCESS-TOKEN

-32602

Invalid params

Invalid address format

Web3 Integration

Last updated

Was this helpful?