Skip to main content

Parameters

chainId
string
default:"999999999"
required
Unique identifier for a blockchain network.
id
number
default:1
required
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"eth_getStorageAt"
required
JSON-RPC method name.
params
object
required
Parameters for eth_getStorageAt: [address, position, defaultBlock].Positional parameters for eth_getStorageAt:
  • params[0]: The address.
  • params[1]: Integer of the position in the storage.
  • params[2]: Block identifier. Can be an integer block number or a string tag: “latest”, “earliest”, or “pending”.

Returns

result
string
The value at this storage position. Example: “0x0”.
curl --request POST \
  --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=999999999 \
  --header 'content-type: application/json' \
  --data '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "eth_getStorageAt",
    "params": [
      "0x407d73d8a49eeb85d32cf465507dd71d507100c1",
      "0x0",
      "0x2"
    ]
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x0"
}