Add utf-8 decoding for revert reason data

pull/4791/head
nikitosing 3 years ago
parent bf7d605e52
commit dae0ed50f3
  1. 2
      CHANGELOG.md
  2. 14
      apps/block_scout_web/lib/block_scout_web/templates/transaction/overview.html.eex
  3. 34
      apps/block_scout_web/lib/block_scout_web/views/transaction_view.ex
  4. 160
      apps/block_scout_web/priv/gettext/default.pot
  5. 160
      apps/block_scout_web/priv/gettext/en/LC_MESSAGES/default.po

@ -1,7 +1,7 @@
## Current ## Current
### Features ### Features
- [#4777](https://github.com/blockscout/blockscout/pull/4777) - Added decoding revert reason - [#4777](https://github.com/blockscout/blockscout/pull/4777), [#4791](https://github.com/blockscout/blockscout/pull/4791) - Added decoding revert reason
- [#4776](https://github.com/blockscout/blockscout/pull/4776) - Added view for unsuccessfully fetched values from read functions - [#4776](https://github.com/blockscout/blockscout/pull/4776) - Added view for unsuccessfully fetched values from read functions
- [#4761](https://github.com/blockscout/blockscout/pull/4761) - ERC-1155 support - [#4761](https://github.com/blockscout/blockscout/pull/4761) - ERC-1155 support
- [#4739](https://github.com/blockscout/blockscout/pull/4739) - Improve logs and inputs decoding - [#4739](https://github.com/blockscout/blockscout/pull/4739) - Improve logs and inputs decoding

@ -129,22 +129,16 @@
<%= gettext "Revert reason" %> </dt> <%= gettext "Revert reason" %> </dt>
<dd class="col-sm-9 col-lg-10"> <dd class="col-sm-9 col-lg-10">
<%= case BlockScoutWeb.TransactionView.transaction_revert_reason(@transaction) do %> <%= case BlockScoutWeb.TransactionView.transaction_revert_reason(@transaction) do %>
<% {:error, :contract_not_verified, []} -> %> <% {:error, :contract_not_verified, candidates} when candidates != [] -> %>
<div class="tx-raw-input">
<div class="tile tile-muted">
<pre class="pre-scrollable pre-scrollable-shorty pre-wrap mb-0"><code><%= BlockScoutWeb.TransactionView.get_pure_transaction_revert_reason(@transaction) %></code></pre>
</div>
</div>
<% {:error, :contract_not_verified, candidates} -> %>
<% {:ok, method_id, text, mapping} = Enum.at(candidates, 0) %> <% {:ok, method_id, text, mapping} = Enum.at(candidates, 0) %>
<%= render(BlockScoutWeb.TransactionView, "_decoded_input_body.html", method_id: method_id, text: text, mapping: mapping, error: true) %> <%= render(BlockScoutWeb.TransactionView, "_decoded_input_body.html", method_id: method_id, text: text, mapping: mapping, error: true) %>
<% {:ok, method_id, text, mapping} -> %> <% {:ok, method_id, text, mapping} -> %>
<%= render(BlockScoutWeb.TransactionView, "_decoded_input_body.html", method_id: method_id, text: text, mapping: mapping, error: true) %> <%= render(BlockScoutWeb.TransactionView, "_decoded_input_body.html", method_id: method_id, text: text, mapping: mapping, error: true) %>
<% _ -> %> <% _ -> %>
<div class="tx-raw-input"> <% hex = BlockScoutWeb.TransactionView.get_pure_transaction_revert_reason(@transaction) %>
<% utf8 = BlockScoutWeb.TransactionView.decoded_revert_reason(@transaction) %>
<div class="tile tile-muted"> <div class="tile tile-muted">
<pre class="pre-scrollable pre-scrollable-shorty pre-wrap mb-0"><code><%= BlockScoutWeb.TransactionView.get_pure_transaction_revert_reason(@transaction) %></code></pre> <pre class="pre-scrollable pre-scrollable-shorty pre-wrap mb-0"><code>Raw:<%= raw("\t") %><%= hex %><%= raw("\n") %>UTF-8:<%= raw("\t") %><%= utf8 %></code></pre>
</div>
</div> </div>
<% end %> <% end %>
</dd> </dd>

@ -301,9 +301,6 @@ defmodule BlockScoutWeb.TransactionView do
def contract_creation?(_), do: false def contract_creation?(_), do: false
# def utf8_encode() do
# end
def fee(%Transaction{} = transaction) do def fee(%Transaction{} = transaction) do
{_, value} = Chain.fee(transaction, :wei) {_, value} = Chain.fee(transaction, :wei)
value value
@ -331,6 +328,8 @@ defmodule BlockScoutWeb.TransactionView do
transaction |> Chain.transaction_to_revert_reason() |> decoded_revert_reason(transaction) transaction |> Chain.transaction_to_revert_reason() |> decoded_revert_reason(transaction)
end end
def get_pure_transaction_revert_reason(nil), do: nil
def get_pure_transaction_revert_reason(transaction), do: Chain.transaction_to_revert_reason(transaction) def get_pure_transaction_revert_reason(transaction), do: Chain.transaction_to_revert_reason(transaction)
def empty_exchange_rate?(exchange_rate) do def empty_exchange_rate?(exchange_rate) do
@ -566,4 +565,33 @@ defmodule BlockScoutWeb.TransactionView do
defp template_to_string(template) when is_tuple(template) do defp template_to_string(template) when is_tuple(template) do
safe_to_string(template) safe_to_string(template)
end end
# Function decodes revert reason of the transaction
@spec decoded_revert_reason(%Transaction{} | nil) :: binary() | nil
def decoded_revert_reason(transaction) do
revert_reason = get_pure_transaction_revert_reason(transaction)
case revert_reason do
"0x" <> hex_part ->
proccess_hex_revert_reason(hex_part)
hex_part ->
proccess_hex_revert_reason(hex_part)
end
end
# Function converts hex revert reason to the binary
@spec proccess_hex_revert_reason(nil) :: nil
defp proccess_hex_revert_reason(nil), do: nil
@spec proccess_hex_revert_reason(binary()) :: binary()
defp proccess_hex_revert_reason(hex_revert_reason) do
case Integer.parse(hex_revert_reason, 16) do
{number, ""} ->
:binary.encode_unsigned(number)
_ ->
hex_revert_reason
end
end
end end

@ -81,7 +81,7 @@ msgid "%{subnetwork} Staking DApp - BlockScout"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:350 #: lib/block_scout_web/views/transaction_view.ex:349
msgid "(Awaiting internal transactions for status)" msgid "(Awaiting internal transactions for status)"
msgstr "" msgstr ""
@ -175,7 +175,7 @@ msgid "Action"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:431 #: lib/block_scout_web/templates/transaction/overview.html.eex:425
msgid "Actual gas amount used by the transaction." msgid "Actual gas amount used by the transaction."
msgstr "" msgstr ""
@ -186,12 +186,12 @@ msgid "Address"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:219 #: lib/block_scout_web/templates/transaction/overview.html.eex:213
msgid "Address (external or contract) receiving the transaction." msgid "Address (external or contract) receiving the transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:199 #: lib/block_scout_web/templates/transaction/overview.html.eex:193
msgid "Address (external or contract) sending the transaction." msgid "Address (external or contract) sending the transaction."
msgstr "" msgstr ""
@ -246,7 +246,7 @@ msgid "Amount"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:417 #: lib/block_scout_web/templates/transaction/overview.html.eex:411
msgid "Amount of" msgid "Amount of"
msgstr "" msgstr ""
@ -336,13 +336,13 @@ msgid "Become a Candidate"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:452 #: lib/block_scout_web/templates/transaction/overview.html.eex:446
msgid "Binary data included with the transaction. See input / logs below for additional info." msgid "Binary data included with the transaction. See input / logs below for additional info."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_coin_balance/_coin_balances.html.eex:8 #: lib/block_scout_web/templates/address_coin_balance/_coin_balances.html.eex:8
#: lib/block_scout_web/templates/block/overview.html.eex:26 lib/block_scout_web/templates/transaction/overview.html.eex:158 #: lib/block_scout_web/templates/block/overview.html.eex:26 lib/block_scout_web/templates/transaction/overview.html.eex:152
msgid "Block" msgid "Block"
msgstr "" msgstr ""
@ -393,7 +393,7 @@ msgid "Block number"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:157 #: lib/block_scout_web/templates/transaction/overview.html.eex:151
msgid "Block number containing the transaction." msgid "Block number containing the transaction."
msgstr "" msgstr ""
@ -581,7 +581,7 @@ msgid "Compiler version"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:343 #: lib/block_scout_web/views/transaction_view.ex:342
msgid "Confirmed" msgid "Confirmed"
msgstr "" msgstr ""
@ -591,7 +591,7 @@ msgid "Confirmed by "
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:190 #: lib/block_scout_web/templates/transaction/overview.html.eex:184
msgid "Confirmed within" msgid "Confirmed within"
msgstr "" msgstr ""
@ -631,7 +631,7 @@ msgid "Constructor Arguments"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:229 #: lib/block_scout_web/templates/transaction/overview.html.eex:223
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
@ -655,12 +655,12 @@ msgid "Contract Address Pending"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:458 #: lib/block_scout_web/views/transaction_view.ex:457
msgid "Contract Call" msgid "Contract Call"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:455 #: lib/block_scout_web/views/transaction_view.ex:454
msgid "Contract Creation" msgid "Contract Creation"
msgstr "" msgstr ""
@ -740,8 +740,8 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:14 #: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:14
#: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:15 lib/block_scout_web/templates/transaction/overview.html.eex:209 #: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:15 lib/block_scout_web/templates/transaction/overview.html.eex:203
#: lib/block_scout_web/templates/transaction/overview.html.eex:210 #: lib/block_scout_web/templates/transaction/overview.html.eex:204
msgid "Copy From Address" msgid "Copy From Address"
msgstr "" msgstr ""
@ -775,9 +775,9 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:31 #: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:31
#: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:32 lib/block_scout_web/templates/transaction/overview.html.eex:238 #: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:32 lib/block_scout_web/templates/transaction/overview.html.eex:232
#: lib/block_scout_web/templates/transaction/overview.html.eex:239 lib/block_scout_web/templates/transaction/overview.html.eex:248 #: lib/block_scout_web/templates/transaction/overview.html.eex:233 lib/block_scout_web/templates/transaction/overview.html.eex:242
#: lib/block_scout_web/templates/transaction/overview.html.eex:249 #: lib/block_scout_web/templates/transaction/overview.html.eex:243
msgid "Copy To Address" msgid "Copy To Address"
msgstr "" msgstr ""
@ -798,19 +798,19 @@ msgid "Copy Txn Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:478 #: lib/block_scout_web/templates/transaction/overview.html.eex:472
msgid "Copy Txn Hex Input" msgid "Copy Txn Hex Input"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:484 #: lib/block_scout_web/templates/transaction/overview.html.eex:478
msgid "Copy Txn UTF-8 Input" msgid "Copy Txn UTF-8 Input"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/log/_data_decoded_view.html.eex:20 #: lib/block_scout_web/templates/log/_data_decoded_view.html.eex:20
#: lib/block_scout_web/templates/transaction/_decoded_input_body.html.eex:41 lib/block_scout_web/templates/transaction/overview.html.eex:477 #: lib/block_scout_web/templates/transaction/_decoded_input_body.html.eex:41 lib/block_scout_web/templates/transaction/overview.html.eex:471
#: lib/block_scout_web/templates/transaction/overview.html.eex:483 #: lib/block_scout_web/templates/transaction/overview.html.eex:477
msgid "Copy Value" msgid "Copy Value"
msgstr "" msgstr ""
@ -879,7 +879,7 @@ msgid "Date & time at which block was produced."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:176 #: lib/block_scout_web/templates/transaction/overview.html.eex:170
msgid "Date & time of transaction inclusion, including length of time for confirmation." msgid "Date & time of transaction inclusion, including length of time for confirmation."
msgstr "" msgstr ""
@ -1062,12 +1062,12 @@ msgid "Error trying to fetch balances."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:354 #: lib/block_scout_web/views/transaction_view.ex:353
msgid "Error: %{reason}" msgid "Error: %{reason}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:352 #: lib/block_scout_web/views/transaction_view.ex:351
msgid "Error: (Awaiting internal transactions for reason)" msgid "Error: (Awaiting internal transactions for reason)"
msgstr "" msgstr ""
@ -1087,7 +1087,7 @@ msgstr ""
#: lib/block_scout_web/templates/block/overview.html.eex:209 lib/block_scout_web/templates/internal_transaction/_tile.html.eex:20 #: lib/block_scout_web/templates/block/overview.html.eex:209 lib/block_scout_web/templates/internal_transaction/_tile.html.eex:20
#: lib/block_scout_web/templates/layout/_topnav.html.eex:87 lib/block_scout_web/templates/layout/_topnav.html.eex:108 #: lib/block_scout_web/templates/layout/_topnav.html.eex:87 lib/block_scout_web/templates/layout/_topnav.html.eex:108
#: lib/block_scout_web/templates/layout/app.html.eex:45 lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20 #: lib/block_scout_web/templates/layout/app.html.eex:45 lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20
#: lib/block_scout_web/templates/transaction/_tile.html.eex:37 lib/block_scout_web/templates/transaction/overview.html.eex:417 #: lib/block_scout_web/templates/transaction/_tile.html.eex:37 lib/block_scout_web/templates/transaction/overview.html.eex:411
#: lib/block_scout_web/views/wei_helpers.ex:78 #: lib/block_scout_web/views/wei_helpers.ex:78
msgid "Ether" msgid "Ether"
msgstr "" msgstr ""
@ -1154,7 +1154,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:42 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:42
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:40 lib/block_scout_web/templates/address_transaction/index.html.eex:38 #: lib/block_scout_web/templates/address_token_transfer/index.html.eex:40 lib/block_scout_web/templates/address_transaction/index.html.eex:38
#: lib/block_scout_web/templates/transaction/overview.html.eex:200 lib/block_scout_web/views/address_internal_transaction_view.ex:10 #: lib/block_scout_web/templates/transaction/overview.html.eex:194 lib/block_scout_web/views/address_internal_transaction_view.ex:10
#: lib/block_scout_web/views/address_token_transfer_view.ex:10 lib/block_scout_web/views/address_transaction_view.ex:10 #: lib/block_scout_web/views/address_token_transfer_view.ex:10 lib/block_scout_web/views/address_transaction_view.ex:10
msgid "From" msgid "From"
msgstr "" msgstr ""
@ -1166,12 +1166,12 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/_tile.html.eex:67 #: lib/block_scout_web/templates/block/_tile.html.eex:67
#: lib/block_scout_web/templates/block/overview.html.eex:181 lib/block_scout_web/templates/transaction/overview.html.eex:379 #: lib/block_scout_web/templates/block/overview.html.eex:181 lib/block_scout_web/templates/transaction/overview.html.eex:373
msgid "Gas Limit" msgid "Gas Limit"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:359 #: lib/block_scout_web/templates/transaction/overview.html.eex:353
msgid "Gas Price" msgid "Gas Price"
msgstr "" msgstr ""
@ -1182,7 +1182,7 @@ msgid "Gas Used"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:432 #: lib/block_scout_web/templates/transaction/overview.html.eex:426
msgid "Gas Used by Transaction" msgid "Gas Used by Transaction"
msgstr "" msgstr ""
@ -1219,8 +1219,8 @@ msgid "Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:460 #: lib/block_scout_web/templates/transaction/overview.html.eex:454
#: lib/block_scout_web/templates/transaction/overview.html.eex:464 #: lib/block_scout_web/templates/transaction/overview.html.eex:458
msgid "Hex (Default)" msgid "Hex (Default)"
msgstr "" msgstr ""
@ -1276,7 +1276,7 @@ msgid "Inactive Pool Addresses. Current validator pools are specified by a check
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:444 #: lib/block_scout_web/templates/transaction/overview.html.eex:438
msgid "Index position of Transaction in the block." msgid "Index position of Transaction in the block."
msgstr "" msgstr ""
@ -1301,7 +1301,7 @@ msgid "Input"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:221 #: lib/block_scout_web/templates/transaction/overview.html.eex:215
msgid "Interacted With (To)" msgid "Interacted With (To)"
msgstr "" msgstr ""
@ -1314,7 +1314,7 @@ msgstr ""
#: lib/block_scout_web/templates/address/_tabs.html.eex:28 #: lib/block_scout_web/templates/address/_tabs.html.eex:28
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:21 lib/block_scout_web/templates/transaction/_tabs.html.eex:11 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:21 lib/block_scout_web/templates/transaction/_tabs.html.eex:11
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:6 lib/block_scout_web/views/address_view.ex:346 #: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:6 lib/block_scout_web/views/address_view.ex:346
#: lib/block_scout_web/views/transaction_view.ex:513 #: lib/block_scout_web/views/transaction_view.ex:512
msgid "Internal Transactions" msgid "Internal Transactions"
msgstr "" msgstr ""
@ -1388,22 +1388,22 @@ msgid "Likelihood of Becoming a Validator on the Next Epoch"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:311 #: lib/block_scout_web/templates/transaction/overview.html.eex:305
msgid "List of ERC-1155 tokens created in the transaction." msgid "List of ERC-1155 tokens created in the transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:295 #: lib/block_scout_web/templates/transaction/overview.html.eex:289
msgid "List of token burnt in the transaction." msgid "List of token burnt in the transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:278 #: lib/block_scout_web/templates/transaction/overview.html.eex:272
msgid "List of token minted in the transaction." msgid "List of token minted in the transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:262 #: lib/block_scout_web/templates/transaction/overview.html.eex:256
msgid "List of token transferred in the transaction." msgid "List of token transferred in the transaction."
msgstr "" msgstr ""
@ -1441,7 +1441,7 @@ msgstr ""
#: lib/block_scout_web/templates/address/_tabs.html.eex:41 #: lib/block_scout_web/templates/address/_tabs.html.eex:41
#: lib/block_scout_web/templates/address_logs/index.html.eex:10 lib/block_scout_web/templates/transaction/_tabs.html.eex:17 #: lib/block_scout_web/templates/address_logs/index.html.eex:10 lib/block_scout_web/templates/transaction/_tabs.html.eex:17
#: lib/block_scout_web/templates/transaction_log/index.html.eex:8 lib/block_scout_web/views/address_view.ex:357 #: lib/block_scout_web/templates/transaction_log/index.html.eex:8 lib/block_scout_web/views/address_view.ex:357
#: lib/block_scout_web/views/transaction_view.ex:514 #: lib/block_scout_web/views/transaction_view.ex:513
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
@ -1472,27 +1472,27 @@ msgid "Max Amount to Move:"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:388 #: lib/block_scout_web/templates/transaction/overview.html.eex:382
msgid "Max Fee per Gas" msgid "Max Fee per Gas"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:398 #: lib/block_scout_web/templates/transaction/overview.html.eex:392
msgid "Max Priority Fee per Gas" msgid "Max Priority Fee per Gas"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:322 #: lib/block_scout_web/views/transaction_view.ex:319
msgid "Max of" msgid "Max of"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:378 #: lib/block_scout_web/templates/transaction/overview.html.eex:372
msgid "Maximum gas amount approved for the transaction." msgid "Maximum gas amount approved for the transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:387 #: lib/block_scout_web/templates/transaction/overview.html.eex:381
msgid "Maximum total amount per unit of gas a user is willing to pay for a transaction, including base fee and priority fee." msgid "Maximum total amount per unit of gas a user is willing to pay for a transaction, including base fee and priority fee."
msgstr "" msgstr ""
@ -1637,7 +1637,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/overview.html.eex:190 #: lib/block_scout_web/templates/block/overview.html.eex:190
#: lib/block_scout_web/templates/transaction/overview.html.eex:442 #: lib/block_scout_web/templates/transaction/overview.html.eex:436
msgid "Nonce" msgid "Nonce"
msgstr "" msgstr ""
@ -1713,8 +1713,8 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:53 #: lib/block_scout_web/templates/layout/_topnav.html.eex:53
#: lib/block_scout_web/templates/stakes/_stakes_modal_delegators_list.html.eex:184 lib/block_scout_web/views/transaction_view.ex:349 #: lib/block_scout_web/templates/stakes/_stakes_modal_delegators_list.html.eex:184 lib/block_scout_web/views/transaction_view.ex:348
#: lib/block_scout_web/views/transaction_view.ex:387 #: lib/block_scout_web/views/transaction_view.ex:386
msgid "Pending" msgid "Pending"
msgstr "" msgstr ""
@ -1761,7 +1761,7 @@ msgid "Pools searching is already in progress for this address"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:444 #: lib/block_scout_web/templates/transaction/overview.html.eex:438
msgid "Position" msgid "Position"
msgstr "" msgstr ""
@ -1794,13 +1794,13 @@ msgid "Price"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:358 #: lib/block_scout_web/templates/transaction/overview.html.eex:352
msgid "Price per unit of gas specified by the sender. Higher gas prices can prioritize transaction inclusion during times of high usage." msgid "Price per unit of gas specified by the sender. Higher gas prices can prioritize transaction inclusion during times of high usage."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/overview.html.eex:219 #: lib/block_scout_web/templates/block/overview.html.eex:219
#: lib/block_scout_web/templates/transaction/overview.html.eex:408 #: lib/block_scout_web/templates/transaction/overview.html.eex:402
msgid "Priority Fee / Tip" msgid "Priority Fee / Tip"
msgstr "" msgstr ""
@ -1826,13 +1826,13 @@ msgid "RPC"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:453 #: lib/block_scout_web/templates/transaction/overview.html.eex:447
msgid "Raw Input" msgid "Raw Input"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_tabs.html.eex:24 #: lib/block_scout_web/templates/transaction/_tabs.html.eex:24
#: lib/block_scout_web/templates/transaction_raw_trace/index.html.eex:7 lib/block_scout_web/views/transaction_view.ex:515 #: lib/block_scout_web/templates/transaction_raw_trace/index.html.eex:7 lib/block_scout_web/views/transaction_view.ex:514
msgid "Raw Trace" msgid "Raw Trace"
msgstr "" msgstr ""
@ -2145,7 +2145,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_emission_reward_tile.html.eex:8 #: lib/block_scout_web/templates/transaction/_emission_reward_tile.html.eex:8
#: lib/block_scout_web/views/transaction_view.ex:351 #: lib/block_scout_web/views/transaction_view.ex:350
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@ -2444,14 +2444,14 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/overview.html.eex:65 #: lib/block_scout_web/templates/block/overview.html.eex:65
#: lib/block_scout_web/templates/transaction/overview.html.eex:177 #: lib/block_scout_web/templates/transaction/overview.html.eex:171
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:36 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:36
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:34 lib/block_scout_web/templates/address_transaction/index.html.eex:32 #: lib/block_scout_web/templates/address_token_transfer/index.html.eex:34 lib/block_scout_web/templates/address_transaction/index.html.eex:32
#: lib/block_scout_web/templates/transaction/overview.html.eex:223 lib/block_scout_web/views/address_internal_transaction_view.ex:9 #: lib/block_scout_web/templates/transaction/overview.html.eex:217 lib/block_scout_web/views/address_internal_transaction_view.ex:9
#: lib/block_scout_web/views/address_token_transfer_view.ex:9 lib/block_scout_web/views/address_transaction_view.ex:9 #: lib/block_scout_web/views/address_token_transfer_view.ex:9 lib/block_scout_web/views/address_transaction_view.ex:9
msgid "To" msgid "To"
msgstr "" msgstr ""
@ -2478,12 +2478,12 @@ msgid "Token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:3 lib/block_scout_web/views/transaction_view.ex:449 #: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:3 lib/block_scout_web/views/transaction_view.ex:448
msgid "Token Burning" msgid "Token Burning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:7 lib/block_scout_web/views/transaction_view.ex:450 #: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:7 lib/block_scout_web/views/transaction_view.ex:449
msgid "Token Creation" msgid "Token Creation"
msgstr "" msgstr ""
@ -2507,13 +2507,13 @@ msgid "Token ID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:5 lib/block_scout_web/views/transaction_view.ex:448 #: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:5 lib/block_scout_web/views/transaction_view.ex:447
msgid "Token Minting" msgid "Token Minting"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:9 #: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:9
#: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:11 lib/block_scout_web/views/transaction_view.ex:451 #: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:11 lib/block_scout_web/views/transaction_view.ex:450
msgid "Token Transfer" msgid "Token Transfer"
msgstr "" msgstr ""
@ -2524,7 +2524,7 @@ msgstr ""
#: lib/block_scout_web/templates/tokens/transfer/index.html.eex:14 lib/block_scout_web/templates/transaction/_tabs.html.eex:4 #: lib/block_scout_web/templates/tokens/transfer/index.html.eex:14 lib/block_scout_web/templates/transaction/_tabs.html.eex:4
#: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:7 lib/block_scout_web/views/address_view.ex:348 #: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:7 lib/block_scout_web/views/address_view.ex:348
#: lib/block_scout_web/views/tokens/instance/overview_view.ex:178 lib/block_scout_web/views/tokens/overview_view.ex:41 #: lib/block_scout_web/views/tokens/instance/overview_view.ex:178 lib/block_scout_web/views/tokens/overview_view.ex:41
#: lib/block_scout_web/views/transaction_view.ex:512 #: lib/block_scout_web/views/transaction_view.ex:511
msgid "Token Transfers" msgid "Token Transfers"
msgstr "" msgstr ""
@ -2543,22 +2543,22 @@ msgid "Tokens"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:296 #: lib/block_scout_web/templates/transaction/overview.html.eex:290
msgid "Tokens Burnt" msgid "Tokens Burnt"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:312 #: lib/block_scout_web/templates/transaction/overview.html.eex:306
msgid "Tokens Created" msgid "Tokens Created"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:279 #: lib/block_scout_web/templates/transaction/overview.html.eex:273
msgid "Tokens Minted" msgid "Tokens Minted"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:263 #: lib/block_scout_web/templates/transaction/overview.html.eex:257
msgid "Tokens Transferred" msgid "Tokens Transferred"
msgstr "" msgstr ""
@ -2604,7 +2604,7 @@ msgid "Total gas limit provided by all transactions in the block."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:343 #: lib/block_scout_web/templates/transaction/overview.html.eex:337
msgid "Total transaction fee." msgid "Total transaction fee."
msgstr "" msgstr ""
@ -2620,7 +2620,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_logs/_logs.html.eex:19 #: lib/block_scout_web/templates/address_logs/_logs.html.eex:19
#: lib/block_scout_web/views/transaction_view.ex:461 #: lib/block_scout_web/views/transaction_view.ex:460
msgid "Transaction" msgid "Transaction"
msgstr "" msgstr ""
@ -2635,7 +2635,7 @@ msgid "Transaction %{transaction}, %{subnetwork} %{transaction}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:418 #: lib/block_scout_web/templates/transaction/overview.html.eex:412
msgid "Transaction Burnt Fee" msgid "Transaction Burnt Fee"
msgstr "" msgstr ""
@ -2645,7 +2645,7 @@ msgid "Transaction Details"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:344 #: lib/block_scout_web/templates/transaction/overview.html.eex:338
msgid "Transaction Fee" msgid "Transaction Fee"
msgstr "" msgstr ""
@ -2661,17 +2661,17 @@ msgid "Transaction Inputs"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:368 #: lib/block_scout_web/templates/transaction/overview.html.eex:362
msgid "Transaction Type" msgid "Transaction Type"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:441 #: lib/block_scout_web/templates/transaction/overview.html.eex:435
msgid "Transaction number from the sending address. Each transaction sent from an address increments the nonce by 1." msgid "Transaction number from the sending address. Each transaction sent from an address increments the nonce by 1."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:367 #: lib/block_scout_web/templates/transaction/overview.html.eex:361
msgid "Transaction type, introduced in EIP-2718." msgid "Transaction type, introduced in EIP-2718."
msgstr "" msgstr ""
@ -2729,7 +2729,7 @@ msgid "Type"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:467 #: lib/block_scout_web/templates/transaction/overview.html.eex:461
msgid "UTF-8" msgid "UTF-8"
msgstr "" msgstr ""
@ -2750,7 +2750,7 @@ msgid "Uncles"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:342 #: lib/block_scout_web/views/transaction_view.ex:341
msgid "Unconfirmed" msgid "Unconfirmed"
msgstr "" msgstr ""
@ -2787,12 +2787,12 @@ msgid "Use the search box to find a hosted network, or select from the list of a
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:397 #: lib/block_scout_web/templates/transaction/overview.html.eex:391
msgid "User defined maximum fee (tip) per unit of gas paid to validator for transaction prioritization." msgid "User defined maximum fee (tip) per unit of gas paid to validator for transaction prioritization."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:407 #: lib/block_scout_web/templates/transaction/overview.html.eex:401
msgid "User-defined tip sent to validator for transaction priority/inclusion." msgid "User-defined tip sent to validator for transaction priority/inclusion."
msgstr "" msgstr ""
@ -2842,12 +2842,12 @@ msgid "Validator pools can be banned for misbehavior (such as not revealing secr
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:329 #: lib/block_scout_web/templates/transaction/overview.html.eex:323
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:328 #: lib/block_scout_web/templates/transaction/overview.html.eex:322
msgid "Value sent in the native token (and USD) if applicable." msgid "Value sent in the native token (and USD) if applicable."
msgstr "" msgstr ""
@ -3089,7 +3089,7 @@ msgid "balance of the address"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:417 #: lib/block_scout_web/templates/transaction/overview.html.eex:411
msgid "burned for this transaction. Equals Block Base Fee per Gas * Gas Used." msgid "burned for this transaction. Equals Block Base Fee per Gas * Gas Used."
msgstr "" msgstr ""
@ -3109,7 +3109,7 @@ msgid "candidate"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:234 #: lib/block_scout_web/templates/transaction/overview.html.eex:228
msgid "created" msgid "created"
msgstr "" msgstr ""

@ -81,7 +81,7 @@ msgid "%{subnetwork} Staking DApp - BlockScout"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:350 #: lib/block_scout_web/views/transaction_view.ex:349
msgid "(Awaiting internal transactions for status)" msgid "(Awaiting internal transactions for status)"
msgstr "" msgstr ""
@ -175,7 +175,7 @@ msgid "Action"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:431 #: lib/block_scout_web/templates/transaction/overview.html.eex:425
msgid "Actual gas amount used by the transaction." msgid "Actual gas amount used by the transaction."
msgstr "" msgstr ""
@ -186,12 +186,12 @@ msgid "Address"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:219 #: lib/block_scout_web/templates/transaction/overview.html.eex:213
msgid "Address (external or contract) receiving the transaction." msgid "Address (external or contract) receiving the transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:199 #: lib/block_scout_web/templates/transaction/overview.html.eex:193
msgid "Address (external or contract) sending the transaction." msgid "Address (external or contract) sending the transaction."
msgstr "" msgstr ""
@ -246,7 +246,7 @@ msgid "Amount"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:417 #: lib/block_scout_web/templates/transaction/overview.html.eex:411
msgid "Amount of" msgid "Amount of"
msgstr "" msgstr ""
@ -336,13 +336,13 @@ msgid "Become a Candidate"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:452 #: lib/block_scout_web/templates/transaction/overview.html.eex:446
msgid "Binary data included with the transaction. See input / logs below for additional info." msgid "Binary data included with the transaction. See input / logs below for additional info."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_coin_balance/_coin_balances.html.eex:8 #: lib/block_scout_web/templates/address_coin_balance/_coin_balances.html.eex:8
#: lib/block_scout_web/templates/block/overview.html.eex:26 lib/block_scout_web/templates/transaction/overview.html.eex:158 #: lib/block_scout_web/templates/block/overview.html.eex:26 lib/block_scout_web/templates/transaction/overview.html.eex:152
msgid "Block" msgid "Block"
msgstr "" msgstr ""
@ -393,7 +393,7 @@ msgid "Block number"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:157 #: lib/block_scout_web/templates/transaction/overview.html.eex:151
msgid "Block number containing the transaction." msgid "Block number containing the transaction."
msgstr "" msgstr ""
@ -581,7 +581,7 @@ msgid "Compiler version"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:343 #: lib/block_scout_web/views/transaction_view.ex:342
msgid "Confirmed" msgid "Confirmed"
msgstr "" msgstr ""
@ -591,7 +591,7 @@ msgid "Confirmed by "
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:190 #: lib/block_scout_web/templates/transaction/overview.html.eex:184
msgid "Confirmed within" msgid "Confirmed within"
msgstr "" msgstr ""
@ -631,7 +631,7 @@ msgid "Constructor Arguments"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:229 #: lib/block_scout_web/templates/transaction/overview.html.eex:223
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
@ -655,12 +655,12 @@ msgid "Contract Address Pending"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:458 #: lib/block_scout_web/views/transaction_view.ex:457
msgid "Contract Call" msgid "Contract Call"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:455 #: lib/block_scout_web/views/transaction_view.ex:454
msgid "Contract Creation" msgid "Contract Creation"
msgstr "" msgstr ""
@ -740,8 +740,8 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:14 #: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:14
#: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:15 lib/block_scout_web/templates/transaction/overview.html.eex:209 #: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:15 lib/block_scout_web/templates/transaction/overview.html.eex:203
#: lib/block_scout_web/templates/transaction/overview.html.eex:210 #: lib/block_scout_web/templates/transaction/overview.html.eex:204
msgid "Copy From Address" msgid "Copy From Address"
msgstr "" msgstr ""
@ -775,9 +775,9 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:31 #: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:31
#: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:32 lib/block_scout_web/templates/transaction/overview.html.eex:238 #: lib/block_scout_web/templates/transaction/_total_transfers_from_to.html.eex:32 lib/block_scout_web/templates/transaction/overview.html.eex:232
#: lib/block_scout_web/templates/transaction/overview.html.eex:239 lib/block_scout_web/templates/transaction/overview.html.eex:248 #: lib/block_scout_web/templates/transaction/overview.html.eex:233 lib/block_scout_web/templates/transaction/overview.html.eex:242
#: lib/block_scout_web/templates/transaction/overview.html.eex:249 #: lib/block_scout_web/templates/transaction/overview.html.eex:243
msgid "Copy To Address" msgid "Copy To Address"
msgstr "" msgstr ""
@ -798,19 +798,19 @@ msgid "Copy Txn Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:478 #: lib/block_scout_web/templates/transaction/overview.html.eex:472
msgid "Copy Txn Hex Input" msgid "Copy Txn Hex Input"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:484 #: lib/block_scout_web/templates/transaction/overview.html.eex:478
msgid "Copy Txn UTF-8 Input" msgid "Copy Txn UTF-8 Input"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/log/_data_decoded_view.html.eex:20 #: lib/block_scout_web/templates/log/_data_decoded_view.html.eex:20
#: lib/block_scout_web/templates/transaction/_decoded_input_body.html.eex:41 lib/block_scout_web/templates/transaction/overview.html.eex:477 #: lib/block_scout_web/templates/transaction/_decoded_input_body.html.eex:41 lib/block_scout_web/templates/transaction/overview.html.eex:471
#: lib/block_scout_web/templates/transaction/overview.html.eex:483 #: lib/block_scout_web/templates/transaction/overview.html.eex:477
msgid "Copy Value" msgid "Copy Value"
msgstr "" msgstr ""
@ -879,7 +879,7 @@ msgid "Date & time at which block was produced."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:176 #: lib/block_scout_web/templates/transaction/overview.html.eex:170
msgid "Date & time of transaction inclusion, including length of time for confirmation." msgid "Date & time of transaction inclusion, including length of time for confirmation."
msgstr "" msgstr ""
@ -1062,12 +1062,12 @@ msgid "Error trying to fetch balances."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:354 #: lib/block_scout_web/views/transaction_view.ex:353
msgid "Error: %{reason}" msgid "Error: %{reason}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:352 #: lib/block_scout_web/views/transaction_view.ex:351
msgid "Error: (Awaiting internal transactions for reason)" msgid "Error: (Awaiting internal transactions for reason)"
msgstr "" msgstr ""
@ -1087,7 +1087,7 @@ msgstr ""
#: lib/block_scout_web/templates/block/overview.html.eex:209 lib/block_scout_web/templates/internal_transaction/_tile.html.eex:20 #: lib/block_scout_web/templates/block/overview.html.eex:209 lib/block_scout_web/templates/internal_transaction/_tile.html.eex:20
#: lib/block_scout_web/templates/layout/_topnav.html.eex:87 lib/block_scout_web/templates/layout/_topnav.html.eex:108 #: lib/block_scout_web/templates/layout/_topnav.html.eex:87 lib/block_scout_web/templates/layout/_topnav.html.eex:108
#: lib/block_scout_web/templates/layout/app.html.eex:45 lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20 #: lib/block_scout_web/templates/layout/app.html.eex:45 lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20
#: lib/block_scout_web/templates/transaction/_tile.html.eex:37 lib/block_scout_web/templates/transaction/overview.html.eex:417 #: lib/block_scout_web/templates/transaction/_tile.html.eex:37 lib/block_scout_web/templates/transaction/overview.html.eex:411
#: lib/block_scout_web/views/wei_helpers.ex:78 #: lib/block_scout_web/views/wei_helpers.ex:78
msgid "Ether" msgid "Ether"
msgstr "" msgstr ""
@ -1154,7 +1154,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:42 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:42
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:40 lib/block_scout_web/templates/address_transaction/index.html.eex:38 #: lib/block_scout_web/templates/address_token_transfer/index.html.eex:40 lib/block_scout_web/templates/address_transaction/index.html.eex:38
#: lib/block_scout_web/templates/transaction/overview.html.eex:200 lib/block_scout_web/views/address_internal_transaction_view.ex:10 #: lib/block_scout_web/templates/transaction/overview.html.eex:194 lib/block_scout_web/views/address_internal_transaction_view.ex:10
#: lib/block_scout_web/views/address_token_transfer_view.ex:10 lib/block_scout_web/views/address_transaction_view.ex:10 #: lib/block_scout_web/views/address_token_transfer_view.ex:10 lib/block_scout_web/views/address_transaction_view.ex:10
msgid "From" msgid "From"
msgstr "" msgstr ""
@ -1166,12 +1166,12 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/_tile.html.eex:67 #: lib/block_scout_web/templates/block/_tile.html.eex:67
#: lib/block_scout_web/templates/block/overview.html.eex:181 lib/block_scout_web/templates/transaction/overview.html.eex:379 #: lib/block_scout_web/templates/block/overview.html.eex:181 lib/block_scout_web/templates/transaction/overview.html.eex:373
msgid "Gas Limit" msgid "Gas Limit"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:359 #: lib/block_scout_web/templates/transaction/overview.html.eex:353
msgid "Gas Price" msgid "Gas Price"
msgstr "" msgstr ""
@ -1182,7 +1182,7 @@ msgid "Gas Used"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:432 #: lib/block_scout_web/templates/transaction/overview.html.eex:426
msgid "Gas Used by Transaction" msgid "Gas Used by Transaction"
msgstr "" msgstr ""
@ -1219,8 +1219,8 @@ msgid "Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:460 #: lib/block_scout_web/templates/transaction/overview.html.eex:454
#: lib/block_scout_web/templates/transaction/overview.html.eex:464 #: lib/block_scout_web/templates/transaction/overview.html.eex:458
msgid "Hex (Default)" msgid "Hex (Default)"
msgstr "" msgstr ""
@ -1276,7 +1276,7 @@ msgid "Inactive Pool Addresses. Current validator pools are specified by a check
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:444 #: lib/block_scout_web/templates/transaction/overview.html.eex:438
msgid "Index position of Transaction in the block." msgid "Index position of Transaction in the block."
msgstr "" msgstr ""
@ -1301,7 +1301,7 @@ msgid "Input"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:221 #: lib/block_scout_web/templates/transaction/overview.html.eex:215
msgid "Interacted With (To)" msgid "Interacted With (To)"
msgstr "" msgstr ""
@ -1314,7 +1314,7 @@ msgstr ""
#: lib/block_scout_web/templates/address/_tabs.html.eex:28 #: lib/block_scout_web/templates/address/_tabs.html.eex:28
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:21 lib/block_scout_web/templates/transaction/_tabs.html.eex:11 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:21 lib/block_scout_web/templates/transaction/_tabs.html.eex:11
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:6 lib/block_scout_web/views/address_view.ex:346 #: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:6 lib/block_scout_web/views/address_view.ex:346
#: lib/block_scout_web/views/transaction_view.ex:513 #: lib/block_scout_web/views/transaction_view.ex:512
msgid "Internal Transactions" msgid "Internal Transactions"
msgstr "" msgstr ""
@ -1388,22 +1388,22 @@ msgid "Likelihood of Becoming a Validator on the Next Epoch"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:311 #: lib/block_scout_web/templates/transaction/overview.html.eex:305
msgid "List of ERC-1155 tokens created in the transaction." msgid "List of ERC-1155 tokens created in the transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:295 #: lib/block_scout_web/templates/transaction/overview.html.eex:289
msgid "List of token burnt in the transaction." msgid "List of token burnt in the transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:278 #: lib/block_scout_web/templates/transaction/overview.html.eex:272
msgid "List of token minted in the transaction." msgid "List of token minted in the transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:262 #: lib/block_scout_web/templates/transaction/overview.html.eex:256
msgid "List of token transferred in the transaction." msgid "List of token transferred in the transaction."
msgstr "" msgstr ""
@ -1441,7 +1441,7 @@ msgstr ""
#: lib/block_scout_web/templates/address/_tabs.html.eex:41 #: lib/block_scout_web/templates/address/_tabs.html.eex:41
#: lib/block_scout_web/templates/address_logs/index.html.eex:10 lib/block_scout_web/templates/transaction/_tabs.html.eex:17 #: lib/block_scout_web/templates/address_logs/index.html.eex:10 lib/block_scout_web/templates/transaction/_tabs.html.eex:17
#: lib/block_scout_web/templates/transaction_log/index.html.eex:8 lib/block_scout_web/views/address_view.ex:357 #: lib/block_scout_web/templates/transaction_log/index.html.eex:8 lib/block_scout_web/views/address_view.ex:357
#: lib/block_scout_web/views/transaction_view.ex:514 #: lib/block_scout_web/views/transaction_view.ex:513
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
@ -1472,27 +1472,27 @@ msgid "Max Amount to Move:"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:388 #: lib/block_scout_web/templates/transaction/overview.html.eex:382
msgid "Max Fee per Gas" msgid "Max Fee per Gas"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:398 #: lib/block_scout_web/templates/transaction/overview.html.eex:392
msgid "Max Priority Fee per Gas" msgid "Max Priority Fee per Gas"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:322 #: lib/block_scout_web/views/transaction_view.ex:319
msgid "Max of" msgid "Max of"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:378 #: lib/block_scout_web/templates/transaction/overview.html.eex:372
msgid "Maximum gas amount approved for the transaction." msgid "Maximum gas amount approved for the transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:387 #: lib/block_scout_web/templates/transaction/overview.html.eex:381
msgid "Maximum total amount per unit of gas a user is willing to pay for a transaction, including base fee and priority fee." msgid "Maximum total amount per unit of gas a user is willing to pay for a transaction, including base fee and priority fee."
msgstr "" msgstr ""
@ -1637,7 +1637,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/overview.html.eex:190 #: lib/block_scout_web/templates/block/overview.html.eex:190
#: lib/block_scout_web/templates/transaction/overview.html.eex:442 #: lib/block_scout_web/templates/transaction/overview.html.eex:436
msgid "Nonce" msgid "Nonce"
msgstr "" msgstr ""
@ -1713,8 +1713,8 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:53 #: lib/block_scout_web/templates/layout/_topnav.html.eex:53
#: lib/block_scout_web/templates/stakes/_stakes_modal_delegators_list.html.eex:184 lib/block_scout_web/views/transaction_view.ex:349 #: lib/block_scout_web/templates/stakes/_stakes_modal_delegators_list.html.eex:184 lib/block_scout_web/views/transaction_view.ex:348
#: lib/block_scout_web/views/transaction_view.ex:387 #: lib/block_scout_web/views/transaction_view.ex:386
msgid "Pending" msgid "Pending"
msgstr "" msgstr ""
@ -1761,7 +1761,7 @@ msgid "Pools searching is already in progress for this address"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:444 #: lib/block_scout_web/templates/transaction/overview.html.eex:438
msgid "Position" msgid "Position"
msgstr "" msgstr ""
@ -1794,13 +1794,13 @@ msgid "Price"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:358 #: lib/block_scout_web/templates/transaction/overview.html.eex:352
msgid "Price per unit of gas specified by the sender. Higher gas prices can prioritize transaction inclusion during times of high usage." msgid "Price per unit of gas specified by the sender. Higher gas prices can prioritize transaction inclusion during times of high usage."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/overview.html.eex:219 #: lib/block_scout_web/templates/block/overview.html.eex:219
#: lib/block_scout_web/templates/transaction/overview.html.eex:408 #: lib/block_scout_web/templates/transaction/overview.html.eex:402
msgid "Priority Fee / Tip" msgid "Priority Fee / Tip"
msgstr "" msgstr ""
@ -1826,13 +1826,13 @@ msgid "RPC"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:453 #: lib/block_scout_web/templates/transaction/overview.html.eex:447
msgid "Raw Input" msgid "Raw Input"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_tabs.html.eex:24 #: lib/block_scout_web/templates/transaction/_tabs.html.eex:24
#: lib/block_scout_web/templates/transaction_raw_trace/index.html.eex:7 lib/block_scout_web/views/transaction_view.ex:515 #: lib/block_scout_web/templates/transaction_raw_trace/index.html.eex:7 lib/block_scout_web/views/transaction_view.ex:514
msgid "Raw Trace" msgid "Raw Trace"
msgstr "" msgstr ""
@ -2145,7 +2145,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_emission_reward_tile.html.eex:8 #: lib/block_scout_web/templates/transaction/_emission_reward_tile.html.eex:8
#: lib/block_scout_web/views/transaction_view.ex:351 #: lib/block_scout_web/views/transaction_view.ex:350
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@ -2444,14 +2444,14 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/overview.html.eex:65 #: lib/block_scout_web/templates/block/overview.html.eex:65
#: lib/block_scout_web/templates/transaction/overview.html.eex:177 #: lib/block_scout_web/templates/transaction/overview.html.eex:171
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:36 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:36
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:34 lib/block_scout_web/templates/address_transaction/index.html.eex:32 #: lib/block_scout_web/templates/address_token_transfer/index.html.eex:34 lib/block_scout_web/templates/address_transaction/index.html.eex:32
#: lib/block_scout_web/templates/transaction/overview.html.eex:223 lib/block_scout_web/views/address_internal_transaction_view.ex:9 #: lib/block_scout_web/templates/transaction/overview.html.eex:217 lib/block_scout_web/views/address_internal_transaction_view.ex:9
#: lib/block_scout_web/views/address_token_transfer_view.ex:9 lib/block_scout_web/views/address_transaction_view.ex:9 #: lib/block_scout_web/views/address_token_transfer_view.ex:9 lib/block_scout_web/views/address_transaction_view.ex:9
msgid "To" msgid "To"
msgstr "" msgstr ""
@ -2478,12 +2478,12 @@ msgid "Token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:3 lib/block_scout_web/views/transaction_view.ex:449 #: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:3 lib/block_scout_web/views/transaction_view.ex:448
msgid "Token Burning" msgid "Token Burning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:7 lib/block_scout_web/views/transaction_view.ex:450 #: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:7 lib/block_scout_web/views/transaction_view.ex:449
msgid "Token Creation" msgid "Token Creation"
msgstr "" msgstr ""
@ -2507,13 +2507,13 @@ msgid "Token ID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:5 lib/block_scout_web/views/transaction_view.ex:448 #: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:5 lib/block_scout_web/views/transaction_view.ex:447
msgid "Token Minting" msgid "Token Minting"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:9 #: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:9
#: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:11 lib/block_scout_web/views/transaction_view.ex:451 #: lib/block_scout_web/templates/common_components/_token_transfer_type_display_name.html.eex:11 lib/block_scout_web/views/transaction_view.ex:450
msgid "Token Transfer" msgid "Token Transfer"
msgstr "" msgstr ""
@ -2524,7 +2524,7 @@ msgstr ""
#: lib/block_scout_web/templates/tokens/transfer/index.html.eex:14 lib/block_scout_web/templates/transaction/_tabs.html.eex:4 #: lib/block_scout_web/templates/tokens/transfer/index.html.eex:14 lib/block_scout_web/templates/transaction/_tabs.html.eex:4
#: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:7 lib/block_scout_web/views/address_view.ex:348 #: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:7 lib/block_scout_web/views/address_view.ex:348
#: lib/block_scout_web/views/tokens/instance/overview_view.ex:178 lib/block_scout_web/views/tokens/overview_view.ex:41 #: lib/block_scout_web/views/tokens/instance/overview_view.ex:178 lib/block_scout_web/views/tokens/overview_view.ex:41
#: lib/block_scout_web/views/transaction_view.ex:512 #: lib/block_scout_web/views/transaction_view.ex:511
msgid "Token Transfers" msgid "Token Transfers"
msgstr "" msgstr ""
@ -2543,22 +2543,22 @@ msgid "Tokens"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:296 #: lib/block_scout_web/templates/transaction/overview.html.eex:290
msgid "Tokens Burnt" msgid "Tokens Burnt"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:312 #: lib/block_scout_web/templates/transaction/overview.html.eex:306
msgid "Tokens Created" msgid "Tokens Created"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:279 #: lib/block_scout_web/templates/transaction/overview.html.eex:273
msgid "Tokens Minted" msgid "Tokens Minted"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:263 #: lib/block_scout_web/templates/transaction/overview.html.eex:257
msgid "Tokens Transferred" msgid "Tokens Transferred"
msgstr "" msgstr ""
@ -2604,7 +2604,7 @@ msgid "Total gas limit provided by all transactions in the block."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:343 #: lib/block_scout_web/templates/transaction/overview.html.eex:337
msgid "Total transaction fee." msgid "Total transaction fee."
msgstr "" msgstr ""
@ -2620,7 +2620,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_logs/_logs.html.eex:19 #: lib/block_scout_web/templates/address_logs/_logs.html.eex:19
#: lib/block_scout_web/views/transaction_view.ex:461 #: lib/block_scout_web/views/transaction_view.ex:460
msgid "Transaction" msgid "Transaction"
msgstr "" msgstr ""
@ -2635,7 +2635,7 @@ msgid "Transaction %{transaction}, %{subnetwork} %{transaction}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:418 #: lib/block_scout_web/templates/transaction/overview.html.eex:412
msgid "Transaction Burnt Fee" msgid "Transaction Burnt Fee"
msgstr "" msgstr ""
@ -2645,7 +2645,7 @@ msgid "Transaction Details"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:344 #: lib/block_scout_web/templates/transaction/overview.html.eex:338
msgid "Transaction Fee" msgid "Transaction Fee"
msgstr "" msgstr ""
@ -2661,17 +2661,17 @@ msgid "Transaction Inputs"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:368 #: lib/block_scout_web/templates/transaction/overview.html.eex:362
msgid "Transaction Type" msgid "Transaction Type"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:441 #: lib/block_scout_web/templates/transaction/overview.html.eex:435
msgid "Transaction number from the sending address. Each transaction sent from an address increments the nonce by 1." msgid "Transaction number from the sending address. Each transaction sent from an address increments the nonce by 1."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:367 #: lib/block_scout_web/templates/transaction/overview.html.eex:361
msgid "Transaction type, introduced in EIP-2718." msgid "Transaction type, introduced in EIP-2718."
msgstr "" msgstr ""
@ -2729,7 +2729,7 @@ msgid "Type"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:467 #: lib/block_scout_web/templates/transaction/overview.html.eex:461
msgid "UTF-8" msgid "UTF-8"
msgstr "" msgstr ""
@ -2750,7 +2750,7 @@ msgid "Uncles"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:342 #: lib/block_scout_web/views/transaction_view.ex:341
msgid "Unconfirmed" msgid "Unconfirmed"
msgstr "" msgstr ""
@ -2787,12 +2787,12 @@ msgid "Use the search box to find a hosted network, or select from the list of a
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:397 #: lib/block_scout_web/templates/transaction/overview.html.eex:391
msgid "User defined maximum fee (tip) per unit of gas paid to validator for transaction prioritization." msgid "User defined maximum fee (tip) per unit of gas paid to validator for transaction prioritization."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:407 #: lib/block_scout_web/templates/transaction/overview.html.eex:401
msgid "User-defined tip sent to validator for transaction priority/inclusion." msgid "User-defined tip sent to validator for transaction priority/inclusion."
msgstr "" msgstr ""
@ -2842,12 +2842,12 @@ msgid "Validator pools can be banned for misbehavior (such as not revealing secr
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:329 #: lib/block_scout_web/templates/transaction/overview.html.eex:323
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:328 #: lib/block_scout_web/templates/transaction/overview.html.eex:322
msgid "Value sent in the native token (and USD) if applicable." msgid "Value sent in the native token (and USD) if applicable."
msgstr "" msgstr ""
@ -3089,7 +3089,7 @@ msgid "balance of the address"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:417 #: lib/block_scout_web/templates/transaction/overview.html.eex:411
msgid "burned for this transaction. Equals Block Base Fee per Gas * Gas Used." msgid "burned for this transaction. Equals Block Base Fee per Gas * Gas Used."
msgstr "" msgstr ""
@ -3109,7 +3109,7 @@ msgid "candidate"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:234 #: lib/block_scout_web/templates/transaction/overview.html.eex:228
msgid "created" msgid "created"
msgstr "" msgstr ""

Loading…
Cancel
Save