-
Notifications
You must be signed in to change notification settings - Fork 121
Closed
Description
Hello team,
We are currently working on a new feature in the explorer to display a list of STX blocks associated with a specific BTC block. For this, we need a new endpoint that accepts either the BTC block hash or height and returns a paginated list of STX blocks.
Suggested interface:
GET /blocks/by_burn_block_hash/{burn_block_hash}?limit={limit}&offset={offset}
Response:
{
limit: number;
offset: number;
total: number;
results: Array<Block>;
}
Metadata
Metadata
Assignees
Type
Projects
Status
✅ Done