The Standard Reserve (TSR), an on-chain reserve protocol on Robinhood Chain
The Standard Reserve (TSR), an on-chain reserve protocol on Robinhood Chain. Cumulative STANDARD issuance against its budget, the current issuance rate, and a current-pace projection of when the budget runs out. Fields ending in _raw are 18-decimal integers as strings. Divide by 1e18 to get token amounts.
20000 (raw units)
price
10
calls / 30d
10
unique payers
2026-09-18
updated
Provider
api.onesource.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x52E29e0d2Aa49bfBfC548C0A9F2196F4aa51f3ea",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 3600
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"as_of_block": 63824000,
"assumptions": [
"projected_end_at_current_multiplier holds current_stream_rate_raw (bank_current_stream_rate, tokens/second) fixed from now until the budget is exhausted; a policy multiplier change (see GET /v1/policy/outlook) changes the real stream rate and this projection with it"
],
"basis": "issuance_runway",
"budget_remaining_raw": "850000000000000000000000000",
"chain_id": 4663,
"cumulative_issued_raw": "50000000000000000000000000",
"current_stream_rate_raw": "8101851851851851851",
"issuance_budget_raw": "900000000000000000000000000",
"issuance_end_raw": "1791792000",
"issuance_rate_raw": "700000000000000000000000",
"issuance_streamed_raw": "50000000000000000000000000",
"network": "robinhood",
"projected_end_at_current_multiplier": "2029-10-15T12:00:00Z",
"projected_seconds_remaining_at_current_multiplier": "104932000",
"projection": "current_stream_rate_holds"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"description": "Endpoint-specific response payload",
"properties": {
"as_of_block": {
"type": "integer"
},
"assumptions": {
"items": {
"type": "string"
},
"type": "array"
},
"basis": {
"type": "string"
},
"budget_remaining_raw": {
"type": "string"
},
"chain_id": {
"type": "integer"
},
"cumulative_issued_raw": {
"type": "string"
},
"current_stream_rate_raw": {
"type": "string"
},
"issuance_budget_raw": {
"type": "string"
},
"issuance_end_raw": {
"type": "string"
},
"issuance_rate_raw": {
"type": "string"
},
"issuance_streamed_raw": {
"type": "string"
},
"network": {
"type": "string"
},
"projected_end_at_current_multiplier": {
"type": "string"
},
"projected_seconds_remaining_at_current_multiplier": {
"type": "string"
},
"projection": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.onesource.io/standard/v1/issuance/runway" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.onesource.io/standard/v1/issuance/runway");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.onesource.io/standard/v1/issuance/runway")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/84.json, and this resource appears in /discovery/resources and /discovery/search.