debug_storageRangeAt RPC Method
Parameters
blockHash
string
REQUIRED
Loading...
txIndex
integer
REQUIRED
Loading...
address
string
REQUIRED
Loading...
startKey
string
REQUIRED
Loading...
limit
integer
REQUIRED
Loading...
Returns
storage
Loading...
hash
object
Loading...
key
Loading...
value
Loading...
nextKey
Loading...
Request
1curl -X POST "https://docs-demo.optimism.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "debug_storageRangeAt",6"params": [7"0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",80,9"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5",10"0x0000000000000000000000000000000000000000000000000000000000000000",11112],13"id": 114}'
1curl -X POST "https://docs-demo.optimism.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "debug_storageRangeAt",6"params": [7"0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",80,9"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5",10"0x0000000000000000000000000000000000000000000000000000000000000000",11112],13"id": 114}'
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.optimism.quiknode.pro/");5const response = await provider.send("debug_storageRangeAt", [6"0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",70,8"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5",9"0x0000000000000000000000000000000000000000000000000000000000000000",10111]);12console.log(response);13}1415main();
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.optimism.quiknode.pro/");5const response = await provider.send("debug_storageRangeAt", [6"0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",70,8"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5",9"0x0000000000000000000000000000000000000000000000000000000000000000",10111]);12console.log(response);13}1415main();
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.optimism.quiknode.pro/'))3response = w3.provider.make_request("debug_storageRangeAt", ["0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",0,"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5","0x0000000000000000000000000000000000000000000000000000000000000000",1])4print(response)
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.optimism.quiknode.pro/'))3response = w3.provider.make_request("debug_storageRangeAt", ["0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",0,"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5","0x0000000000000000000000000000000000000000000000000000000000000000",1])4print(response)
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.optimism.quiknode.pro/')6})78const result = await client.request({9method: 'debug_storageRangeAt',10params: [11"0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",120,13"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5",14"0x0000000000000000000000000000000000000000000000000000000000000000",15116]17})1819console.log(result)20}2122main()
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.optimism.quiknode.pro/')6})78const result = await client.request({9method: 'debug_storageRangeAt',10params: [11"0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",120,13"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5",14"0x0000000000000000000000000000000000000000000000000000000000000000",15116]17})1819console.log(result)20}2122main()
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.optimism.quiknode.pro/",5})67core.client8.request({9method: 'debug_storageRangeAt',10params: ["0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",0,"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5","0x0000000000000000000000000000000000000000000000000000000000000000",1]11})12.then(res => console.log(res))
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.optimism.quiknode.pro/",5})67core.client8.request({9method: 'debug_storageRangeAt',10params: ["0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",0,"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5","0x0000000000000000000000000000000000000000000000000000000000000000",1]11})12.then(res => console.log(res))
1const body = {2jsonrpc: '2.0',3method: 'debug_storageRangeAt',4params: ["0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",0,"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5","0x0000000000000000000000000000000000000000000000000000000000000000",1],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.optimism.quiknode.pro/', {10method: 'POST',11headers: {'Content-Type': 'application/json'},12body: JSON.stringify(body)13})14const data = await response.json()15console.log(data)16}1718main()
1const body = {2jsonrpc: '2.0',3method: 'debug_storageRangeAt',4params: ["0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",0,"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5","0x0000000000000000000000000000000000000000000000000000000000000000",1],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.optimism.quiknode.pro/', {10method: 'POST',11headers: {'Content-Type': 'application/json'},12body: JSON.stringify(body)13})14const data = await response.json()15console.log(data)16}1718main()
1import requests2import json34url = "https://docs-demo.optimism.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "debug_storageRangeAt",9"params": [10"0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",110,12"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5",13"0x0000000000000000000000000000000000000000000000000000000000000000",14115],16"id": 117})18headers = {19'Content-Type': 'application/json'20}2122response = requests.request("POST", url, headers=headers, data=payload)2324print(response.text)
1import requests2import json34url = "https://docs-demo.optimism.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "debug_storageRangeAt",9"params": [10"0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",110,12"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5",13"0x0000000000000000000000000000000000000000000000000000000000000000",14115],16"id": 117})18headers = {19'Content-Type': 'application/json'20}2122response = requests.request("POST", url, headers=headers, data=payload)2324print(response.text)
1require "uri"2require "json"3require "net/http"45uri = URI("https://docs-demo.optimism.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "debug_storageRangeAt",11params: ["0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",0,"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5","0x0000000000000000000000000000000000000000000000000000000000000000",1]12}1314request = Net::HTTP::Post.new(uri)15request["Content-Type"] = "application/json"16request.body = JSON.generate(payload)1718response = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|19http.request(request)20end2122puts response.body
1require "uri"2require "json"3require "net/http"45uri = URI("https://docs-demo.optimism.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "debug_storageRangeAt",11params: ["0x76f64c40d6493cf00426be2eecdaf3f968768619bfb21ce6c57921be497ab3f7",0,"0xdafea492d9c6733ae3d56b7ed1adb60692c98bc5","0x0000000000000000000000000000000000000000000000000000000000000000",1]12}1314request = Net::HTTP::Post.new(uri)15request["Content-Type"] = "application/json"16request.body = JSON.generate(payload)1718response = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|19http.request(request)20end2122puts response.body
Response
1{2"jsonrpc": "2.0",3"id": 1,4"result": {5"storage": {6"0x52df0bdf5a5f92d8037cf11e50f13d8017aefc99d20a73c826416df79570d481": {7"key": "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",8"value": "0x0000000000000000000000004200000000000000000000000000000000000018"9}10},11"nextKey": "0x75b20eef8615de99c108b05f0dbda081c91897128caa336d75dffb97c4132b4d"12}13}
1{2"jsonrpc": "2.0",3"id": 1,4"result": {5"storage": {6"0x52df0bdf5a5f92d8037cf11e50f13d8017aefc99d20a73c826416df79570d481": {7"key": "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",8"value": "0x0000000000000000000000004200000000000000000000000000000000000018"9}10},11"nextKey": "0x75b20eef8615de99c108b05f0dbda081c91897128caa336d75dffb97c4132b4d"12}13}
Don't have an account yet?
Create your Quicknode endpoint in seconds and start building
Get started for free