@@ -242,33 +242,43 @@ <h3 class="h5 col-md-12 text-center"><b>Showing {{ .Block.BlobsCount }} Blob sid
242242 {{ if gt $executionRequestsCount 0 }}
243243 < div class ="tab-pane fade show active " id ="executionRequests " role ="tabpanel " aria-labelledby ="executionRequests-tab ">
244244 < div class ="card block-card ">
245- < div style =" margin-bottom: -.25rem; " class ="card-body px-0 py-1 ">
245+ < div class ="card-body px-0 py-1 ">
246246 < div class ="row p-1 mx-0 ">
247- < h3 class ="h5 col-md-12 text-center "> < b > Showing {{ $executionRequestsCount }} Execution Requests{{ if .Block.RequestsFromParentPayload }} from the Parent Payload{{ end }}</ b > </ h3 >
247+ < h3 class ="h5 col-md-12 text-center mb-0 "> < b > Showing {{ $executionRequestsCount }} Execution Requests{{ if .Block.RequestsFromParentPayload }} from the Parent Payload{{ end }}</ b > </ h3 >
248248 {{ if .Block.RequestsFromParentPayload }}< p class ="col-md-12 text-center text-muted mb-0 "> < small > These requests were included in the parent block's payload (EIP-7732) and are processed in this block.</ small > </ p > {{ end }}
249249 </ div >
250250 </ div >
251+ {{ if gt .Block.DepositRequestsCount 0 }}
252+ < div class ="exec-request-section border-top ">
253+ < h4 class ="h6 px-3 pt-2 mb-1 "> Deposit Requests < span class ="badge bg-secondary text-white "> {{ .Block.DepositRequestsCount }}</ span > </ h4 >
254+ {{ template "block_deposit_requests" . }}
255+ </ div >
256+ {{ end }}
257+ {{ if gt .Block.WithdrawalRequestsCount 0 }}
258+ < div class ="exec-request-section border-top ">
259+ < h4 class ="h6 px-3 pt-2 mb-1 "> Withdrawal Requests < span class ="badge bg-secondary text-white "> {{ .Block.WithdrawalRequestsCount }}</ span > </ h4 >
260+ {{ template "block_withdrawal_requests" . }}
261+ </ div >
262+ {{ end }}
263+ {{ if gt .Block.ConsolidationRequestsCount 0 }}
264+ < div class ="exec-request-section border-top ">
265+ < h4 class ="h6 px-3 pt-2 mb-1 "> Consolidation Requests < span class ="badge bg-secondary text-white "> {{ .Block.ConsolidationRequestsCount }}</ span > </ h4 >
266+ {{ template "block_consolidation_requests" . }}
267+ </ div >
268+ {{ end }}
269+ {{ if gt .Block.BuilderDepositRequestsCount 0 }}
270+ < div class ="exec-request-section border-top ">
271+ < h4 class ="h6 px-3 pt-2 mb-1 "> Builder Deposits < span class ="badge bg-secondary text-white "> {{ .Block.BuilderDepositRequestsCount }}</ span > </ h4 >
272+ {{ template "block_builder_deposit_requests" . }}
273+ </ div >
274+ {{ end }}
275+ {{ if gt .Block.BuilderExitRequestsCount 0 }}
276+ < div class ="exec-request-section border-top ">
277+ < h4 class ="h6 px-3 pt-2 mb-1 "> Builder Exits < span class ="badge bg-secondary text-white "> {{ .Block.BuilderExitRequestsCount }}</ span > </ h4 >
278+ {{ template "block_builder_exit_requests" . }}
279+ </ div >
280+ {{ end }}
251281 </ div >
252- {{ if gt .Block.DepositRequestsCount 0 }}
253- < h4 class ="h6 px-2 mt-3 mb-1 "> Deposit Requests < span class ="badge bg-secondary text-white "> {{ .Block.DepositRequestsCount }}</ span > </ h4 >
254- {{ template "block_deposit_requests" . }}
255- {{ end }}
256- {{ if gt .Block.WithdrawalRequestsCount 0 }}
257- < h4 class ="h6 px-2 mt-3 mb-1 "> Withdrawal Requests < span class ="badge bg-secondary text-white "> {{ .Block.WithdrawalRequestsCount }}</ span > </ h4 >
258- {{ template "block_withdrawal_requests" . }}
259- {{ end }}
260- {{ if gt .Block.ConsolidationRequestsCount 0 }}
261- < h4 class ="h6 px-2 mt-3 mb-1 "> Consolidation Requests < span class ="badge bg-secondary text-white "> {{ .Block.ConsolidationRequestsCount }}</ span > </ h4 >
262- {{ template "block_consolidation_requests" . }}
263- {{ end }}
264- {{ if gt .Block.BuilderDepositRequestsCount 0 }}
265- < h4 class ="h6 px-2 mt-3 mb-1 "> Builder Deposits < span class ="badge bg-secondary text-white "> {{ .Block.BuilderDepositRequestsCount }}</ span > </ h4 >
266- {{ template "block_builder_deposit_requests" . }}
267- {{ end }}
268- {{ if gt .Block.BuilderExitRequestsCount 0 }}
269- < h4 class ="h6 px-2 mt-3 mb-1 "> Builder Exits < span class ="badge bg-secondary text-white "> {{ .Block.BuilderExitRequestsCount }}</ span > </ h4 >
270- {{ template "block_builder_exit_requests" . }}
271- {{ end }}
272282 </ div >
273283 {{ end }}
274284 {{ if and .Block.ExecutionData .Block.ExecutionData.BlockAccessList }}
@@ -607,5 +617,15 @@ <h5 class="mb-3"><i class="fas fa-project-diagram me-2"></i>Tracoor Traces</h5>
607617 .eip7918-info-btn : hover {
608618 opacity : 0.8 ;
609619 }
620+ .exec-request-section {
621+ padding-bottom : 0.25rem ;
622+ }
623+ .exec-request-section > h4 {
624+ color : var (--bs-secondary-color , # 6c757d );
625+ font-weight : 600 ;
626+ }
627+ .exec-request-section .table {
628+ margin-bottom : 0 ;
629+ }
610630</ style >
611631{{ end }}
0 commit comments