Storage

Storage queries the balance of all coins for a single account.

GET//rest.origin.uptick.network/ethermint/evm/v1/storage/{address}/{key}
Path parameters
address*string

/ address is the ethereum hex address to query the storage state for.

key*string

key defines the key of the storage state

Response

A successful response.

Body
valuestring

key defines the storage state value hash associated with the given key.

Request
const response = await fetch('//rest.origin.uptick.network/ethermint/evm/v1/storage/{address}/{key}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "value": "text"
}

Last updated