/v1/proxy
Resolve proxy implementation/admin/beacon across all standards
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/storageslot-api/v1/proxy" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/storageslot-api/v1/proxy", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/storageslot-api/v1/proxy");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/storageslot-api/v1/proxy",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Resolves the proxy implementation/admin/beacon by reading the standard proxy storage slots (EIP-1967, EIP-1822/UUPS, legacy OpenZeppelin/zeppelinos). is_proxy is false when none are set.",
"admin": null,
"chain": "ethereum",
"slots": {
"eip1967_admin": null,
"eip1967_beacon": null,
"zeppelinos_impl": {
"raw": "0x00000000000000000000000043506849d7c04f9138d1a2050bbf3a0c054402dd",
"role": "implementation",
"address": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd",
"standard": "OpenZeppelin/zeppelinos (legacy)"
},
"eip1822_proxiable": null,
"eip1967_implementation": null
},
"beacon": null,
"source": "public JSON-RPC (publicnode)",
"address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"is_proxy": true,
"implementation": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd",
"implementation_standard": "OpenZeppelin/zeppelinos (legacy)"
},
"meta": {
"timestamp": "2026-06-14T08:04:11.710Z",
"request_id": "f491eac2-364c-4725-8ce8-525a30bc599d"
},
"status": "ok",
"message": "Proxy storage resolved successfully",
"success": true
}