|
3 | 3 | <h1 class="text-5xl font-bold font-foreground">Batch Details</h1> |
4 | 4 | <.card |
5 | 5 | class="px-6 py-5 min-h-fit flex flex-col rounded-3xl" |
6 | | - inner_class="font-semibold inline-flex flex-col text-base gap-y-2 text-muted-foreground [&>span]:text-foreground [&>a]:text-foreground" |
| 6 | + inner_class="font-semibold inline-flex flex-col text-base gap-y-2 text-muted-foreground [&>p]:text-foreground [&>a]:text-foreground" |
7 | 7 | > |
8 | | - Merkle Root Hash: <span class="break-all font-normal"><%= @merkle_root %></span> |
9 | | - Block Hash: <span class="break-all font-normal"><%= @newBatchInfo.block_hash %></span> |
10 | | - Block Number: <.a target="_blank" rel="noopener" href={"https://holesky.etherscan.io/block/#{@newBatchInfo.block_number}"} class="break-all font-normal"><%= @newBatchInfo.block_number %></.a> |
11 | | - Transaction Hash: |
12 | | - <.a target="_blank" rel="noopener" href={"https://holesky.etherscan.io/tx/#{@newBatchInfo.transaction_hash}"} class="break-all font-normal"><%= @newBatchInfo.transaction_hash %></.a> |
13 | | - Aligned Contract Address: <.a target="_blank" rel="noopener" href={"https://holesky.etherscan.io/address/#{@newBatchInfo.address}"} class="break-all font-normal"><%= @newBatchInfo.address %></.a> |
| 8 | + Merkle Root Hash: |
| 9 | + <p class="break-all font-normal"><%= @merkle_root %></p> |
| 10 | + Block Hash: |
| 11 | + <p class="break-all font-normal"><%= @newBatchInfo.block_hash %></p> |
| 12 | + Block Number: |
| 13 | + <.a |
| 14 | + target="_blank" |
| 15 | + rel="noopener" |
| 16 | + href={"https://holesky.etherscan.io/block/#{@newBatchInfo.block_number}"} |
| 17 | + class="break-all font-normal" |
| 18 | + > |
| 19 | + <%= @newBatchInfo.block_number %> |
| 20 | + </.a> |
| 21 | + Batch Submission Transaction Hash: |
| 22 | + <.a |
| 23 | + target="_blank" |
| 24 | + rel="noopener" |
| 25 | + href={"https://holesky.etherscan.io/tx/#{@newBatchInfo.transaction_hash}"} |
| 26 | + class="break-all font-normal" |
| 27 | + > |
| 28 | + <%= @newBatchInfo.transaction_hash %> |
| 29 | + </.a> |
| 30 | + Aligned Contract Address: |
| 31 | + <.a |
| 32 | + target="_blank" |
| 33 | + rel="noopener" |
| 34 | + href={"https://holesky.etherscan.io/address/#{@newBatchInfo.address}"} |
| 35 | + class="break-all font-normal" |
| 36 | + > |
| 37 | + <%= @newBatchInfo.address %> |
| 38 | + </.a> |
| 39 | + Status: <.dynamic_badge class="w-fit" status={@batchWasResponded} /> |
14 | 40 | </.card> |
15 | 41 | <% else %> |
16 | 42 | <div class="flex flex-col space-y-6 justify-center grow relative text-center"> |
|
0 commit comments