diff --git a/mithril-explorer/src/components/Artifacts/CardanoTransactionsSnapshotsList/index.js b/mithril-explorer/src/components/Artifacts/CardanoTransactionsSnapshotsList/index.js index 99a4aa1d58c..183dacf8135 100644 --- a/mithril-explorer/src/components/Artifacts/CardanoTransactionsSnapshotsList/index.js +++ b/mithril-explorer/src/components/Artifacts/CardanoTransactionsSnapshotsList/index.js @@ -110,12 +110,9 @@ export default function CardanoTransactionsSnapshotsList(props) { {cardanoTransactionsSnapshot.hash} + Epoch: {cardanoTransactionsSnapshot.epoch} - Epoch: {cardanoTransactionsSnapshot.beacon.epoch} - - - Immutable file number:{" "} - {cardanoTransactionsSnapshot.beacon.immutable_file_number} + Block Number: {cardanoTransactionsSnapshot.block_number} Merkle Root: {cardanoTransactionsSnapshot.merkle_root} diff --git a/mithril-explorer/src/components/CertificateModal/index.js b/mithril-explorer/src/components/CertificateModal/index.js index 4b1666a1deb..e324271d65d 100644 --- a/mithril-explorer/src/components/CertificateModal/index.js +++ b/mithril-explorer/src/components/CertificateModal/index.js @@ -7,6 +7,7 @@ import { selectedAggregator } from "@/store/settingsSlice"; import RawJsonButton from "#/RawJsonButton"; import Stake from "#/Stake"; import ProtocolParameters from "#/ProtocolParameters"; +import SignedEntityType from "#/SignedEntityType"; import SignerTable from "#/SignerTable"; import VerifyCertificateModal from "#/VerifyCertificate/VerifyCertificateModal"; @@ -72,28 +73,7 @@ export default function CertificateModal({

Beacon

- - - - - - - - - - - - - - - -
- Network: - {certificate.beacon.network}
- Epoch: - {certificate.beacon.epoch}
- Immutable File Number: - {certificate.beacon.immutable_file_number}
+

Protocol Parameters

+ + + +
{entityName}
+ + + {Object.entries(beacon).map(([key, value]) => ( + + + {key}: + + {value} + + ))} + + + ) : (
{entityName}