# Hummingbot Sterling RFQ Connector

Starter pack for wiring Sterling RFQ into a custom Hummingbot strategy.

## Canonical surfaces

- `GET https://sterlingchain.net/api/v1/rfq/status`
- `GET https://sterlingchain.net/api/v1/rfq/levels`
- `GET https://sterlingchain.net/api/v1/rfq/current-sellable-ticket`
- `GET https://sterlingchain.net/api/v1/rfq/market-tickets.compact`
- `POST https://sterlingchain.net/api/v1/rfq/quote`
- `POST https://sterlingchain.net/rfq-native/modular-claim-take`
- `POST https://sterlingchain.net/rfq-native/settlement/verify-payment`

## Public ladder

`250 / 1000 / 25000 / 250000 / 1000000 / 2500000`

## Integration order

1. Poll the current ticket or compact book.
2. Validate `accepted_child_tranches`.
3. Request a quote for the desired `fill_usd`.
4. Build the atomic claim package from 1492.
5. Hand `transaction_base64` to your signer stack.
6. Submit the final Solana signature back to 1492.

## Files

- `sterling_rfq_connector.py` — minimal HTTP wrapper.
- `requirements.txt` — Python dependency list for the skeleton.
