Reference/storage.peck.to
storage.peck.to
UHRP file hosting with HTTP 402 payment.
What it is
Content-addressed blob store on GCS (`peck-storage-prod`). `POST /advertise` and `POST /quote` are public; `POST /upload`, `GET /list`, `POST /renew` and `GET /find` gate behind BRC-42 derived-address payment via `@bsv/payment-express-middleware`. A single TX spending to the server-derived address unlocks the upload URL. Hosts images, audio, attachments and any blob you want on UHRP.
When to use it
You need paid, content-addressed, long-lived file hosting that clients can verify by hash.
Clients that wrap it
Most apps talk to this service through one of these packages rather than hitting the HTTP surface directly.
@bsv/payment-express-middleware@bsv/uhrp-url
Deployment
Repo: storage-server · Framework: ts-route-registry · Protocol: UHRP / BRC-42 / HTTP 402
Endpoints
6 routes scanned from source.
| Method | Path | Source |
|---|---|---|
| GET | /find | src/routes/find.ts:82 |
| GET | /list | src/routes/list.ts:90 |
| POST | /advertise | src/routes/advertise.ts:72 |
| POST | /quote | src/routes/quote.ts:92 |
| POST | /renew | src/routes/renew.ts:232 |
| POST | /upload | src/routes/upload.ts:101 |