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;
}
// 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-all-transactions .download-all-transactions-link svg path {
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 {
.modal-content {

@ -2,6 +2,7 @@
<% dark_forest_addresses_list = CustomContractsHelpers.get_custom_addresses_list(:dark_forest_addresses) %>
<% circles_addresses_list = CustomContractsHelpers.get_custom_addresses_list(:circles_addresses) %>
<% 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">
<!-- Address details -->
<div class="card-section col-md-12 col-lg-8 pr-0-md">
@ -32,6 +33,10 @@
<div class="custom-dapp-header-container">
<img class="custom-address-icon"/>
</div>
<% Enum.member?(circles_addresses_list, created_from_address_hash) -> %>
<div class="custom-dapp-header-container">
<img class="custom-address-icon"/>
</div>
<% true -> %>
<%= nil %>
<% end %>

@ -47,6 +47,8 @@
@view_module == Elixir.BlockScoutWeb.TransactionTokenTransferView
) -> %>
<% 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>
function applyCustomMode() {
applyCustomTheme("<%= raw_dark_forest_addresses %>", "dark-forest-theme-applied")
@ -56,9 +58,13 @@
if (contractAddressHashesRaw !== "") {
const contractAddressHashes = contractAddressHashesRaw.split(',').map(hash => hash.toLowerCase())
const to_address = "<%= to_address %>"
const created_from_address_hash_str = "<%= created_from_address_hash_str %>"
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;
return;
}
@ -69,7 +75,21 @@
window.onload = applyCustomMode()
</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>
function applyCustomMode() {
applyCustomTheme("<%= raw_dark_forest_addresses %>", "dark-forest-theme-applied")
@ -78,10 +98,14 @@
function applyCustomTheme(contractAddressHashesRaw, customClass) {
if (contractAddressHashesRaw !== "") {
const contractAddressHashes = contractAddressHashesRaw.split(',').map(hash => hash.toLowerCase())
const created_from_address = "<%= created_from_address %>"
contractAddressHashes.forEach(contractAddressHash => {
if (window.location.pathname.toLowerCase().includes(contractAddressHash)) {
document.body.className += " " + customClass;
return;
} else if (contractAddressHash == created_from_address) {
document.body.className += " " + customClass;
return;
}
})
}
@ -89,6 +113,38 @@
window.onload = applyCustomMode()
</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 %>
<script>
function applyDarkMode() {

@ -1,5 +1,7 @@
<% circles_addresses_list = CustomContractsHelpers.get_custom_addresses_list(:circles_addresses) %>
<% 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 %>">
<div class="row">
<div class="card-section col-md-12 col-lg-8 pr-0-md">
@ -11,6 +13,10 @@
<div class="custom-dapp-header-container">
<img class="custom-address-icon"/>
</div>
<% Enum.member?(circles_addresses_list, created_from_address_hash) -> %>
<div class="custom-dapp-header-container">
<img class="custom-address-icon"/>
</div>
<% true -> %>
<%= nil %>
<% end %>

@ -3,6 +3,8 @@
<% status = transaction_status(@transaction) %>
<% 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 %>
<% {: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 %>">
<div class="row">
<div class="col-md-12 col-lg-8 pr-0-md">
@ -14,6 +16,10 @@
<div class="custom-dapp-header-container">
<img class="custom-address-icon"/>
</div>
<% Enum.member?(circles_addresses_list, created_from_address_hash_str) -> %>
<div class="custom-dapp-header-container">
<img class="custom-address-icon"/>
</div>
<% true -> %>
<%= nil %>
<% end %>

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

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

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

@ -13,7 +13,7 @@ msgstr[0] ""
msgstr[1] ""
#, 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"
msgstr ""
@ -59,7 +59,7 @@ msgid "%{subnetwork} Explorer - BlockScout"
msgstr ""
#, 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)"
msgstr ""
@ -72,7 +72,7 @@ msgid "(query)"
msgstr ""
#, 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."
msgstr ""
@ -196,7 +196,7 @@ msgid "Block %{block_number} - %{subnetwork} Explorer"
msgstr ""
#, 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"
msgstr ""
@ -216,12 +216,12 @@ msgid "Block Mined, awaiting import..."
msgstr ""
#, 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"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:33
#: lib/block_scout_web/views/transaction_view.ex:34
msgid "Block Pending"
msgstr ""
@ -359,12 +359,12 @@ msgid "Contract Byte Code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:340
#: lib/block_scout_web/views/transaction_view.ex:341
msgid "Contract Call"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:337
#: lib/block_scout_web/views/transaction_view.ex:338
msgid "Contract Creation"
msgstr ""
@ -409,10 +409,10 @@ msgid "Copy ABI"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:44
#: lib/block_scout_web/templates/address/overview.html.eex:48
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:26
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:30
#: lib/block_scout_web/templates/address/overview.html.eex:49
#: lib/block_scout_web/templates/address/overview.html.eex:53
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:32
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:36
msgid "Copy Address"
msgstr ""
@ -432,12 +432,12 @@ msgid "Copy Source Code"
msgstr ""
#, 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"
msgstr ""
#, 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"
msgstr ""
@ -463,7 +463,7 @@ msgid "Create2"
msgstr ""
#, 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"
msgstr ""
@ -534,7 +534,7 @@ msgid "Description"
msgstr ""
#, 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/_eth_rpc_item.html.eex:127
msgid "Details"
@ -551,12 +551,12 @@ msgid "During times when the network is busy (i.e during ICOs) it can take a whi
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:137
#: lib/block_scout_web/views/transaction_view.ex:138
msgid "ERC-20 "
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:138
#: lib/block_scout_web/views/transaction_view.ex:139
msgid "ERC-721 "
msgstr ""
@ -615,17 +615,17 @@ msgid "Error trying to fetch balances."
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:255
#: lib/block_scout_web/views/transaction_view.ex:256
msgid "Error: %{reason}"
msgstr ""
#, 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)"
msgstr ""
#, 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."
msgstr ""
@ -640,8 +640,8 @@ msgstr ""
#: 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/_tile.html.eex:29
#: lib/block_scout_web/templates/transaction/overview.html.eex:199
#: lib/block_scout_web/templates/transaction/overview.html.eex:273
#: lib/block_scout_web/templates/transaction/overview.html.eex:205
#: lib/block_scout_web/templates/transaction/overview.html.eex:279
#: lib/block_scout_web/views/wei_helpers.ex:78
msgid "Ether"
msgstr ""
@ -660,7 +660,7 @@ msgstr ""
#, elixir-format
#: 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"
msgstr ""
@ -748,8 +748,8 @@ msgid "Hash"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:133
#: lib/block_scout_web/templates/transaction/overview.html.eex:137
#: lib/block_scout_web/templates/transaction/overview.html.eex:139
#: lib/block_scout_web/templates/transaction/overview.html.eex:143
msgid "Hex (Default)"
msgstr ""
@ -771,7 +771,7 @@ msgstr ""
#, elixir-format
#: 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"
msgstr ""
@ -784,7 +784,7 @@ msgstr ""
#, elixir-format
#: 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/overview.html.eex:102
#: lib/block_scout_web/templates/transaction/overview.html.eex:108
msgid "TX Fee"
msgstr ""
@ -846,7 +846,7 @@ msgid "There are no transfers for this Token."
msgstr ""
#, 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."
msgstr ""
@ -867,14 +867,14 @@ msgstr ""
#, elixir-format
#: 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"
msgstr ""
#, elixir-format
#: 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/views/tokens/overview_view.ex:38
#: lib/block_scout_web/views/tokens/overview_view.ex:41
msgid "Token Holders"
msgstr ""
@ -886,7 +886,7 @@ msgstr ""
#, elixir-format
#: 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/views/transaction_view.ex:333
#: lib/block_scout_web/views/transaction_view.ex:334
msgid "Token Transfer"
msgstr ""
@ -901,8 +901,8 @@ msgstr ""
#: 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/tokens/instance/overview_view.ex:119
#: lib/block_scout_web/views/tokens/overview_view.ex:37
#: lib/block_scout_web/views/transaction_view.ex:394
#: lib/block_scout_web/views/tokens/overview_view.ex:40
#: lib/block_scout_web/views/transaction_view.ex:395
msgid "Token Transfers"
msgstr ""
@ -918,7 +918,7 @@ msgstr ""
#, elixir-format
#: 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"
msgstr ""
@ -950,7 +950,7 @@ msgstr ""
#, elixir-format
#: 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/views/tokens/overview_view.ex:40
#: lib/block_scout_web/views/tokens/overview_view.ex:43
msgid "Inventory"
msgstr ""
@ -960,7 +960,7 @@ msgid "It could still be in the TX Pool of a different node, waiting to be broad
msgstr ""
#, 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 #"
msgstr ""
@ -998,7 +998,7 @@ msgid "License ID"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:301
#: lib/block_scout_web/templates/transaction/overview.html.eex:307
msgid "Limit"
msgstr ""
@ -1039,7 +1039,7 @@ msgid "Market Cap"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:232
#: lib/block_scout_web/views/transaction_view.ex:233
msgid "Max of"
msgstr ""
@ -1150,8 +1150,8 @@ msgstr ""
#, elixir-format
#: 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:284
#: lib/block_scout_web/views/transaction_view.ex:251
#: lib/block_scout_web/views/transaction_view.ex:285
msgid "Pending"
msgstr ""
@ -1172,12 +1172,12 @@ msgid "Price"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:64
#: lib/block_scout_web/templates/address/overview.html.eex:168
#: lib/block_scout_web/templates/address/overview.html.eex:69
#: 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:107
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:46
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:131
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:52
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:137
msgid "QR Code"
msgstr ""
@ -1192,14 +1192,14 @@ msgid "RPC"
msgstr ""
#, 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"
msgstr ""
#, elixir-format
#: 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:397
#: lib/block_scout_web/views/transaction_view.ex:398
msgid "Raw Trace"
msgstr ""
@ -1284,14 +1284,14 @@ msgid "Show"
msgstr ""
#, 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/overview/_details.html.eex:47
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:53
msgid "Show QR Code"
msgstr ""
#, 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"
msgstr ""
@ -1448,7 +1448,7 @@ msgid "Topics"
msgstr ""
#, 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"
msgstr ""
@ -1468,7 +1468,7 @@ msgid "Transaction %{transaction}, %{subnetwork} %{transaction}"
msgstr ""
#, 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"
msgstr ""
@ -1479,7 +1479,7 @@ msgid "Transaction Inputs"
msgstr ""
#, 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"
msgstr ""
@ -1506,7 +1506,7 @@ msgid "Type"
msgstr ""
#, 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"
msgstr ""
@ -1532,7 +1532,7 @@ msgid "Use the search box to find a hosted network, or select from the list of a
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:295
#: lib/block_scout_web/templates/transaction/overview.html.eex:301
msgid "Used"
msgstr ""
@ -1557,13 +1557,13 @@ msgid "Validator Data"
msgstr ""
#, 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"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:199
#: lib/block_scout_web/templates/transaction/overview.html.eex:273
#: lib/block_scout_web/templates/transaction/overview.html.eex:205
#: lib/block_scout_web/templates/transaction/overview.html.eex:279
msgid "Value"
msgstr ""
@ -1605,7 +1605,7 @@ msgstr ""
#, 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: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"
msgstr ""
@ -1658,7 +1658,7 @@ msgid "Yes"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:136
#: lib/block_scout_web/templates/address/overview.html.eex:141
msgid "at"
msgstr ""
@ -1716,12 +1716,12 @@ msgstr ""
#, elixir-format
#: 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:177
#: lib/block_scout_web/templates/address/overview.html.eex:174
#: 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:116
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:132
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:140
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:138
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:146
msgid "Close"
msgstr ""
@ -1738,12 +1738,12 @@ msgstr ""
#, elixir-format
#: 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"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:291
#: lib/block_scout_web/templates/transaction/overview.html.eex:297
msgid "Gas"
msgstr ""
@ -1790,8 +1790,8 @@ msgid "Transfers"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:152
#: lib/block_scout_web/templates/transaction/overview.html.eex:165
#: lib/block_scout_web/templates/transaction/overview.html.eex:158
#: lib/block_scout_web/templates/transaction/overview.html.eex:171
msgid "Copy Txn Input"
msgstr ""
@ -1829,7 +1829,7 @@ msgstr ""
#: 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:348
#: lib/block_scout_web/views/transaction_view.ex:395
#: lib/block_scout_web/views/transaction_view.ex:396
msgid "Internal Transactions"
msgstr ""
@ -1839,7 +1839,7 @@ msgstr ""
#: 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:359
#: lib/block_scout_web/views/transaction_view.ex:396
#: lib/block_scout_web/views/transaction_view.ex:397
msgid "Logs"
msgstr ""
@ -1847,7 +1847,7 @@ msgstr ""
#: 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/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"
msgstr ""
@ -1874,26 +1874,26 @@ msgid "Transactions"
msgstr ""
#, 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"
msgstr ""
#, elixir-format
#: 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/views/transaction_view.ex:332
#: lib/block_scout_web/views/transaction_view.ex:333
msgid "Token Burning"
msgstr ""
#, 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"
msgstr ""
#, elixir-format
#: 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/views/transaction_view.ex:331
#: lib/block_scout_web/views/transaction_view.ex:332
msgid "Token Minting"
msgstr ""
@ -1903,7 +1903,7 @@ msgid "Chore Reward"
msgstr ""
#, 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"
msgstr ""
@ -1988,13 +1988,13 @@ msgid "Bridged Tokens"
msgstr ""
#, 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)"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:20
#: lib/block_scout_web/templates/address/overview.html.eex:24
#: lib/block_scout_web/templates/address/overview.html.eex:21
#: lib/block_scout_web/templates/address/overview.html.eex:25
msgid "Play"
msgstr ""

@ -13,7 +13,7 @@ msgstr[0] ""
msgstr[1] ""
#, 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"
msgstr ""
@ -59,7 +59,7 @@ msgid "%{subnetwork} Explorer - BlockScout"
msgstr ""
#, 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)"
msgstr ""
@ -72,7 +72,7 @@ msgid "(query)"
msgstr ""
#, 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."
msgstr ""
@ -196,7 +196,7 @@ msgid "Block %{block_number} - %{subnetwork} Explorer"
msgstr ""
#, 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"
msgstr ""
@ -216,12 +216,12 @@ msgid "Block Mined, awaiting import..."
msgstr ""
#, 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"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:33
#: lib/block_scout_web/views/transaction_view.ex:34
msgid "Block Pending"
msgstr ""
@ -359,12 +359,12 @@ msgid "Contract Byte Code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:340
#: lib/block_scout_web/views/transaction_view.ex:341
msgid "Contract Call"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:337
#: lib/block_scout_web/views/transaction_view.ex:338
msgid "Contract Creation"
msgstr ""
@ -409,10 +409,10 @@ msgid "Copy ABI"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:44
#: lib/block_scout_web/templates/address/overview.html.eex:48
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:26
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:30
#: lib/block_scout_web/templates/address/overview.html.eex:49
#: lib/block_scout_web/templates/address/overview.html.eex:53
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:32
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:36
msgid "Copy Address"
msgstr ""
@ -432,12 +432,12 @@ msgid "Copy Source Code"
msgstr ""
#, 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"
msgstr ""
#, 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"
msgstr ""
@ -463,7 +463,7 @@ msgid "Create2"
msgstr ""
#, 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"
msgstr ""
@ -534,7 +534,7 @@ msgid "Description"
msgstr ""
#, 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/_eth_rpc_item.html.eex:127
msgid "Details"
@ -551,12 +551,12 @@ msgid "During times when the network is busy (i.e during ICOs) it can take a whi
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:137
#: lib/block_scout_web/views/transaction_view.ex:138
msgid "ERC-20 "
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:138
#: lib/block_scout_web/views/transaction_view.ex:139
msgid "ERC-721 "
msgstr ""
@ -615,17 +615,17 @@ msgid "Error trying to fetch balances."
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:255
#: lib/block_scout_web/views/transaction_view.ex:256
msgid "Error: %{reason}"
msgstr ""
#, 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)"
msgstr ""
#, 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."
msgstr ""
@ -640,8 +640,8 @@ msgstr ""
#: 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/_tile.html.eex:29
#: lib/block_scout_web/templates/transaction/overview.html.eex:199
#: lib/block_scout_web/templates/transaction/overview.html.eex:273
#: lib/block_scout_web/templates/transaction/overview.html.eex:205
#: lib/block_scout_web/templates/transaction/overview.html.eex:279
#: lib/block_scout_web/views/wei_helpers.ex:78
msgid "Ether"
msgstr ""
@ -660,7 +660,7 @@ msgstr ""
#, elixir-format
#: 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"
msgstr ""
@ -748,8 +748,8 @@ msgid "Hash"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:133
#: lib/block_scout_web/templates/transaction/overview.html.eex:137
#: lib/block_scout_web/templates/transaction/overview.html.eex:139
#: lib/block_scout_web/templates/transaction/overview.html.eex:143
msgid "Hex (Default)"
msgstr ""
@ -771,7 +771,7 @@ msgstr ""
#, elixir-format
#: 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"
msgstr ""
@ -784,7 +784,7 @@ msgstr ""
#, elixir-format
#: 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/overview.html.eex:102
#: lib/block_scout_web/templates/transaction/overview.html.eex:108
msgid "TX Fee"
msgstr ""
@ -846,7 +846,7 @@ msgid "There are no transfers for this Token."
msgstr ""
#, 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."
msgstr ""
@ -867,14 +867,14 @@ msgstr ""
#, elixir-format
#: 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"
msgstr ""
#, elixir-format
#: 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/views/tokens/overview_view.ex:38
#: lib/block_scout_web/views/tokens/overview_view.ex:41
msgid "Token Holders"
msgstr ""
@ -886,7 +886,7 @@ msgstr ""
#, elixir-format
#: 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/views/transaction_view.ex:333
#: lib/block_scout_web/views/transaction_view.ex:334
msgid "Token Transfer"
msgstr ""
@ -901,8 +901,8 @@ msgstr ""
#: 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/tokens/instance/overview_view.ex:119
#: lib/block_scout_web/views/tokens/overview_view.ex:37
#: lib/block_scout_web/views/transaction_view.ex:394
#: lib/block_scout_web/views/tokens/overview_view.ex:40
#: lib/block_scout_web/views/transaction_view.ex:395
msgid "Token Transfers"
msgstr ""
@ -918,7 +918,7 @@ msgstr ""
#, elixir-format
#: 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"
msgstr ""
@ -950,7 +950,7 @@ msgstr ""
#, elixir-format
#: 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/views/tokens/overview_view.ex:40
#: lib/block_scout_web/views/tokens/overview_view.ex:43
msgid "Inventory"
msgstr ""
@ -960,7 +960,7 @@ msgid "It could still be in the TX Pool of a different node, waiting to be broad
msgstr ""
#, 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 #"
msgstr ""
@ -998,7 +998,7 @@ msgid "License ID"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:301
#: lib/block_scout_web/templates/transaction/overview.html.eex:307
msgid "Limit"
msgstr ""
@ -1039,7 +1039,7 @@ msgid "Market Cap"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:232
#: lib/block_scout_web/views/transaction_view.ex:233
msgid "Max of"
msgstr ""
@ -1150,8 +1150,8 @@ msgstr ""
#, elixir-format
#: 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:284
#: lib/block_scout_web/views/transaction_view.ex:251
#: lib/block_scout_web/views/transaction_view.ex:285
msgid "Pending"
msgstr ""
@ -1172,12 +1172,12 @@ msgid "Price"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:64
#: lib/block_scout_web/templates/address/overview.html.eex:168
#: lib/block_scout_web/templates/address/overview.html.eex:69
#: 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:107
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:46
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:131
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:52
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:137
msgid "QR Code"
msgstr ""
@ -1192,14 +1192,14 @@ msgid "RPC"
msgstr ""
#, 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"
msgstr ""
#, elixir-format
#: 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:397
#: lib/block_scout_web/views/transaction_view.ex:398
msgid "Raw Trace"
msgstr ""
@ -1284,14 +1284,14 @@ msgid "Show"
msgstr ""
#, 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/overview/_details.html.eex:47
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:53
msgid "Show QR Code"
msgstr ""
#, 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"
msgstr ""
@ -1448,7 +1448,7 @@ msgid "Topics"
msgstr ""
#, 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"
msgstr ""
@ -1468,7 +1468,7 @@ msgid "Transaction %{transaction}, %{subnetwork} %{transaction}"
msgstr ""
#, 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"
msgstr ""
@ -1479,7 +1479,7 @@ msgid "Transaction Inputs"
msgstr ""
#, 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"
msgstr ""
@ -1506,7 +1506,7 @@ msgid "Type"
msgstr ""
#, 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"
msgstr ""
@ -1532,7 +1532,7 @@ msgid "Use the search box to find a hosted network, or select from the list of a
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:295
#: lib/block_scout_web/templates/transaction/overview.html.eex:301
msgid "Used"
msgstr ""
@ -1557,13 +1557,13 @@ msgid "Validator Data"
msgstr ""
#, 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"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:199
#: lib/block_scout_web/templates/transaction/overview.html.eex:273
#: lib/block_scout_web/templates/transaction/overview.html.eex:205
#: lib/block_scout_web/templates/transaction/overview.html.eex:279
msgid "Value"
msgstr ""
@ -1605,7 +1605,7 @@ msgstr ""
#, 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: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"
msgstr ""
@ -1658,7 +1658,7 @@ msgid "Yes"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:136
#: lib/block_scout_web/templates/address/overview.html.eex:141
msgid "at"
msgstr ""
@ -1716,12 +1716,12 @@ msgstr ""
#, elixir-format
#: 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:177
#: lib/block_scout_web/templates/address/overview.html.eex:174
#: 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:116
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:132
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:140
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:138
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:146
msgid "Close"
msgstr ""
@ -1738,12 +1738,12 @@ msgstr ""
#, elixir-format
#: 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"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:291
#: lib/block_scout_web/templates/transaction/overview.html.eex:297
msgid "Gas"
msgstr ""
@ -1790,8 +1790,8 @@ msgid "Transfers"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:152
#: lib/block_scout_web/templates/transaction/overview.html.eex:165
#: lib/block_scout_web/templates/transaction/overview.html.eex:158
#: lib/block_scout_web/templates/transaction/overview.html.eex:171
msgid "Copy Txn Input"
msgstr ""
@ -1829,7 +1829,7 @@ msgstr ""
#: 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:348
#: lib/block_scout_web/views/transaction_view.ex:395
#: lib/block_scout_web/views/transaction_view.ex:396
msgid "Internal Transactions"
msgstr ""
@ -1839,7 +1839,7 @@ msgstr ""
#: 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:359
#: lib/block_scout_web/views/transaction_view.ex:396
#: lib/block_scout_web/views/transaction_view.ex:397
msgid "Logs"
msgstr ""
@ -1847,7 +1847,7 @@ msgstr ""
#: 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/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"
msgstr ""
@ -1874,26 +1874,26 @@ msgid "Transactions"
msgstr ""
#, 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"
msgstr ""
#, elixir-format
#: 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/views/transaction_view.ex:332
#: lib/block_scout_web/views/transaction_view.ex:333
msgid "Token Burning"
msgstr ""
#, 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"
msgstr ""
#, elixir-format
#: 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/views/transaction_view.ex:331
#: lib/block_scout_web/views/transaction_view.ex:332
msgid "Token Minting"
msgstr ""
@ -1903,7 +1903,7 @@ msgid "Chore Reward"
msgstr ""
#, 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"
msgstr ""
@ -1988,13 +1988,13 @@ msgid "Bridged Tokens"
msgstr ""
#, 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)"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:20
#: lib/block_scout_web/templates/address/overview.html.eex:24
#: lib/block_scout_web/templates/address/overview.html.eex:21
#: lib/block_scout_web/templates/address/overview.html.eex:25
msgid "Play"
msgstr ""

Loading…
Cancel
Save