+
+ Cardano Stake Distribution{" "}
+
+
+ {Object.entries(cardanoStakeDistributions).length === 0 ? (
+
No cardano stake distribution available
+ ) : (
+
+
+ {cardanoStakeDistributions.map((cardanoStakeDistribution, index) => (
+
+
+
+ {cardanoStakeDistribution.hash}
+
+ Epoch: {cardanoStakeDistribution.epoch}
+ {cardanoStakeDistribution.created_at && (
+
+ Created:{" "}
+
+
+ )}
+
+ Certificate hash:
+ {cardanoStakeDistribution.certificate_hash}{" "}
+
+
+
+
+
+
+ {index === 0 && (
+ <>
+ Latest{" "}
+ >
+ )}
+
+
+
+
+
+
+ ))}
+
+
+ )}
+
+ >
+ );
+}