Skip to content

Commit 38ff857

Browse files
committed
Merge branch 'refs/heads/staging' into 1936-fixethereum_package-update-contracts-to-new-eigenlayer-version
2 parents 0b07940 + 1eac88a commit 38ff857

2 files changed

Lines changed: 4 additions & 19 deletions

File tree

docs/3_guides/7_contract_addresses.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ For additional details, refer to the [official EigenLayer documentation](https:/
3939

4040
| Contract | Address |
4141
|----------------------------|-------------------------------------------------------------------------------------------------------------------------------|
42+
| AlignedProofAggregationService | [0xe84CD4084d8131841CE6DC265361f81F4C59a1d4](https://holesky.etherscan.io/address/0xe84CD4084d8131841CE6DC265361f81F4C59a1d4) |
4243
| AlignedLayerServiceManager | [0x58F280BeBE9B34c9939C3C39e0890C81f163B623](https://holesky.etherscan.io/address/0x58F280BeBE9B34c9939C3C39e0890C81f163B623) |
4344
| BlsApkRegistry | [0xD0A725d82649f9e4155D7A60B638Fe33b3F25e3b](https://holesky.etherscan.io/address/0xD0A725d82649f9e4155D7A60B638Fe33b3F25e3b) |
4445
| IndexRegistry | [0x4A7DE0a9fBBAa4fF0270d31852B363592F68B81F](https://holesky.etherscan.io/address/0x4A7DE0a9fBBAa4fF0270d31852B363592F68B81F) |

explorer/lib/explorer_web/components/agg_proofs_table.ex

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -48,30 +48,14 @@ defmodule ExplorerWeb.AggProofsTable do
4848
<:col :let={proof} label="Aggregator">
4949
<%= case proof.aggregator do %>
5050
<% :sp1 -> %>
51-
<.sp1_badge />
51+
SP1
5252
<% :risc0 -> %>
53-
<.risc0_badge />
53+
RISC0
5454
<% _ -> %>
55-
<span>Unknown</span>
55+
Unknown
5656
<% end %>
5757
</:col>
5858
</.table>
5959
"""
6060
end
61-
62-
defp sp1_badge(assigns) do
63-
~H"""
64-
<div class="rounded-full p-1 px-5 border w-fit" style="border-color: #FE11C5">
65-
<p style="color: #FE11C5">SP1</p>
66-
</div>
67-
"""
68-
end
69-
70-
defp risc0_badge(assigns) do
71-
~H"""
72-
<div class="rounded-full p-1 px-5 w-fit" style="background-color: #FEFF9D">
73-
<p class="text-black">RISC0</p>
74-
</div>
75-
"""
76-
end
7761
end

0 commit comments

Comments
 (0)