admin_peers
Base / https://triport.io/r/{key}/rpc/base
Minimum tier: Reference only
Last updated:
No accepted semantic runtime observation for this exact method/profile. See source_refs/provider_observations; union membership is not support. Availability is the frozen baseline, not deployed readiness. documented is the contract floor; evidence_kind retains unknown/source_summary.
Parameters
This method takes no parameters.
Returns
| Field | Type |
|---|---|
| unavailable | object |
Examples
curl https://triport.io/r/{key}/rpc/base \
-X POST -H 'Content-Type: application/json' \
-H 'Authorization: Bearer <api-key>' \
-d '{"jsonrpc":"2.0","id":1,"method":"admin_peers","params":[]}'const res = await fetch("https://triport.io/r/{key}/rpc/base", {
method: "POST",
headers: { "Content-Type": "application/json", Authorization: "Bearer <api-key>" },
body: JSON.stringify({
"jsonrpc": "2.0",
"id": 1,
"method": "admin_peers",
"params": []
}),
});
const data = await res.json();import requests
resp = requests.post(
"https://triport.io/r/{key}/rpc/base",
headers={"Authorization": "Bearer <api-key>"},
json={"jsonrpc":"2.0","id":1,"method":"admin_peers","params":[]},
)
print(resp.json())Usage
- Transport: HTTP (JSON-RPC).
- Chain: Base.
- Clusters: mainnet.
- Credit cost: 1 per call.
FAQ
- What does admin_peers do?
- scaffold — described by api.2.2/2.3/2.4
- How many credits does admin_peers cost?
- admin_peers costs 1 credit(s) per call on Triport by default.
- Is admin_peers available over WebSocket?
- admin_peers is an HTTP JSON-RPC method.