" />
<%= gettext("Skipped") %>
<%= @chain.skipped_blocks |> Cldr.Number.to_string! %>
" />
<%= gettext("Lag") %>
<%= @chain.lag |> Timex.format_duration(:humanized) %>
" />
<%= gettext("BPM") %>
<%= @chain.block_velocity |> Cldr.Number.to_string! %>
" />
<%= gettext("TPM") %>
<%= @chain.transaction_velocity |> Cldr.Number.to_string! %>
" />
<%= gettext("Block") %>
#<%= @chain.number %>
" />
<%= gettext("Last Block") %>
<%= @chain.timestamp |> Timex.from_now() %>
" />
<%= gettext("Average Block Time") %>
<%= @chain.average_time |> Timex.format_duration(:humanized) %>
" />
<%= gettext("Transactions") %>
<%= gettext("%{count} per day", count: Cldr.Number.to_string!(@chain.transaction_count)) %>

<%= gettext "Blocks" %>

<%= for block <- @chain.blocks do %> <% end %>
<%= gettext "Height" %> <%= gettext "Age" %> <%= gettext "Transactions" %> <%= gettext "Gas Used" %>
<%= link(block.number, to: block_path(@conn, :show, @conn.assigns.locale, block.number), class: "blocks__link") %> <%= block.timestamp |> Timex.from_now %> <%= block.transactions |> Enum.count %> <%= block.gas_used |> Cldr.Number.to_string! %>

<%= gettext "Transactions" %>

<%= for transaction <- @chain.transactions do %> <% end %>
<%= gettext "Hash" %> <%= gettext "Block" %> <%= gettext "Age" %> <%= gettext "Value" %>
<%= link(transaction.hash, to: transaction_path(@conn, :show, @conn.assigns.locale, transaction.hash), class: "transactions__link transactions__link--truncated transactions__link--hash") %>
<%= link(transaction.block.number, to: block_path(@conn, :show, @conn.assigns.locale, transaction.block.number), class: "transactions__link") %> <%= transaction.block.timestamp |> Timex.from_now() %> <%= Decimal.div(Decimal.new(transaction.value), Decimal.new(1_000_000_000_000_000_000)) |> Decimal.to_string(:normal) %> <%= gettext "POA" %>