Spread Circles theme on all created contracts

pull/3411/head
Victor Baranov 4 years ago
parent ded5bf6d07
commit ae64db5c72
  1. 23
      apps/block_scout_web/assets/css/theme/custom_contracts/_circles-theme.scss
  2. 5
      apps/block_scout_web/lib/block_scout_web/templates/address/overview.html.eex
  3. 60
      apps/block_scout_web/lib/block_scout_web/templates/layout/app.html.eex
  4. 6
      apps/block_scout_web/lib/block_scout_web/templates/tokens/overview/_details.html.eex
  5. 6
      apps/block_scout_web/lib/block_scout_web/templates/transaction/overview.html.eex
  6. 3
      apps/block_scout_web/lib/block_scout_web/views/layout_view.ex
  7. 3
      apps/block_scout_web/lib/block_scout_web/views/tokens/overview_view.ex
  8. 1
      apps/block_scout_web/lib/block_scout_web/views/transaction_view.ex
  9. 158
      apps/block_scout_web/priv/gettext/default.pot
  10. 158
      apps/block_scout_web/priv/gettext/en/LC_MESSAGES/default.po

@ -236,21 +236,6 @@ $c-dark-text-color: #8a8dba;
height: 32px; height: 32px;
} }
// table
.stakes-table-th {
background-color: $c-primary;
color: $text2;
}
.stakes-td {
border-bottom-color: darken($text2, 30);
}
.table th, .table td {
border-top-color: darken($text2, 30);
}
hr {
border-top-color: darken($text2, 30);
}
// download csv button // download csv button
.download-all-transactions .download-all-transactions-link svg path { .download-all-transactions .download-all-transactions-link svg path {
fill: $c-primary; fill: $c-primary;
@ -408,14 +393,6 @@ $c-dark-text-color: #8a8dba;
} }
} }
// Decoded data
.table-bordered, .table-bordered td, .table-bordered th {
border-color: darken($text2, 30);
}
.circles-theme-applied .table td, .circles-theme-applied .table th, .circles-theme-applied hr {
border-top-color: darken($text2, 30);
}
#qrModal { #qrModal {
.modal-content { .modal-content {

@ -2,6 +2,7 @@
<% dark_forest_addresses_list = CustomContractsHelpers.get_custom_addresses_list(:dark_forest_addresses) %> <% dark_forest_addresses_list = CustomContractsHelpers.get_custom_addresses_list(:dark_forest_addresses) %>
<% circles_addresses_list = CustomContractsHelpers.get_custom_addresses_list(:circles_addresses) %> <% circles_addresses_list = CustomContractsHelpers.get_custom_addresses_list(:circles_addresses) %>
<% current_address = "0x" <> Base.encode16(@address.hash.bytes, case: :lower) %> <% current_address = "0x" <> Base.encode16(@address.hash.bytes, case: :lower) %>
<% created_from_address_hash = if from_address_hash(@address), do: "0x" <> Base.encode16(from_address_hash(@address).bytes, case: :lower), else: nil %>
<div class="row"> <div class="row">
<!-- Address details --> <!-- Address details -->
<div class="card-section col-md-12 col-lg-8 pr-0-md"> <div class="card-section col-md-12 col-lg-8 pr-0-md">
@ -32,6 +33,10 @@
<div class="custom-dapp-header-container"> <div class="custom-dapp-header-container">
<img class="custom-address-icon"/> <img class="custom-address-icon"/>
</div> </div>
<% Enum.member?(circles_addresses_list, created_from_address_hash) -> %>
<div class="custom-dapp-header-container">
<img class="custom-address-icon"/>
</div>
<% true -> %> <% true -> %>
<%= nil %> <%= nil %>
<% end %> <% end %>

@ -47,6 +47,8 @@
@view_module == Elixir.BlockScoutWeb.TransactionTokenTransferView @view_module == Elixir.BlockScoutWeb.TransactionTokenTransferView
) -> %> ) -> %>
<% to_address = @transaction && @transaction.to_address && "0x" <> Base.encode16(@transaction.to_address.hash.bytes, case: :lower) %> <% to_address = @transaction && @transaction.to_address && "0x" <> Base.encode16(@transaction.to_address.hash.bytes, case: :lower) %>
<% {:ok, created_from_address} = if @transaction.to_address_hash, do: Chain.hash_to_address(@transaction.to_address_hash), else: {:ok, nil} %>
<% created_from_address_hash_str = if from_address_hash(created_from_address), do: "0x" <> Base.encode16(from_address_hash(created_from_address).bytes, case: :lower), else: nil %>
<script> <script>
function applyCustomMode() { function applyCustomMode() {
applyCustomTheme("<%= raw_dark_forest_addresses %>", "dark-forest-theme-applied") applyCustomTheme("<%= raw_dark_forest_addresses %>", "dark-forest-theme-applied")
@ -56,9 +58,13 @@
if (contractAddressHashesRaw !== "") { if (contractAddressHashesRaw !== "") {
const contractAddressHashes = contractAddressHashesRaw.split(',').map(hash => hash.toLowerCase()) const contractAddressHashes = contractAddressHashesRaw.split(',').map(hash => hash.toLowerCase())
const to_address = "<%= to_address %>" const to_address = "<%= to_address %>"
const created_from_address_hash_str = "<%= created_from_address_hash_str %>"
contractAddressHashes.forEach(contractAddressHash => { contractAddressHashes.forEach(contractAddressHash => {
if (to_address == contractAddressHash) { if (contractAddressHash == to_address) {
document.body.className += " " + customClass;
return;
} else if (contractAddressHash == created_from_address_hash_str) {
document.body.className += " " + customClass; document.body.className += " " + customClass;
return; return;
} }
@ -69,7 +75,21 @@
window.onload = applyCustomMode() window.onload = applyCustomMode()
</script> </script>
<% true -> %> <% (
@view_module == Elixir.BlockScoutWeb.AddressTransactionView ||
@view_module == Elixir.BlockScoutWeb.AddressTokenTransferView ||
@view_module == Elixir.BlockScoutWeb.AddressTokenView ||
@view_module == Elixir.BlockScoutWeb.AddressInternalTransactionView ||
@view_module == Elixir.BlockScoutWeb.AddressCoinBalanceView ||
@view_module == Elixir.BlockScoutWeb.AddressLogsView ||
@view_module == Elixir.BlockScoutWeb.AddressValidationView ||
@view_module == Elixir.BlockScoutWeb.AddressContractView ||
@view_module == Elixir.BlockScoutWeb.AddressReadContractView ||
@view_module == Elixir.BlockScoutWeb.AddressReadProxyView ||
@view_module == Elixir.BlockScoutWeb.AddressWriteContractView ||
@view_module == Elixir.BlockScoutWeb.AddressWriteProxyView
) -> %>
<% created_from_address = if @address && from_address_hash(@address), do: "0x" <> Base.encode16(from_address_hash(@address).bytes, case: :lower), else: nil %>
<script> <script>
function applyCustomMode() { function applyCustomMode() {
applyCustomTheme("<%= raw_dark_forest_addresses %>", "dark-forest-theme-applied") applyCustomTheme("<%= raw_dark_forest_addresses %>", "dark-forest-theme-applied")
@ -78,10 +98,14 @@
function applyCustomTheme(contractAddressHashesRaw, customClass) { function applyCustomTheme(contractAddressHashesRaw, customClass) {
if (contractAddressHashesRaw !== "") { if (contractAddressHashesRaw !== "") {
const contractAddressHashes = contractAddressHashesRaw.split(',').map(hash => hash.toLowerCase()) const contractAddressHashes = contractAddressHashesRaw.split(',').map(hash => hash.toLowerCase())
const created_from_address = "<%= created_from_address %>"
contractAddressHashes.forEach(contractAddressHash => { contractAddressHashes.forEach(contractAddressHash => {
if (window.location.pathname.toLowerCase().includes(contractAddressHash)) { if (window.location.pathname.toLowerCase().includes(contractAddressHash)) {
document.body.className += " " + customClass; document.body.className += " " + customClass;
return; return;
} else if (contractAddressHash == created_from_address) {
document.body.className += " " + customClass;
return;
} }
}) })
} }
@ -89,6 +113,38 @@
window.onload = applyCustomMode() window.onload = applyCustomMode()
</script> </script>
<% (
@view_module == Elixir.BlockScoutWeb.Tokens.TransferView ||
@view_module == Elixir.BlockScoutWeb.Tokens.ReadContractView ||
@view_module == Elixir.BlockScoutWeb.Tokens.HolderView
) -> %>
<% {:ok, created_from_address} = if @token.contract_address_hash, do: Chain.hash_to_address(@token.contract_address_hash), else: {:ok, nil} %>
<% created_from_address_hash = if from_address_hash(created_from_address), do: "0x" <> Base.encode16(from_address_hash(created_from_address).bytes, case: :lower), else: nil %>
<script>
function applyCustomMode() {
applyCustomTheme("<%= raw_dark_forest_addresses %>", "dark-forest-theme-applied")
applyCustomTheme("<%= raw_circles_addresses %>", "circles-theme-applied")
}
function applyCustomTheme(contractAddressHashesRaw, customClass) {
if (contractAddressHashesRaw !== "") {
const contractAddressHashes = contractAddressHashesRaw.split(',').map(hash => hash.toLowerCase())
const created_from_address_hash = "<%= created_from_address_hash %>"
contractAddressHashes.forEach(contractAddressHash => {
if (window.location.pathname.toLowerCase().includes(contractAddressHash)) {
document.body.className += " " + customClass;
return;
} else if (contractAddressHash == created_from_address_hash) {
document.body.className += " " + customClass;
return;
}
})
}
}
window.onload = applyCustomMode()
</script>
<% true -> %>
<%= nil %>
<% end %> <% end %>
<script> <script>
function applyDarkMode() { function applyDarkMode() {

@ -1,5 +1,7 @@
<% circles_addresses_list = CustomContractsHelpers.get_custom_addresses_list(:circles_addresses) %> <% circles_addresses_list = CustomContractsHelpers.get_custom_addresses_list(:circles_addresses) %>
<% address_hash_str = "0x" <> Base.encode16(@token.contract_address_hash.bytes, case: :lower) %> <% address_hash_str = "0x" <> Base.encode16(@token.contract_address_hash.bytes, case: :lower) %>
<% {:ok, created_from_address} = if @token.contract_address_hash, do: Chain.hash_to_address(@token.contract_address_hash), else: {:ok, nil} %>
<% created_from_address_hash = if from_address_hash(created_from_address), do: "0x" <> Base.encode16(from_address_hash(created_from_address).bytes, case: :lower), else: nil %>
<section class="address-overview" data-page="token-details" data-page-address-hash="<%= @token.contract_address_hash %>"> <section class="address-overview" data-page="token-details" data-page-address-hash="<%= @token.contract_address_hash %>">
<div class="row"> <div class="row">
<div class="card-section col-md-12 col-lg-8 pr-0-md"> <div class="card-section col-md-12 col-lg-8 pr-0-md">
@ -11,6 +13,10 @@
<div class="custom-dapp-header-container"> <div class="custom-dapp-header-container">
<img class="custom-address-icon"/> <img class="custom-address-icon"/>
</div> </div>
<% Enum.member?(circles_addresses_list, created_from_address_hash) -> %>
<div class="custom-dapp-header-container">
<img class="custom-address-icon"/>
</div>
<% true -> %> <% true -> %>
<%= nil %> <%= nil %>
<% end %> <% end %>

@ -3,6 +3,8 @@
<% status = transaction_status(@transaction) %> <% status = transaction_status(@transaction) %>
<% circles_addresses_list = CustomContractsHelpers.get_custom_addresses_list(:circles_addresses) %> <% circles_addresses_list = CustomContractsHelpers.get_custom_addresses_list(:circles_addresses) %>
<% address_hash_str = if @transaction.to_address_hash, do: "0x" <> Base.encode16(@transaction.to_address_hash.bytes, case: :lower), else: nil %> <% address_hash_str = if @transaction.to_address_hash, do: "0x" <> Base.encode16(@transaction.to_address_hash.bytes, case: :lower), else: nil %>
<% {:ok, created_from_address} = if @transaction.to_address_hash, do: Chain.hash_to_address(@transaction.to_address_hash), else: {:ok, nil} %>
<% created_from_address_hash_str = if from_address_hash(created_from_address), do: "0x" <> Base.encode16(from_address_hash(created_from_address).bytes, case: :lower), else: nil %>
<section data-page="transaction-details" data-page-transaction-hash="<%= @transaction %>"> <section data-page="transaction-details" data-page-transaction-hash="<%= @transaction %>">
<div class="row"> <div class="row">
<div class="col-md-12 col-lg-8 pr-0-md"> <div class="col-md-12 col-lg-8 pr-0-md">
@ -14,6 +16,10 @@
<div class="custom-dapp-header-container"> <div class="custom-dapp-header-container">
<img class="custom-address-icon"/> <img class="custom-address-icon"/>
</div> </div>
<% Enum.member?(circles_addresses_list, created_from_address_hash_str) -> %>
<div class="custom-dapp-header-container">
<img class="custom-address-icon"/>
</div>
<% true -> %> <% true -> %>
<%= nil %> <%= nil %>
<% end %> <% end %>

@ -1,9 +1,12 @@
defmodule BlockScoutWeb.LayoutView do defmodule BlockScoutWeb.LayoutView do
use BlockScoutWeb, :view use BlockScoutWeb, :view
alias Explorer.Chain
alias Plug.Conn alias Plug.Conn
alias Poison.Parser alias Poison.Parser
import BlockScoutWeb.AddressView, only: [from_address_hash: 1]
@issue_url "https://github.com/poanetwork/blockscout/issues/new" @issue_url "https://github.com/poanetwork/blockscout/issues/new"
@default_other_networks [ @default_other_networks [
%{ %{

@ -1,10 +1,13 @@
defmodule BlockScoutWeb.Tokens.OverviewView do defmodule BlockScoutWeb.Tokens.OverviewView do
use BlockScoutWeb, :view use BlockScoutWeb, :view
alias Explorer.Chain
alias Explorer.Chain.{Address, SmartContract, Token} alias Explorer.Chain.{Address, SmartContract, Token}
alias BlockScoutWeb.{AccessHelpers, CurrencyHelpers, CustomContractsHelpers, LayoutView} alias BlockScoutWeb.{AccessHelpers, CurrencyHelpers, CustomContractsHelpers, LayoutView}
import BlockScoutWeb.AddressView, only: [from_address_hash: 1]
@tabs ["token-transfers", "token-holders", "read-contract", "inventory"] @tabs ["token-transfers", "token-holders", "read-contract", "inventory"]
@etherscan_token_link "https://etherscan.io/token/" @etherscan_token_link "https://etherscan.io/token/"
@blockscout_base_link "https://blockscout.com/" @blockscout_base_link "https://blockscout.com/"

@ -11,6 +11,7 @@ defmodule BlockScoutWeb.TransactionView do
alias Timex.Duration alias Timex.Duration
import BlockScoutWeb.Gettext import BlockScoutWeb.Gettext
import BlockScoutWeb.AddressView, only: [from_address_hash: 1]
import BlockScoutWeb.Tokens.Helpers import BlockScoutWeb.Tokens.Helpers
@tabs ["token-transfers", "internal-transactions", "logs", "raw-trace"] @tabs ["token-transfers", "internal-transactions", "logs", "raw-trace"]

@ -13,7 +13,7 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:214 #: lib/block_scout_web/templates/transaction/overview.html.eex:220
msgid " Token Transfer" msgid " Token Transfer"
msgstr "" msgstr ""
@ -59,7 +59,7 @@ msgid "%{subnetwork} Explorer - BlockScout"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:251 #: lib/block_scout_web/views/transaction_view.ex:252
msgid "(Awaiting internal transactions for status)" msgid "(Awaiting internal transactions for status)"
msgstr "" msgstr ""
@ -72,7 +72,7 @@ msgid "(query)"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/app.html.eex:111 #: lib/block_scout_web/templates/layout/app.html.eex:167
msgid "- We're indexing this chain right now. Some of the counts may be inaccurate." msgid "- We're indexing this chain right now. Some of the counts may be inaccurate."
msgstr "" msgstr ""
@ -196,7 +196,7 @@ msgid "Block %{block_number} - %{subnetwork} Explorer"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:90 #: lib/block_scout_web/templates/transaction/overview.html.eex:96
msgid "Block Confirmations" msgid "Block Confirmations"
msgstr "" msgstr ""
@ -216,12 +216,12 @@ msgid "Block Mined, awaiting import..."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:76 #: lib/block_scout_web/templates/transaction/overview.html.eex:82
msgid "Block Number" msgid "Block Number"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:33 #: lib/block_scout_web/views/transaction_view.ex:34
msgid "Block Pending" msgid "Block Pending"
msgstr "" msgstr ""
@ -359,12 +359,12 @@ msgid "Contract Byte Code"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:340 #: lib/block_scout_web/views/transaction_view.ex:341
msgid "Contract Call" msgid "Contract Call"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:337 #: lib/block_scout_web/views/transaction_view.ex:338
msgid "Contract Creation" msgid "Contract Creation"
msgstr "" msgstr ""
@ -409,10 +409,10 @@ msgid "Copy ABI"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:44 #: lib/block_scout_web/templates/address/overview.html.eex:49
#: lib/block_scout_web/templates/address/overview.html.eex:48 #: lib/block_scout_web/templates/address/overview.html.eex:53
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:26 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:32
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:30 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:36
msgid "Copy Address" msgid "Copy Address"
msgstr "" msgstr ""
@ -432,12 +432,12 @@ msgid "Copy Source Code"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:26 #: lib/block_scout_web/templates/transaction/overview.html.eex:32
msgid "Copy Transaction Hash" msgid "Copy Transaction Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:30 #: lib/block_scout_web/templates/transaction/overview.html.eex:36
msgid "Copy Txn Hash" msgid "Copy Txn Hash"
msgstr "" msgstr ""
@ -463,7 +463,7 @@ msgid "Create2"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:131 #: lib/block_scout_web/templates/address/overview.html.eex:136
msgid "Created by" msgid "Created by"
msgstr "" msgstr ""
@ -534,7 +534,7 @@ msgid "Description"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:39 #: lib/block_scout_web/templates/address/overview.html.eex:44
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:166 #: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:166
#: lib/block_scout_web/templates/api_docs/_eth_rpc_item.html.eex:127 #: lib/block_scout_web/templates/api_docs/_eth_rpc_item.html.eex:127
msgid "Details" msgid "Details"
@ -551,12 +551,12 @@ msgid "During times when the network is busy (i.e during ICOs) it can take a whi
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:137 #: lib/block_scout_web/views/transaction_view.ex:138
msgid "ERC-20 " msgid "ERC-20 "
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:138 #: lib/block_scout_web/views/transaction_view.ex:139
msgid "ERC-721 " msgid "ERC-721 "
msgstr "" msgstr ""
@ -615,17 +615,17 @@ msgid "Error trying to fetch balances."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:255 #: lib/block_scout_web/views/transaction_view.ex:256
msgid "Error: %{reason}" msgid "Error: %{reason}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:253 #: lib/block_scout_web/views/transaction_view.ex:254
msgid "Error: (Awaiting internal transactions for reason)" msgid "Error: (Awaiting internal transactions for reason)"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:144 #: lib/block_scout_web/templates/address/overview.html.eex:149
msgid "Error: Could not determine contract creator." msgid "Error: Could not determine contract creator."
msgstr "" msgstr ""
@ -640,8 +640,8 @@ msgstr ""
#: lib/block_scout_web/templates/layout/app.html.eex:33 #: lib/block_scout_web/templates/layout/app.html.eex:33
#: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20 #: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20
#: lib/block_scout_web/templates/transaction/_tile.html.eex:29 #: lib/block_scout_web/templates/transaction/_tile.html.eex:29
#: lib/block_scout_web/templates/transaction/overview.html.eex:199 #: lib/block_scout_web/templates/transaction/overview.html.eex:205
#: lib/block_scout_web/templates/transaction/overview.html.eex:273 #: lib/block_scout_web/templates/transaction/overview.html.eex:279
#: lib/block_scout_web/views/wei_helpers.ex:78 #: lib/block_scout_web/views/wei_helpers.ex:78
msgid "Ether" msgid "Ether"
msgstr "" msgstr ""
@ -660,7 +660,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/overview.html.eex:73 #: lib/block_scout_web/templates/block/overview.html.eex:73
#: lib/block_scout_web/templates/transaction/overview.html.eex:97 #: lib/block_scout_web/templates/transaction/overview.html.eex:103
msgid "Nonce" msgid "Nonce"
msgstr "" msgstr ""
@ -748,8 +748,8 @@ msgid "Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:133 #: lib/block_scout_web/templates/transaction/overview.html.eex:139
#: lib/block_scout_web/templates/transaction/overview.html.eex:137 #: lib/block_scout_web/templates/transaction/overview.html.eex:143
msgid "Hex (Default)" msgid "Hex (Default)"
msgstr "" msgstr ""
@ -771,7 +771,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:252 #: lib/block_scout_web/views/transaction_view.ex:253
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@ -784,7 +784,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:21 #: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:21
#: lib/block_scout_web/templates/transaction/_tile.html.eex:32 #: lib/block_scout_web/templates/transaction/_tile.html.eex:32
#: lib/block_scout_web/templates/transaction/overview.html.eex:102 #: lib/block_scout_web/templates/transaction/overview.html.eex:108
msgid "TX Fee" msgid "TX Fee"
msgstr "" msgstr ""
@ -846,7 +846,7 @@ msgid "There are no transfers for this Token."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:45 #: lib/block_scout_web/templates/transaction/overview.html.eex:51
msgid "This transaction is pending confirmation." msgid "This transaction is pending confirmation."
msgstr "" msgstr ""
@ -867,14 +867,14 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:10 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:10
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:20 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:26
msgid "Token Details" msgid "Token Details"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:15 #: lib/block_scout_web/templates/tokens/holder/index.html.eex:15
#: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:9 #: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:9
#: lib/block_scout_web/views/tokens/overview_view.ex:38 #: lib/block_scout_web/views/tokens/overview_view.ex:41
msgid "Token Holders" msgid "Token Holders"
msgstr "" msgstr ""
@ -886,7 +886,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:12 #: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:12
#: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:10 #: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:10
#: lib/block_scout_web/views/transaction_view.ex:333 #: lib/block_scout_web/views/transaction_view.ex:334
msgid "Token Transfer" msgid "Token Transfer"
msgstr "" msgstr ""
@ -901,8 +901,8 @@ msgstr ""
#: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:7 #: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:7
#: lib/block_scout_web/views/address_view.ex:350 #: lib/block_scout_web/views/address_view.ex:350
#: lib/block_scout_web/views/tokens/instance/overview_view.ex:119 #: lib/block_scout_web/views/tokens/instance/overview_view.ex:119
#: lib/block_scout_web/views/tokens/overview_view.ex:37 #: lib/block_scout_web/views/tokens/overview_view.ex:40
#: lib/block_scout_web/views/transaction_view.ex:394 #: lib/block_scout_web/views/transaction_view.ex:395
msgid "Token Transfers" msgid "Token Transfers"
msgstr "" msgstr ""
@ -918,7 +918,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_logs/_logs.html.eex:18 #: lib/block_scout_web/templates/address_logs/_logs.html.eex:18
#: lib/block_scout_web/views/transaction_view.ex:343 #: lib/block_scout_web/views/transaction_view.ex:344
msgid "Transaction" msgid "Transaction"
msgstr "" msgstr ""
@ -950,7 +950,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/inventory/index.html.eex:15 #: lib/block_scout_web/templates/tokens/inventory/index.html.eex:15
#: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:17 #: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:17
#: lib/block_scout_web/views/tokens/overview_view.ex:40 #: lib/block_scout_web/views/tokens/overview_view.ex:43
msgid "Inventory" msgid "Inventory"
msgstr "" msgstr ""
@ -960,7 +960,7 @@ msgid "It could still be in the TX Pool of a different node, waiting to be broad
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:116 #: lib/block_scout_web/templates/address/overview.html.eex:121
msgid "Last Balance Update: Block #" msgid "Last Balance Update: Block #"
msgstr "" msgstr ""
@ -998,7 +998,7 @@ msgid "License ID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:301 #: lib/block_scout_web/templates/transaction/overview.html.eex:307
msgid "Limit" msgid "Limit"
msgstr "" msgstr ""
@ -1039,7 +1039,7 @@ msgid "Market Cap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:232 #: lib/block_scout_web/views/transaction_view.ex:233
msgid "Max of" msgid "Max of"
msgstr "" msgstr ""
@ -1150,8 +1150,8 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:65 #: lib/block_scout_web/templates/layout/_topnav.html.eex:65
#: lib/block_scout_web/views/transaction_view.ex:250 #: lib/block_scout_web/views/transaction_view.ex:251
#: lib/block_scout_web/views/transaction_view.ex:284 #: lib/block_scout_web/views/transaction_view.ex:285
msgid "Pending" msgid "Pending"
msgstr "" msgstr ""
@ -1172,12 +1172,12 @@ msgid "Price"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:64 #: lib/block_scout_web/templates/address/overview.html.eex:69
#: lib/block_scout_web/templates/address/overview.html.eex:168 #: lib/block_scout_web/templates/address/overview.html.eex:173
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:51 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:51
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:107 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:107
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:46 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:52
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:131 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:137
msgid "QR Code" msgid "QR Code"
msgstr "" msgstr ""
@ -1192,14 +1192,14 @@ msgid "RPC"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:127 #: lib/block_scout_web/templates/transaction/overview.html.eex:133
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/templates/transaction_raw_trace/index.html.eex:7
#: lib/block_scout_web/views/transaction_view.ex:397 #: lib/block_scout_web/views/transaction_view.ex:398
msgid "Raw Trace" msgid "Raw Trace"
msgstr "" msgstr ""
@ -1284,14 +1284,14 @@ msgid "Show"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:65 #: lib/block_scout_web/templates/address/overview.html.eex:70
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:52 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:52
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:47 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:53
msgid "Show QR Code" msgid "Show QR Code"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:79 #: lib/block_scout_web/templates/address/overview.html.eex:84
msgid "Show Validator Info" msgid "Show Validator Info"
msgstr "" msgstr ""
@ -1448,7 +1448,7 @@ msgid "Topics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:101 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:107
msgid "Total Supply" msgid "Total Supply"
msgstr "" msgstr ""
@ -1468,7 +1468,7 @@ msgid "Transaction %{transaction}, %{subnetwork} %{transaction}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:21 #: lib/block_scout_web/templates/transaction/overview.html.eex:27
msgid "Transaction Details" msgid "Transaction Details"
msgstr "" msgstr ""
@ -1479,7 +1479,7 @@ msgid "Transaction Inputs"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:119 #: lib/block_scout_web/templates/transaction/overview.html.eex:125
msgid "Transaction Speed" msgid "Transaction Speed"
msgstr "" msgstr ""
@ -1506,7 +1506,7 @@ msgid "Type"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:140 #: lib/block_scout_web/templates/transaction/overview.html.eex:146
msgid "UTF-8" msgid "UTF-8"
msgstr "" msgstr ""
@ -1532,7 +1532,7 @@ 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:295 #: lib/block_scout_web/templates/transaction/overview.html.eex:301
msgid "Used" msgid "Used"
msgstr "" msgstr ""
@ -1557,13 +1557,13 @@ msgid "Validator Data"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:83 #: lib/block_scout_web/templates/address/overview.html.eex:88
msgid "Validator Info" msgid "Validator Info"
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:205
#: lib/block_scout_web/templates/transaction/overview.html.eex:273 #: lib/block_scout_web/templates/transaction/overview.html.eex:279
msgid "Value" msgid "Value"
msgstr "" msgstr ""
@ -1605,7 +1605,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:16 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:16
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:20 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:20
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:81 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:87
msgid "View Contract" msgid "View Contract"
msgstr "" msgstr ""
@ -1658,7 +1658,7 @@ msgid "Yes"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:136 #: lib/block_scout_web/templates/address/overview.html.eex:141
msgid "at" msgid "at"
msgstr "" msgstr ""
@ -1716,12 +1716,12 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/_validator_metadata_modal.html.eex:37 #: lib/block_scout_web/templates/address/_validator_metadata_modal.html.eex:37
#: lib/block_scout_web/templates/address/overview.html.eex:169 #: lib/block_scout_web/templates/address/overview.html.eex:174
#: lib/block_scout_web/templates/address/overview.html.eex:177 #: lib/block_scout_web/templates/address/overview.html.eex:182
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:108 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:108
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:116 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:116
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:132 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:138
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:140 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:146
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1738,12 +1738,12 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:76 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:76
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:89 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:95
msgid "Decimals" msgid "Decimals"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:291 #: lib/block_scout_web/templates/transaction/overview.html.eex:297
msgid "Gas" msgid "Gas"
msgstr "" msgstr ""
@ -1790,8 +1790,8 @@ msgid "Transfers"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:152 #: lib/block_scout_web/templates/transaction/overview.html.eex:158
#: lib/block_scout_web/templates/transaction/overview.html.eex:165 #: lib/block_scout_web/templates/transaction/overview.html.eex:171
msgid "Copy Txn Input" msgid "Copy Txn Input"
msgstr "" msgstr ""
@ -1829,7 +1829,7 @@ msgstr ""
#: lib/block_scout_web/templates/transaction/_tabs.html.eex:11 #: 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/templates/transaction_internal_transaction/index.html.eex:6
#: lib/block_scout_web/views/address_view.ex:348 #: lib/block_scout_web/views/address_view.ex:348
#: lib/block_scout_web/views/transaction_view.ex:395 #: lib/block_scout_web/views/transaction_view.ex:396
msgid "Internal Transactions" msgid "Internal Transactions"
msgstr "" msgstr ""
@ -1839,7 +1839,7 @@ msgstr ""
#: lib/block_scout_web/templates/transaction/_tabs.html.eex:17 #: 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/templates/transaction_log/index.html.eex:8
#: lib/block_scout_web/views/address_view.ex:359 #: lib/block_scout_web/views/address_view.ex:359
#: lib/block_scout_web/views/transaction_view.ex:396 #: lib/block_scout_web/views/transaction_view.ex:397
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
@ -1847,7 +1847,7 @@ msgstr ""
#: lib/block_scout_web/templates/address/_tabs.html.eex:79 #: lib/block_scout_web/templates/address/_tabs.html.eex:79
#: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:25 #: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:25
#: lib/block_scout_web/views/address_view.ex:353 #: lib/block_scout_web/views/address_view.ex:353
#: lib/block_scout_web/views/tokens/overview_view.ex:39 #: lib/block_scout_web/views/tokens/overview_view.ex:42
msgid "Read Contract" msgid "Read Contract"
msgstr "" msgstr ""
@ -1874,26 +1874,26 @@ msgid "Transactions"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:250 #: lib/block_scout_web/templates/transaction/overview.html.eex:256
msgid " Token Burning" msgid " Token Burning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:8 #: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:8
#: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:6 #: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:6
#: lib/block_scout_web/views/transaction_view.ex:332 #: lib/block_scout_web/views/transaction_view.ex:333
msgid "Token Burning" msgid "Token Burning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:232 #: lib/block_scout_web/templates/transaction/overview.html.eex:238
msgid " Token Minting" msgid " Token Minting"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:10 #: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:10
#: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:8 #: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:8
#: lib/block_scout_web/views/transaction_view.ex:331 #: lib/block_scout_web/views/transaction_view.ex:332
msgid "Token Minting" msgid "Token Minting"
msgstr "" msgstr ""
@ -1903,7 +1903,7 @@ msgid "Chore Reward"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:68 #: lib/block_scout_web/templates/transaction/overview.html.eex:74
msgid "Revert reason" msgid "Revert reason"
msgstr "" msgstr ""
@ -1988,13 +1988,13 @@ msgid "Bridged Tokens"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:16 #: lib/block_scout_web/templates/address/overview.html.eex:17
msgid "zkSnark space warfare (v0.4)" msgid "zkSnark space warfare (v0.4)"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:20 #: lib/block_scout_web/templates/address/overview.html.eex:21
#: lib/block_scout_web/templates/address/overview.html.eex:24 #: lib/block_scout_web/templates/address/overview.html.eex:25
msgid "Play" msgid "Play"
msgstr "" msgstr ""

@ -13,7 +13,7 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:214 #: lib/block_scout_web/templates/transaction/overview.html.eex:220
msgid " Token Transfer" msgid " Token Transfer"
msgstr "" msgstr ""
@ -59,7 +59,7 @@ msgid "%{subnetwork} Explorer - BlockScout"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:251 #: lib/block_scout_web/views/transaction_view.ex:252
msgid "(Awaiting internal transactions for status)" msgid "(Awaiting internal transactions for status)"
msgstr "" msgstr ""
@ -72,7 +72,7 @@ msgid "(query)"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/app.html.eex:111 #: lib/block_scout_web/templates/layout/app.html.eex:167
msgid "- We're indexing this chain right now. Some of the counts may be inaccurate." msgid "- We're indexing this chain right now. Some of the counts may be inaccurate."
msgstr "" msgstr ""
@ -196,7 +196,7 @@ msgid "Block %{block_number} - %{subnetwork} Explorer"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:90 #: lib/block_scout_web/templates/transaction/overview.html.eex:96
msgid "Block Confirmations" msgid "Block Confirmations"
msgstr "" msgstr ""
@ -216,12 +216,12 @@ msgid "Block Mined, awaiting import..."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:76 #: lib/block_scout_web/templates/transaction/overview.html.eex:82
msgid "Block Number" msgid "Block Number"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:33 #: lib/block_scout_web/views/transaction_view.ex:34
msgid "Block Pending" msgid "Block Pending"
msgstr "" msgstr ""
@ -359,12 +359,12 @@ msgid "Contract Byte Code"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:340 #: lib/block_scout_web/views/transaction_view.ex:341
msgid "Contract Call" msgid "Contract Call"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:337 #: lib/block_scout_web/views/transaction_view.ex:338
msgid "Contract Creation" msgid "Contract Creation"
msgstr "" msgstr ""
@ -409,10 +409,10 @@ msgid "Copy ABI"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:44 #: lib/block_scout_web/templates/address/overview.html.eex:49
#: lib/block_scout_web/templates/address/overview.html.eex:48 #: lib/block_scout_web/templates/address/overview.html.eex:53
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:26 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:32
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:30 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:36
msgid "Copy Address" msgid "Copy Address"
msgstr "" msgstr ""
@ -432,12 +432,12 @@ msgid "Copy Source Code"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:26 #: lib/block_scout_web/templates/transaction/overview.html.eex:32
msgid "Copy Transaction Hash" msgid "Copy Transaction Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:30 #: lib/block_scout_web/templates/transaction/overview.html.eex:36
msgid "Copy Txn Hash" msgid "Copy Txn Hash"
msgstr "" msgstr ""
@ -463,7 +463,7 @@ msgid "Create2"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:131 #: lib/block_scout_web/templates/address/overview.html.eex:136
msgid "Created by" msgid "Created by"
msgstr "" msgstr ""
@ -534,7 +534,7 @@ msgid "Description"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:39 #: lib/block_scout_web/templates/address/overview.html.eex:44
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:166 #: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:166
#: lib/block_scout_web/templates/api_docs/_eth_rpc_item.html.eex:127 #: lib/block_scout_web/templates/api_docs/_eth_rpc_item.html.eex:127
msgid "Details" msgid "Details"
@ -551,12 +551,12 @@ msgid "During times when the network is busy (i.e during ICOs) it can take a whi
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:137 #: lib/block_scout_web/views/transaction_view.ex:138
msgid "ERC-20 " msgid "ERC-20 "
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:138 #: lib/block_scout_web/views/transaction_view.ex:139
msgid "ERC-721 " msgid "ERC-721 "
msgstr "" msgstr ""
@ -615,17 +615,17 @@ msgid "Error trying to fetch balances."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:255 #: lib/block_scout_web/views/transaction_view.ex:256
msgid "Error: %{reason}" msgid "Error: %{reason}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:253 #: lib/block_scout_web/views/transaction_view.ex:254
msgid "Error: (Awaiting internal transactions for reason)" msgid "Error: (Awaiting internal transactions for reason)"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:144 #: lib/block_scout_web/templates/address/overview.html.eex:149
msgid "Error: Could not determine contract creator." msgid "Error: Could not determine contract creator."
msgstr "" msgstr ""
@ -640,8 +640,8 @@ msgstr ""
#: lib/block_scout_web/templates/layout/app.html.eex:33 #: lib/block_scout_web/templates/layout/app.html.eex:33
#: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20 #: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20
#: lib/block_scout_web/templates/transaction/_tile.html.eex:29 #: lib/block_scout_web/templates/transaction/_tile.html.eex:29
#: lib/block_scout_web/templates/transaction/overview.html.eex:199 #: lib/block_scout_web/templates/transaction/overview.html.eex:205
#: lib/block_scout_web/templates/transaction/overview.html.eex:273 #: lib/block_scout_web/templates/transaction/overview.html.eex:279
#: lib/block_scout_web/views/wei_helpers.ex:78 #: lib/block_scout_web/views/wei_helpers.ex:78
msgid "Ether" msgid "Ether"
msgstr "" msgstr ""
@ -660,7 +660,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/overview.html.eex:73 #: lib/block_scout_web/templates/block/overview.html.eex:73
#: lib/block_scout_web/templates/transaction/overview.html.eex:97 #: lib/block_scout_web/templates/transaction/overview.html.eex:103
msgid "Nonce" msgid "Nonce"
msgstr "" msgstr ""
@ -748,8 +748,8 @@ msgid "Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:133 #: lib/block_scout_web/templates/transaction/overview.html.eex:139
#: lib/block_scout_web/templates/transaction/overview.html.eex:137 #: lib/block_scout_web/templates/transaction/overview.html.eex:143
msgid "Hex (Default)" msgid "Hex (Default)"
msgstr "" msgstr ""
@ -771,7 +771,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:252 #: lib/block_scout_web/views/transaction_view.ex:253
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@ -784,7 +784,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:21 #: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:21
#: lib/block_scout_web/templates/transaction/_tile.html.eex:32 #: lib/block_scout_web/templates/transaction/_tile.html.eex:32
#: lib/block_scout_web/templates/transaction/overview.html.eex:102 #: lib/block_scout_web/templates/transaction/overview.html.eex:108
msgid "TX Fee" msgid "TX Fee"
msgstr "" msgstr ""
@ -846,7 +846,7 @@ msgid "There are no transfers for this Token."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:45 #: lib/block_scout_web/templates/transaction/overview.html.eex:51
msgid "This transaction is pending confirmation." msgid "This transaction is pending confirmation."
msgstr "" msgstr ""
@ -867,14 +867,14 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:10 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:10
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:20 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:26
msgid "Token Details" msgid "Token Details"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:15 #: lib/block_scout_web/templates/tokens/holder/index.html.eex:15
#: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:9 #: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:9
#: lib/block_scout_web/views/tokens/overview_view.ex:38 #: lib/block_scout_web/views/tokens/overview_view.ex:41
msgid "Token Holders" msgid "Token Holders"
msgstr "" msgstr ""
@ -886,7 +886,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:12 #: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:12
#: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:10 #: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:10
#: lib/block_scout_web/views/transaction_view.ex:333 #: lib/block_scout_web/views/transaction_view.ex:334
msgid "Token Transfer" msgid "Token Transfer"
msgstr "" msgstr ""
@ -901,8 +901,8 @@ msgstr ""
#: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:7 #: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:7
#: lib/block_scout_web/views/address_view.ex:350 #: lib/block_scout_web/views/address_view.ex:350
#: lib/block_scout_web/views/tokens/instance/overview_view.ex:119 #: lib/block_scout_web/views/tokens/instance/overview_view.ex:119
#: lib/block_scout_web/views/tokens/overview_view.ex:37 #: lib/block_scout_web/views/tokens/overview_view.ex:40
#: lib/block_scout_web/views/transaction_view.ex:394 #: lib/block_scout_web/views/transaction_view.ex:395
msgid "Token Transfers" msgid "Token Transfers"
msgstr "" msgstr ""
@ -918,7 +918,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_logs/_logs.html.eex:18 #: lib/block_scout_web/templates/address_logs/_logs.html.eex:18
#: lib/block_scout_web/views/transaction_view.ex:343 #: lib/block_scout_web/views/transaction_view.ex:344
msgid "Transaction" msgid "Transaction"
msgstr "" msgstr ""
@ -950,7 +950,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/inventory/index.html.eex:15 #: lib/block_scout_web/templates/tokens/inventory/index.html.eex:15
#: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:17 #: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:17
#: lib/block_scout_web/views/tokens/overview_view.ex:40 #: lib/block_scout_web/views/tokens/overview_view.ex:43
msgid "Inventory" msgid "Inventory"
msgstr "" msgstr ""
@ -960,7 +960,7 @@ msgid "It could still be in the TX Pool of a different node, waiting to be broad
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:116 #: lib/block_scout_web/templates/address/overview.html.eex:121
msgid "Last Balance Update: Block #" msgid "Last Balance Update: Block #"
msgstr "" msgstr ""
@ -998,7 +998,7 @@ msgid "License ID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:301 #: lib/block_scout_web/templates/transaction/overview.html.eex:307
msgid "Limit" msgid "Limit"
msgstr "" msgstr ""
@ -1039,7 +1039,7 @@ msgid "Market Cap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:232 #: lib/block_scout_web/views/transaction_view.ex:233
msgid "Max of" msgid "Max of"
msgstr "" msgstr ""
@ -1150,8 +1150,8 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:65 #: lib/block_scout_web/templates/layout/_topnav.html.eex:65
#: lib/block_scout_web/views/transaction_view.ex:250 #: lib/block_scout_web/views/transaction_view.ex:251
#: lib/block_scout_web/views/transaction_view.ex:284 #: lib/block_scout_web/views/transaction_view.ex:285
msgid "Pending" msgid "Pending"
msgstr "" msgstr ""
@ -1172,12 +1172,12 @@ msgid "Price"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:64 #: lib/block_scout_web/templates/address/overview.html.eex:69
#: lib/block_scout_web/templates/address/overview.html.eex:168 #: lib/block_scout_web/templates/address/overview.html.eex:173
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:51 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:51
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:107 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:107
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:46 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:52
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:131 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:137
msgid "QR Code" msgid "QR Code"
msgstr "" msgstr ""
@ -1192,14 +1192,14 @@ msgid "RPC"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:127 #: lib/block_scout_web/templates/transaction/overview.html.eex:133
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/templates/transaction_raw_trace/index.html.eex:7
#: lib/block_scout_web/views/transaction_view.ex:397 #: lib/block_scout_web/views/transaction_view.ex:398
msgid "Raw Trace" msgid "Raw Trace"
msgstr "" msgstr ""
@ -1284,14 +1284,14 @@ msgid "Show"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:65 #: lib/block_scout_web/templates/address/overview.html.eex:70
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:52 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:52
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:47 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:53
msgid "Show QR Code" msgid "Show QR Code"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:79 #: lib/block_scout_web/templates/address/overview.html.eex:84
msgid "Show Validator Info" msgid "Show Validator Info"
msgstr "" msgstr ""
@ -1448,7 +1448,7 @@ msgid "Topics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:101 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:107
msgid "Total Supply" msgid "Total Supply"
msgstr "" msgstr ""
@ -1468,7 +1468,7 @@ msgid "Transaction %{transaction}, %{subnetwork} %{transaction}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:21 #: lib/block_scout_web/templates/transaction/overview.html.eex:27
msgid "Transaction Details" msgid "Transaction Details"
msgstr "" msgstr ""
@ -1479,7 +1479,7 @@ msgid "Transaction Inputs"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:119 #: lib/block_scout_web/templates/transaction/overview.html.eex:125
msgid "Transaction Speed" msgid "Transaction Speed"
msgstr "" msgstr ""
@ -1506,7 +1506,7 @@ msgid "Type"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:140 #: lib/block_scout_web/templates/transaction/overview.html.eex:146
msgid "UTF-8" msgid "UTF-8"
msgstr "" msgstr ""
@ -1532,7 +1532,7 @@ 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:295 #: lib/block_scout_web/templates/transaction/overview.html.eex:301
msgid "Used" msgid "Used"
msgstr "" msgstr ""
@ -1557,13 +1557,13 @@ msgid "Validator Data"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:83 #: lib/block_scout_web/templates/address/overview.html.eex:88
msgid "Validator Info" msgid "Validator Info"
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:205
#: lib/block_scout_web/templates/transaction/overview.html.eex:273 #: lib/block_scout_web/templates/transaction/overview.html.eex:279
msgid "Value" msgid "Value"
msgstr "" msgstr ""
@ -1605,7 +1605,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:16 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:16
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:20 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:20
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:81 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:87
msgid "View Contract" msgid "View Contract"
msgstr "" msgstr ""
@ -1658,7 +1658,7 @@ msgid "Yes"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:136 #: lib/block_scout_web/templates/address/overview.html.eex:141
msgid "at" msgid "at"
msgstr "" msgstr ""
@ -1716,12 +1716,12 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/_validator_metadata_modal.html.eex:37 #: lib/block_scout_web/templates/address/_validator_metadata_modal.html.eex:37
#: lib/block_scout_web/templates/address/overview.html.eex:169 #: lib/block_scout_web/templates/address/overview.html.eex:174
#: lib/block_scout_web/templates/address/overview.html.eex:177 #: lib/block_scout_web/templates/address/overview.html.eex:182
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:108 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:108
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:116 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:116
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:132 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:138
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:140 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:146
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1738,12 +1738,12 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:76 #: lib/block_scout_web/templates/tokens/instance/overview/_details.html.eex:76
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:89 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:95
msgid "Decimals" msgid "Decimals"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:291 #: lib/block_scout_web/templates/transaction/overview.html.eex:297
msgid "Gas" msgid "Gas"
msgstr "" msgstr ""
@ -1790,8 +1790,8 @@ msgid "Transfers"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:152 #: lib/block_scout_web/templates/transaction/overview.html.eex:158
#: lib/block_scout_web/templates/transaction/overview.html.eex:165 #: lib/block_scout_web/templates/transaction/overview.html.eex:171
msgid "Copy Txn Input" msgid "Copy Txn Input"
msgstr "" msgstr ""
@ -1829,7 +1829,7 @@ msgstr ""
#: lib/block_scout_web/templates/transaction/_tabs.html.eex:11 #: 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/templates/transaction_internal_transaction/index.html.eex:6
#: lib/block_scout_web/views/address_view.ex:348 #: lib/block_scout_web/views/address_view.ex:348
#: lib/block_scout_web/views/transaction_view.ex:395 #: lib/block_scout_web/views/transaction_view.ex:396
msgid "Internal Transactions" msgid "Internal Transactions"
msgstr "" msgstr ""
@ -1839,7 +1839,7 @@ msgstr ""
#: lib/block_scout_web/templates/transaction/_tabs.html.eex:17 #: 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/templates/transaction_log/index.html.eex:8
#: lib/block_scout_web/views/address_view.ex:359 #: lib/block_scout_web/views/address_view.ex:359
#: lib/block_scout_web/views/transaction_view.ex:396 #: lib/block_scout_web/views/transaction_view.ex:397
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
@ -1847,7 +1847,7 @@ msgstr ""
#: lib/block_scout_web/templates/address/_tabs.html.eex:79 #: lib/block_scout_web/templates/address/_tabs.html.eex:79
#: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:25 #: lib/block_scout_web/templates/tokens/overview/_tabs.html.eex:25
#: lib/block_scout_web/views/address_view.ex:353 #: lib/block_scout_web/views/address_view.ex:353
#: lib/block_scout_web/views/tokens/overview_view.ex:39 #: lib/block_scout_web/views/tokens/overview_view.ex:42
msgid "Read Contract" msgid "Read Contract"
msgstr "" msgstr ""
@ -1874,26 +1874,26 @@ msgid "Transactions"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:250 #: lib/block_scout_web/templates/transaction/overview.html.eex:256
msgid " Token Burning" msgid " Token Burning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:8 #: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:8
#: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:6 #: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:6
#: lib/block_scout_web/views/transaction_view.ex:332 #: lib/block_scout_web/views/transaction_view.ex:333
msgid "Token Burning" msgid "Token Burning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:232 #: lib/block_scout_web/templates/transaction/overview.html.eex:238
msgid " Token Minting" msgid " Token Minting"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:10 #: lib/block_scout_web/templates/tokens/transfer/_token_transfer.html.eex:10
#: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:8 #: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:8
#: lib/block_scout_web/views/transaction_view.ex:331 #: lib/block_scout_web/views/transaction_view.ex:332
msgid "Token Minting" msgid "Token Minting"
msgstr "" msgstr ""
@ -1903,7 +1903,7 @@ msgid "Chore Reward"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:68 #: lib/block_scout_web/templates/transaction/overview.html.eex:74
msgid "Revert reason" msgid "Revert reason"
msgstr "" msgstr ""
@ -1988,13 +1988,13 @@ msgid "Bridged Tokens"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:16 #: lib/block_scout_web/templates/address/overview.html.eex:17
msgid "zkSnark space warfare (v0.4)" msgid "zkSnark space warfare (v0.4)"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:20 #: lib/block_scout_web/templates/address/overview.html.eex:21
#: lib/block_scout_web/templates/address/overview.html.eex:24 #: lib/block_scout_web/templates/address/overview.html.eex:25
msgid "Play" msgid "Play"
msgstr "" msgstr ""

Loading…
Cancel
Save