- <%= gettext "Transaction Hash" %>
- <%= @transaction.hash %>
- <%= gettext "Transaction Status" %>
- <%= @transaction.status %>
- <%= gettext "Block Number" %>
-
<%= link(@transaction.block_number, to: block_path(@conn, :show, @conn.assigns.locale, @transaction.block_number), class: "transaction__link") %>
(<%= gettext "%{confirmations} block confirmations", confirmations: @transaction.confirmations %>)
- <%= gettext "Age" %>
- <%= @transaction.formatted_age %>
- <%= gettext "Value" %>
- <%= Decimal.div(Decimal.new(@transaction.value), Decimal.new(1_000_000_000_000_000_000)) |> Decimal.to_string(:normal) %> <%= gettext "POA" %>
- <%= gettext "From" %>
-
<%= if @transaction.from_address do %>
<%= link(@transaction.from_address.hash, to: address_path(@conn, :show, @conn.assigns.locale, @transaction.from_address.hash)) %>
<% else %>
<%= gettext "Pending" %>
<% end %>
- <%= gettext "To" %>
-
<%= if @transaction.to_address do %>
<%= link(@transaction.to_address.hash, to: address_path(@conn, :show, @conn.assigns.locale, @transaction.to_address.hash)) %>
<% else %>
<%= gettext "Pending" %>
<% end %>