Skip to content

Commit 038cd72

Browse files
authored
Merge branch 'master' into bbusa/slot-tab-url-routing
2 parents c9a31da + 4efd4b2 commit 038cd72

10 files changed

Lines changed: 2987 additions & 62 deletions

File tree

cmd/dora-explorer/main.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,11 @@ func startApi(router *mux.Router) {
316316
{"/v1/epochs", api.APIEpochsV1, []string{"GET", "OPTIONS"}, 1},
317317
{"/v1/epoch/{epoch}", api.ApiEpochV1, []string{"GET", "OPTIONS"}, 1},
318318
{"/v1/slot/{slotOrHash}", api.APISlotV1, []string{"GET", "OPTIONS"}, 1},
319+
{"/v1/slot/{slotOrHash}/bids", api.APISlotBidsV1, []string{"GET", "OPTIONS"}, 1},
320+
{"/v1/slot/{slotOrHash}/block_access_list", api.APISlotBlockAccessListV1, []string{"GET", "OPTIONS"}, 2},
321+
{"/v1/slot/{slotOrHash}/ptc_votes", api.APISlotPtcVotesV1, []string{"GET", "OPTIONS"}, 1},
322+
{"/v1/slot/{slotOrHash}/inclusion_lists", api.APISlotInclusionListsV1, []string{"GET", "OPTIONS"}, 1},
323+
{"/v1/slot/{slotOrHash}/payload_header", api.APISlotPayloadHeaderV1, []string{"GET", "OPTIONS"}, 1},
319324
{"/v1/slots", api.APISlotsV1, []string{"GET", "OPTIONS"}, 1},
320325

321326
// Deposit APIs

0 commit comments

Comments
 (0)