eth_getStorageAt RPC 方法
参数
地址
字符串
必填
正在加载...
职位
字符串
必填
正在加载...
blockNumber
字符串
必填
正在加载...
退货
结果
字符串
正在加载...
请求
1curl -X POST "mainnet" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "eth_getStorageAt",6"params": [7"0xE592427A0AEce92De3Edee1F18E0157C05861564",8"0x0",9“最新”10],11"id": 112}'
1curl -X POST "mainnet" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "eth_getStorageAt",6"params": [7"0xE592427A0AEce92De3Edee1F18E0157C05861564",8"0x0",9“最新”10],11"id": 112}'
1import { ethers } from "ethers";23async 函数 main() {4const provider = new ethers.JsonRpcProvider(“mainnet”);5const 响应 = await provider.send("eth_getStorageAt", [6"0xE592427A0AEce92De3Edee1F18E0157C05861564",7"0x0",8“最新”9]);10控制台.日志(响应);11}1213主();
1import { ethers } from "ethers";23async 函数 main() {4const provider = new ethers.JsonRpcProvider(“mainnet”);5const 响应 = await provider.send("eth_getStorageAt", [6"0xE592427A0AEce92De3Edee1F18E0157C05861564",7"0x0",8“最新”9]);10控制台.日志(响应);11}1213主();
1来源 web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('mainnet'))3回复 = w3.提供商.make_request("eth_getStorageAt", ["0xE592427A0AEce92De3Edee1F18E0157C05861564","0x0","latest"])4打印(响应)
1来源 web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('mainnet'))3回复 = w3.提供商.make_request("eth_getStorageAt", ["0xE592427A0AEce92De3Edee1F18E0157C05861564","0x0","latest"])4打印(响应)
1import { createPublicClient, http } 来自 'viem'23async 函数 main() {4const 客户端 = createPublicClient({5运输: http('mainnet')6})78const 结果 = await client.request({9方法: 'eth_getStorageAt',10参数: [11"0xE592427A0AEce92De3Edee1F18E0157C05861564",12"0x0",13“最新”14]15})1617控制台.日志(结果)18}1920主()
1import { createPublicClient, http } 来自 'viem'23async 函数 main() {4const 客户端 = createPublicClient({5运输: http('mainnet')6})78const 结果 = await client.request({9方法: 'eth_getStorageAt',10参数: [11"0xE592427A0AEce92De3Edee1F18E0157C05861564",12"0x0",13“最新”14]15})1617控制台.日志(结果)18}1920主()
1import { QuicknodeSdk } from '@quicknode/sdk'23const qn = new QuicknodeSdk({})45const result = await qn.rpc.call(6'eth_getStorageAt',7[8"0xE592427A0AEce92De3Edee1F18E0157C05861564",9"0x0",10“最新”11],12undefined,13'https://docs-demo.peaq-mainnet.quiknode.pro/'14)1516console.log(result)
1import { QuicknodeSdk } from '@quicknode/sdk'23const qn = new QuicknodeSdk({})45const result = await qn.rpc.call(6'eth_getStorageAt',7[8"0xE592427A0AEce92De3Edee1F18E0157C05861564",9"0x0",10“最新”11],12undefined,13'https://docs-demo.peaq-mainnet.quiknode.pro/'14)1516console.log(result)
1import asyncio2from quicknode_sdk import QuicknodeSdk, SdkFullConfig34async def main():5qn = QuicknodeSdk(SdkFullConfig(api_key=None))6result = await qn.rpc.call(7"eth_getStorageAt",8[9"0xE592427A0AEce92De3Edee1F18E0157C05861564",10"0x0",11“最新”12],13endpoint_url="https://docs-demo.peaq-mainnet.quiknode.pro/",14)15print(result)1617asyncio.run(main())
1import asyncio2from quicknode_sdk import QuicknodeSdk, SdkFullConfig34async def main():5qn = QuicknodeSdk(SdkFullConfig(api_key=None))6result = await qn.rpc.call(7"eth_getStorageAt",8[9"0xE592427A0AEce92De3Edee1F18E0157C05861564",10"0x0",11“最新”12],13endpoint_url="https://docs-demo.peaq-mainnet.quiknode.pro/",14)15print(result)1617asyncio.run(main())
1require "quicknode_sdk"23qn = QuicknodeSdk::SDK.from_config(api_key: nil)45result = qn.rpc.call(6方法: "eth_getStorageAt",7params: [8"0xE592427A0AEce92De3Edee1F18E0157C05861564",9"0x0",10“最新”11],12endpoint_url: "https://docs-demo.peaq-mainnet.quiknode.pro/"13)1415puts result
1require "quicknode_sdk"23qn = QuicknodeSdk::SDK.from_config(api_key: nil)45result = qn.rpc.call(6方法: "eth_getStorageAt",7params: [8"0xE592427A0AEce92De3Edee1F18E0157C05861564",9"0x0",10“最新”11],12endpoint_url: "https://docs-demo.peaq-mainnet.quiknode.pro/"13)1415puts result
1use quicknode_sdk::{QuicknodeSdk, SdkFullConfig};23#[tokio::main]4async fn main() -> Result<(), Box<dyn std::error::Error>> {5let qn = QuicknodeSdk::new(&SdkFullConfig::keyless())?;6let result = qn7.rpc8.call(9"eth_getStorageAt",10Some(serde_json::json!([11"0xE592427A0AEce92De3Edee1F18E0157C05861564",12"0x0",13“最新”14])),15None,16Some("https://docs-demo.peaq-mainnet.quiknode.pro/".into()),17)18.await?;1920println!("{result}");21好的(())22}
1use quicknode_sdk::{QuicknodeSdk, SdkFullConfig};23#[tokio::main]4async fn main() -> Result<(), Box<dyn std::error::Error>> {5let qn = QuicknodeSdk::new(&SdkFullConfig::keyless())?;6let result = qn7.rpc8.call(9"eth_getStorageAt",10Some(serde_json::json!([11"0xE592427A0AEce92De3Edee1F18E0157C05861564",12"0x0",13“最新”14])),15None,16Some("https://docs-demo.peaq-mainnet.quiknode.pro/".into()),17)18.await?;1920println!("{result}");21好的(())22}
1const body = {2jsonrpc: '2.0',3方法: 'eth_getStorageAt',4参数: ["0xE592427A0AEce92De3Edee1F18E0157C05861564","0x0","latest"],5id: 16}78async 函数 main() {9const response = await fetch('https://docs-demo.peaq-mainnet.quiknode.pro/', {10方法: 'POST',11headers: {'Content-Type': 'application/json'},12正文: JSON.stringify(body)13})14const 数据 = await 响应.json()15控制台.日志(数据)16}1718主()
1const body = {2jsonrpc: '2.0',3方法: 'eth_getStorageAt',4参数: ["0xE592427A0AEce92De3Edee1F18E0157C05861564","0x0","latest"],5id: 16}78async 函数 main() {9const response = await fetch('https://docs-demo.peaq-mainnet.quiknode.pro/', {10方法: 'POST',11headers: {'Content-Type': 'application/json'},12正文: JSON.stringify(body)13})14const 数据 = await 响应.json()15控制台.日志(数据)16}1718主()
1导入 请求2导入 json34url = "mainnet"56有效载荷 = json.dumps({7"jsonrpc": "2.0",8“方法”: "eth_getStorageAt",9“params”: [10"0xE592427A0AEce92De3Edee1F18E0157C05861564",11"0x0",12“最新”13],14"id": 115})16标题 = {17“Content-Type”: 'application/json'18}1920回复 = 请求.请求("POST", url, headers=headers, 数据=有效载荷)2122打印(响应.text)
1导入 请求2导入 json34url = "mainnet"56有效载荷 = json.dumps({7"jsonrpc": "2.0",8“方法”: "eth_getStorageAt",9“params”: [10"0xE592427A0AEce92De3Edee1F18E0157C05861564",11"0x0",12“最新”13],14"id": 115})16标题 = {17“Content-Type”: 'application/json'18}1920回复 = 请求.请求("POST", url, headers=headers, 数据=有效载荷)2122打印(响应.text)
1require "uri"2require "json"3require "net/http"45uri = URI(“mainnet”)67有效载荷 = {8jsonrpc: "2.0",9id: 1,10方法: "eth_getStorageAt",11参数: ["0xE592427A0AEce92De3Edee1F18E0157C05861564","0x0","latest"]12}1314请求 = Net::HTTP::POST.new(URI)15请求["Content-Type"] = "application/json"16请求.请求正文 = JSON.生成(有效载荷)1718回复 = 净::HTTP.开始(uri.主机, uri.端口, use_ssl: true) 执行 |http|19http.请求(请求)20结束2122返回响应。正文
1require "uri"2require "json"3require "net/http"45uri = URI(“mainnet”)67有效载荷 = {8jsonrpc: "2.0",9id: 1,10方法: "eth_getStorageAt",11参数: ["0xE592427A0AEce92De3Edee1F18E0157C05861564","0x0","latest"]12}1314请求 = Net::HTTP::POST.new(URI)15请求["Content-Type"] = "application/json"16请求.请求正文 = JSON.生成(有效载荷)1718回复 = 净::HTTP.开始(uri.主机, uri.端口, use_ssl: true) 执行 |http|19http.请求(请求)20结束2122返回响应。正文
回复
1{2"jsonrpc": "2.0",3“结果”: "0x0000000000000000000000000000000000000000000000000000000000000000",4"id": 15}
1{2"jsonrpc": "2.0",3“结果”: "0x0000000000000000000000000000000000000000000000000000000000000000",4"id": 15}