API Reference

eth_getStorageAt - Xlayer

Xlayer API - Returns the value from a storage position at a given address, or in other words, returns the state of the contract's storage, which may not be exposed via the contract's methods.

Parameters

  • DATA, 20 Bytes - Address of the storage.
  • QUANTITY - Integer of the position in the storage.
  • QUANTITY|TAG - Integer block number, or the string "latest", "earliest" or "pending", see the default block parameter.

Returns

  • DATA - The value at this storage position.

Example

Request

curl https://xlayer-mainnet.unifra.io/v1/your-api-key \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0", "method": "eth_getStorageAt", "params": ["0x2ef3723bb09c311d035334b11614efadbd0d7a24", "0x0", "latest"], "id": 1}'
URL: https://xlayer-mainnet.unifra.io/v1/your-api-key
RequestType: POST
Body:
{
  "jsonrpc":"2.0",
  "method":"eth_getStorageAt",
  "params":["0x2ef3723bb09c311d035334b11614efadbd0d7a24", "0x0", "latest"],
  "id":1
}

Result

{
	"jsonrpc": "2.0",
	"id": 1,
	"result": "0x000000000000000000000000000000000000000000001e1950b4f071ea54b9fa"
}
Language
Click Try It! to start a request and see the response here!