<%= gettext "Hash" %> | <%= gettext "Last Seen" %> | <%= gettext "Gas Price" %> | <%= gettext "Gas Limit" %> | <%= gettext "From" %> | <%= gettext "To" %> | <%= gettext "Value" %> |
---|---|---|---|---|---|---|
<%= link(transaction.hash, to: transaction_path(@conn, :show, @conn.assigns.locale, transaction.hash), class: "transactions__link") %>
|
<%= transaction.last_seen %> | <%= transaction.gas_price %> | <%= transaction.gas |> Cldr.Number.to_string! %> | <%= link(transaction.from_address_hash, to: address_path(@conn, :show, @conn.assigns.locale, transaction.from_address_hash), class: "transactions__link") %> | <%= link(transaction.to_address_hash, to: address_path(@conn, :show, @conn.assigns.locale, transaction.to_address_hash), class: "transactions__link") %> | <%= Decimal.div(Decimal.new(transaction.value), Decimal.new(1_000_000_000_000_000_000)) |> Decimal.to_string(:normal) %> <%= gettext "POA" %> |