We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c9a31da + 4efd4b2 commit 038cd72Copy full SHA for 038cd72
10 files changed
cmd/dora-explorer/main.go
@@ -316,6 +316,11 @@ func startApi(router *mux.Router) {
316
{"/v1/epochs", api.APIEpochsV1, []string{"GET", "OPTIONS"}, 1},
317
{"/v1/epoch/{epoch}", api.ApiEpochV1, []string{"GET", "OPTIONS"}, 1},
318
{"/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},
324
{"/v1/slots", api.APISlotsV1, []string{"GET", "OPTIONS"}, 1},
325
326
// Deposit APIs
0 commit comments