Apply bootstrap grid and components
pull/213/head
Jimmy Lauzau 7 years ago committed by GitHub
commit a0302a0f5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      apps/explorer_web/assets/css/app.scss
  2. 26
      apps/explorer_web/assets/css/components/_chain.scss
  3. 1
      apps/explorer_web/assets/css/components/_footer.scss
  4. 2
      apps/explorer_web/assets/css/theme/_poa_variables.scss
  5. 2
      apps/explorer_web/assets/css/theme/_theme_ribbon.scss
  6. 39
      apps/explorer_web/lib/explorer_web/templates/address/overview.html.eex
  7. 19
      apps/explorer_web/lib/explorer_web/templates/address_internal_transaction/index.html.eex
  8. 16
      apps/explorer_web/lib/explorer_web/templates/address_transaction/index.html.eex
  9. 6
      apps/explorer_web/lib/explorer_web/templates/block/index.html.eex
  10. 27
      apps/explorer_web/lib/explorer_web/templates/block_transaction/index.html.eex
  11. 10
      apps/explorer_web/lib/explorer_web/templates/chain/_blocks.html.eex
  12. 10
      apps/explorer_web/lib/explorer_web/templates/chain/_transactions.html.eex
  13. 46
      apps/explorer_web/lib/explorer_web/templates/chain/show.html.eex
  14. 4
      apps/explorer_web/lib/explorer_web/templates/layout/_ribbon.html.eex
  15. 2
      apps/explorer_web/lib/explorer_web/templates/layout/_sidebar.html.eex
  16. 37
      apps/explorer_web/lib/explorer_web/templates/layout/_topnav.html.eex
  17. 15
      apps/explorer_web/lib/explorer_web/templates/pending_transaction/index.html.eex
  18. 15
      apps/explorer_web/lib/explorer_web/templates/transaction/index.html.eex
  19. 23
      apps/explorer_web/lib/explorer_web/templates/transaction/overview.html.eex
  20. 14
      apps/explorer_web/lib/explorer_web/templates/transaction_internal_transaction/index.html.eex
  21. 14
      apps/explorer_web/lib/explorer_web/templates/transaction_log/index.html.eex
  22. 253
      apps/explorer_web/priv/gettext/default.pot
  23. 253
      apps/explorer_web/priv/gettext/en/LC_MESSAGES/default.po

@ -19,12 +19,18 @@ $fa-font-path: "~@fortawesome/fontawesome-free/webfonts";
@import "node_modules/bootstrap/scss/root"; @import "node_modules/bootstrap/scss/root";
@import "node_modules/bootstrap/scss/reboot"; @import "node_modules/bootstrap/scss/reboot";
@import "node_modules/bootstrap/scss/grid"; @import "node_modules/bootstrap/scss/grid";
@import "node_modules/bootstrap/scss/utilities/spacing";
@import "node_modules/bootstrap/scss/utilities/sizing";
@import "node_modules/bootstrap/scss/utilities/display";
@import "node_modules/bootstrap/scss/utilities/flex";
@import "node_modules/bootstrap/scss/utilities/text";
// Bootstrap Components // Bootstrap Components
@import "node_modules/bootstrap/scss/dropdown"; @import "node_modules/bootstrap/scss/dropdown";
@import "node_modules/bootstrap/scss/transitions"; @import "node_modules/bootstrap/scss/transitions";
@import "node_modules/bootstrap/scss/tables"; @import "node_modules/bootstrap/scss/tables";
@import "node_modules/bootstrap/scss/nav"; @import "node_modules/bootstrap/scss/nav";
@import "node_modules/bootstrap/scss/card";
//Custom theme //Custom theme
@import "theme/theme_ribbon"; @import "theme/theme_ribbon";

@ -22,14 +22,10 @@
.container__stats { .container__stats {
@extend %paper;
display: flex; display: flex;
padding: 15px;
width: 100%;
font-size: 12px; font-size: 12px;
text-align: center; text-align: center;
flex-direction: row; flex-direction: row;
justify-content: space-around;
img { img {
display: inline-block; display: inline-block;
@ -39,7 +35,7 @@
} }
svg { svg {
width: 30px; height: 30px;
} }
path { path {
@ -49,8 +45,6 @@
.stroke { .stroke {
stroke: $primary; stroke: $primary;
} }
} }
.graph__squares { .graph__squares {
@ -67,22 +61,11 @@
} }
} }
.graph-flex {
font-size: 12px;
display: flex;
justify-content: space-between;
margin-top: 25px;
color: $gray-500;
}
@media (min-width: $explorer-breakpoint-md) { @media (min-width: $explorer-breakpoint-md) {
.container__stats { .container__stats {
width: 15%;
flex-direction: column;
align-content: space-between;
color: $gray-500; color: $gray-500;
margin: 10px 5px; width: 16.67%;
img { img {
display: inline-block; display: inline-block;
@ -90,11 +73,12 @@
margin-bottom: explorer-size(-2); margin-bottom: explorer-size(-2);
text-align: center; text-align: center;
} }
}
div { .container__graph {
flex-grow: 1; flex-grow: 1;
} }
}
.chain { .chain {
&__image { &__image {
height: explorer-size(1); height: explorer-size(1);

@ -5,6 +5,7 @@
background: $gray-100; background: $gray-100;
color:$gray-600; color:$gray-600;
text-align: center; text-align: center;
margin-top: 15px;
padding: 14px; padding: 14px;
height: 50px; height: 50px;

@ -276,7 +276,7 @@ $lead-font-weight: 300 !default;
$small-font-size: 80% !default; $small-font-size: 80% !default;
$text-muted: $gray-600 !default; $text-muted: $gray-500 !default;
$blockquote-small-color: $gray-600 !default; $blockquote-small-color: $gray-600 !default;
$blockquote-font-size: ($font-size-base * 1.25) !default; $blockquote-font-size: ($font-size-base * 1.25) !default;

@ -59,7 +59,7 @@
//Ribbon FLip Syles //Ribbon FLip Syles
.card { .ribbon {
width: 100%; width: 100%;
height: 100%; height: 100%;
transition: all .5s; transition: all .5s;

@ -1,25 +1,34 @@
<div> <section>
<h1><%= gettext "Address" %></h1> <h1><%= gettext "Address" %></h1>
<h2 data-test="address_detail_hash"><%= @address %></h2> <p data-test="address_detail_hash"><%= @address %></p>
</div>
<div class="panels container__subsection"> <div class="card mb-3">
<div class="panels__container"> <div class="card-body">
<table class="table table-responsive-sm table-font"> <div class="row">
<table class="table table-responsive-sm table-font"> <div class="col-sm-6">
<table class="table table-font table-responsive-sm table-horizontal">
<tbody> <tbody>
<tr> <tr>
<th scope="row"><%= gettext "Balance" %></th> <th scope="row">
<td class="u-text-right" data-test="address_balance"> <%= gettext "Balance" %>
<div><%= balance(@address) %></div> </th>
<div><%= formatted_usd(@address, @exchange_rate) %></div> <td data-test="address_balance">
<%= balance(@address) %> </br>
<%= formatted_usd(@address, @exchange_rate) %>
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row"> <%= gettext "Number of Transactions" %></th> <th scope="row">
<td class="u-text-right" data-test="transaction_count"><%= Cldr.Number.to_string!(@transaction_count) %></td> <%= gettext "Number of Transactions" %>
</th>
<td data-test="transaction_count">
<%= Cldr.Number.to_string!(@transaction_count) %>
</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
</table>
</div> </div>
</div> </div>
</div>
</div>
</section>

@ -1,7 +1,11 @@
<section class="container__section block"> <section class="container-fluid">
<%= render ExplorerWeb.AddressView, "overview.html", assigns %> <%= render ExplorerWeb.AddressView, "overview.html", assigns %>
<div>
<ul class="nav nav-tabs"> <section>
<div class="card">
<div class="card-header">
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item"> <li class="nav-item">
<%= link( <%= link(
gettext("Transactions"), gettext("Transactions"),
@ -19,7 +23,9 @@
</li> </li>
</ul> </ul>
</div> </div>
<div class="panels container__subsection"> <div class="card-body">
<%= if length(@page.entries) > 0 do %>
<div class="dropdown u-float-right u-push-sm"> <div class="dropdown u-float-right u-push-sm">
<button data-test="filter_dropdown" class="button button--secondary button--xsmall dropdown-toggle" type="button" <button data-test="filter_dropdown" class="button button--secondary button--xsmall dropdown-toggle" type="button"
id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
@ -58,8 +64,7 @@
) %> ) %>
</div> </div>
</div> </div>
<div class="panels__container">
<%= if length(@page.entries) > 0 do %>
<table class="table table-responsive-sm table-font"> <table class="table table-responsive-sm table-font">
<thead> <thead>
<th><%= gettext "Parent Tx Hash" %></th> <th><%= gettext "Parent Tx Hash" %></th>
@ -97,6 +102,7 @@
<% end %> <% end %>
</div> </div>
</div> </div>
<div class="address__pagination"> <div class="address__pagination">
<%= pagination_links( <%= pagination_links(
@conn, @conn,
@ -111,4 +117,5 @@
view_style: :bulma view_style: :bulma
) %> ) %>
</div> </div>
</section>
</section> </section>

@ -1,7 +1,11 @@
<section class="container__section"> <section class="container-fluid">
<%= render ExplorerWeb.AddressView, "overview.html", assigns %> <%= render ExplorerWeb.AddressView, "overview.html", assigns %>
<div>
<ul class="nav nav-tabs"> <section>
<div class="card">
<div class="card-header">
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item"> <li class="nav-item">
<%= link( <%= link(
gettext("Transactions"), gettext("Transactions"),
@ -19,7 +23,7 @@
</li> </li>
</ul> </ul>
</div> </div>
<div class="panels container__subsection"> <div class="card-body">
<div class="dropdown u-float-right u-push-sm"> <div class="dropdown u-float-right u-push-sm">
<button data-test="filter_dropdown" class="button button--secondary button--xsmall dropdown-toggle" type="button" <button data-test="filter_dropdown" class="button button--secondary button--xsmall dropdown-toggle" type="button"
id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
@ -58,7 +62,7 @@
) %> ) %>
</div> </div>
</div> </div>
<div class="panels__container">
<table class="table table-responsive-sm table-font"> <table class="table table-responsive-sm table-font">
<thead> <thead>
<tr> <tr>
@ -104,6 +108,7 @@
</table> </table>
</div> </div>
</div> </div>
<div class="address__pagination"> <div class="address__pagination">
<%= pagination_links( <%= pagination_links(
@conn, @conn,
@ -118,4 +123,5 @@
view_style: :bulma view_style: :bulma
) %> ) %>
</div> </div>
</section>
</section> </section>

@ -1,4 +1,4 @@
<section class="container__section"> <section class="container-fluid">
<div> <div>
<h1>Blocks</h1> <h1>Blocks</h1>
<p> <p>
@ -9,8 +9,8 @@
) %> ) %>
</p> </p>
</div> </div>
<div class="panels container__subsection"> <div class="card">
<div class="panels__container"> <div class="card-body">
<table class="table table-responsive-sm table-font"> <table class="table table-responsive-sm table-font">
<thead> <thead>
<tr> <tr>

@ -1,10 +1,11 @@
<section class="container__section"> <section class="container-fluid">
<div> <section>
<h1><%= gettext("Block Details") %></h1> <h1><%= gettext("Block Details") %></h1>
<h2 data-test="block_detail_number"><%= @block.number %></h2> <p data-test="block_detail_number"><%= @block.number %></p>
</div>
<div class="panels container__subsection"> <div class="card mb-3">
<div class="panels__container row"> <div class="card-body">
<div class="row">
<div class="col-lg-6"> <div class="col-lg-6">
<table class="table table-font table-responsive-sm table-horizontal"> <table class="table table-font table-responsive-sm table-horizontal">
<tbody> <tbody>
@ -111,8 +112,13 @@
</div> </div>
</div> </div>
</div> </div>
<div> </div>
<ul class="nav nav-tabs"> </section>
<section>
<div class="card mb-3">
<div class="card-header">
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item"> <li class="nav-item">
<%= link( <%= link(
gettext("Transactions"), gettext("Transactions"),
@ -122,8 +128,7 @@
</li> </li>
</ul> </ul>
</div> </div>
<div class="panels container__subsection"> <div class="card-body">
<div class="panels__container">
<table class="table table-responsive-sm table-font"> <table class="table table-responsive-sm table-font">
<thead> <thead>
<tr> <tr>
@ -173,6 +178,7 @@
</table> </table>
</div> </div>
</div> </div>
<div class="blocks__pagination"> <div class="blocks__pagination">
<%= pagination_links( <%= pagination_links(
@conn, @conn,
@ -185,4 +191,5 @@
previous: Phoenix.HTML.raw("&lsaquo;"), previous: Phoenix.HTML.raw("&lsaquo;"),
view_style: :bulma view_style: :bulma
) %></div> ) %></div>
</section>
</section> </section>

@ -1,9 +1,8 @@
<div class="panels container__subsection container__subsection-chain"> <div class="card">
<div class="panels__container panels__container--title"> <div class="card-body">
<%= link(gettext("View All"), to: block_path(@conn, :index, Gettext.get_locale), class: "button button--secondary button--xsmall u-float-right") %> <%= link(gettext("View All"), to: block_path(@conn, :index, Gettext.get_locale), class: "button button--secondary button--xsmall u-float-right") %>
<h2 class="panels__title"><%= gettext "Blocks" %></h2> <h2 class="card-title"><%= gettext "Blocks" %></h2>
</div> <table class="table table-font table-responsive-lg">
<table class="table table-font table-responsive-sm">
<thead> <thead>
<th><%= gettext "Height" %></th> <th><%= gettext "Height" %></th>
<th><%= gettext "Age" %></th> <th><%= gettext "Age" %></th>
@ -28,4 +27,5 @@
<% end %> <% end %>
</tbody> </tbody>
</table> </table>
</div>
</div> </div>

@ -1,9 +1,8 @@
<div class="panels container__subsection container__subsection-chain"> <div class="card">
<div class="panels__container panels__container--title"> <div class="card-body">
<%= link(gettext("View All"), to: transaction_path(@conn, :index, Gettext.get_locale), class: "button button--secondary button--xsmall u-float-right") %> <%= link(gettext("View All"), to: transaction_path(@conn, :index, Gettext.get_locale), class: "button button--secondary button--xsmall u-float-right") %>
<h2 class="panels__title"><%= gettext "Transactions" %></h2> <h2 class="card-title"><%= gettext "Transactions" %></h2>
</div> <table class="table table-font table-responsive-lg">
<table class="table table-font table-responsive-sm">
<thead> <thead>
<th><%= gettext "TX Hash" %></th> <th><%= gettext "TX Hash" %></th>
<th><%= gettext "From" %></th> <th><%= gettext "From" %></th>
@ -29,4 +28,5 @@
<% end %> <% end %>
</tbody> </tbody>
</table> </table>
</div>
</div> </div>

@ -1,49 +1,59 @@
<section> <section class="container-fluid">
<section class="container__section container__section--partitioned"> <div class="d-flex flex-md-row flex-column">
<div class="container__stats"> <div class="container__stats card mr-sm-4 mb-4 mb-sm-0">
<div> <div class="card-body d-flex flex-md-column justify-content-around">
<div class="d-flex flex-column justify-content-center align-items-center">
<%= render ExplorerWeb.IconsView, "_block_icon.html", assigns %> <%= render ExplorerWeb.IconsView, "_block_icon.html", assigns %>
<div><%= gettext("Block") %></div> <div><%= gettext("Block") %></div>
<div> #<%= @chain.number %></div> <div> #<%= @chain.number %></div>
</div> </div>
<div> <div class="d-flex flex-column justify-content-center align-items-center">
<%= render ExplorerWeb.IconsView, "_hourglass_icon.html", assigns %> <%= render ExplorerWeb.IconsView, "_hourglass_icon.html", assigns %>
<div> <%= gettext("Last Block") %></div> <div> <%= gettext("Last Block") %></div>
<div> <%= @chain.timestamp |> Timex.from_now() %></div> <div> <%= @chain.timestamp |> Timex.from_now() %></div>
</div> </div>
<div> <div class="d-flex flex-column justify-content-center align-items-center">
<div class="stroke"> <%= render ExplorerWeb.IconsView, "_guage_icon.html", assigns %> </div> <div class="stroke"> <%= render ExplorerWeb.IconsView, "_guage_icon.html", assigns %> </div>
<div><%= gettext("Avg Block Time") %></div> <div><%= gettext("Avg Block Time") %></div>
<%= @chain.average_time |> Timex.format_duration(:humanized) %> <%= @chain.average_time |> Timex.format_duration(:humanized) %>
</div> </div>
<div> <div class="d-flex flex-column justify-content-center align-items-center">
<%= render ExplorerWeb.IconsView, "_transaction_icon.html", assigns %> <%= render ExplorerWeb.IconsView, "_transaction_icon.html", assigns %>
<div> <%= gettext("TPM") %></div> <div> <%= gettext("TPM") %></div>
<div> <%= @chain.transaction_velocity |> Cldr.Number.to_string! %></div> <div> <%= @chain.transaction_velocity |> Cldr.Number.to_string! %></div>
</div> </div>
</div> </div>
<div class="chain container__subsection container__subsection-chain"> </div>
<div class="container__graph card">
<div class="card-body">
<canvas data-chart="marketHistoryChart" data-current_exchange_rate ='<%= @exchange_rate.usd_value %>' data-available_supply='<%= @exchange_rate.available_supply %>' data-market_history_data='<%=raw encode_market_history_data(@market_history_data) %>' width="300" height="100"></canvas> <canvas data-chart="marketHistoryChart" data-current_exchange_rate ='<%= @exchange_rate.usd_value %>' data-available_supply='<%= @exchange_rate.available_supply %>' data-market_history_data='<%=raw encode_market_history_data(@market_history_data) %>' width="300" height="100"></canvas>
<div class="graph-flex"> <div class="d-flex justify-content-sm-around mt-2 text-muted">
<div class="u-push-md-left"> <div>
<div class="graph__squares graph__squares--price"></div> <div class="graph__squares graph__squares--price"></div>
<%= gettext "Price" %> </br> <%= gettext "Price" %> </br>
<%= format_exchange_rate(@exchange_rate) %> $<%= format_exchange_rate(@exchange_rate) %> <%= gettext "USD" %>
</div> </div>
<div> <div class="mx-2">
<div class="graph__squares graph__squares--mcap"></div> <div class="graph__squares graph__squares--mcap"></div>
<%= gettext "Market Cap" %> </br> <%= gettext "Market Cap" %> </br>
<%= format_market_cap(@exchange_rate) %> $<%= format_market_cap(@exchange_rate) %> <%= gettext "USD" %>
</div> </div>
<div class="u-push-md-right"> <div>
<%= gettext "24h Volume" %> </br> <%= gettext "24h Volume" %> </br>
<%= format_volume_24h(@exchange_rate) %> $<%= format_volume_24h(@exchange_rate) %> <%= gettext "USD" %>
</div> </div>
</div> </div>
</div> </div>
</section> </div>
</section> </div>
<section class="container__section container__section--partitioned">
<div class="row my-4">
<div class="col-md-6 mb-4 mb-md-0">
<%= render ExplorerWeb.ChainView, "_blocks.html", assigns %> <%= render ExplorerWeb.ChainView, "_blocks.html", assigns %>
</div>
<div class="col-md-6">
<%= render ExplorerWeb.ChainView, "_transactions.html", assigns %> <%= render ExplorerWeb.ChainView, "_transactions.html", assigns %>
</div>
</div>
</section> </section>

@ -1,5 +1,5 @@
<div class="theme__ribbon"> <div class="theme__ribbon">
<div class="front card"> <div class="front ribbon">
<%= link to: chain_path(@conn, :show), "data-test": "header_logo" do %> <%= link to: chain_path(@conn, :show), "data-test": "header_logo" do %>
<img class="theme__ribbon--logo" src="<%= static_path(@conn, "/images/poa_logo.svg") %>" /> <img class="theme__ribbon--logo" src="<%= static_path(@conn, "/images/poa_logo.svg") %>" />
<% end %> <% end %>
@ -34,7 +34,7 @@
</button> </button>
</div> </div>
</div> </div>
<div class="back card"> <div class="back ribbon">
<%= link to: chain_path(@conn, :show) do %> <%= link to: chain_path(@conn, :show) do %>
<img class="theme__ribbon--logo" src="<%= static_path(@conn, "/images/poa_logo.svg") %>" /> <img class="theme__ribbon--logo" src="<%= static_path(@conn, "/images/poa_logo.svg") %>" />
<% end %> <% end %>

@ -5,7 +5,7 @@
<img class="" src="<%= static_path(@conn, "/images/poa_logo.svg") %>" /> <img class="" src="<%= static_path(@conn, "/images/poa_logo.svg") %>" />
<% end %> <% end %>
</div> </div>
<div class="menu-items"> <div class="menu-items" role="navigation">
<div tabindex="0" class="icon-locate"> <div tabindex="0" class="icon-locate">
<a href="#pageSubmenu" data-toggle="collapse" aria-expanded="false"> <a href="#pageSubmenu" data-toggle="collapse" aria-expanded="false">
<i class="fa fa-sitemap fa-2x u-nudge-right u-nudge-top"></i> <i class="fa fa-sitemap fa-2x u-nudge-right u-nudge-top"></i>

@ -7,31 +7,30 @@
<% end %> <% end %>
</div> </div>
</div> </div>
<div class="header__row header__row--topnav">
<div class="header__cell header__cell--links" align="right"> <nav class="header__row header__row--topnav">
<%= link to: chain_path(@conn, :show) do %> <ul class="nav">
<div tabindex="0"> <li class="nav-item">
<i class="fas fa-home fa-2x"></i> <%= link to: chain_path(@conn, :show), class: "nav-link" do %>
</div> <i class="fas fa-home fa-2x text-muted"></i>
<% end %> <% end %>
</div> </li>
<div class="header__cell header__cell--links" align="right"> <li calss="nav-item">
<%= link to: block_path(@conn, :index, Gettext.get_locale) do %> <%= link to: block_path(@conn, :index, Gettext.get_locale), class: "nav-link" do %>
<div tabindex="0">
<img src="<%= static_path(@conn, "/images/block.svg") %>" /> <img src="<%= static_path(@conn, "/images/block.svg") %>" />
<%= gettext("Blocks") %> <%= gettext("Blocks") %>
</div>
<% end %> <% end %>
</div> </li>
<div class="header__cell header__cell--links dropdown"> <li calss="nav-item dropdown">
<a class="dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img src="<%= static_path(@conn, "/images/transaction.svg") %>" /> <img src="<%= static_path(@conn, "/images/transaction.svg") %>" />
<%= gettext("Transactions") %> <%= gettext("Transactions") %>
</a> </a>
<div class="dropdown-menu topnav-dropdown" aria-labelledby="navbarDropdown"> <div class="dropdown-menu" aria-labelledby="navbarDropdown">
<%= link(gettext("Validated"), to: transaction_path(@conn, :index, Gettext.get_locale), class: "dropdown-item topnav-dropdown-items") %> <%= link(gettext("Validated"), to: transaction_path(@conn, :index, Gettext.get_locale), class: "dropdown-item") %>
<%= link(gettext("Pending"), to: pending_transaction_path(@conn, :index, Gettext.get_locale), class: "dropdown-item topnav-dropdown-items") %> <%= link(gettext("Pending"), to: pending_transaction_path(@conn, :index, Gettext.get_locale), class: "dropdown-item") %>
</div>
</div>
</div> </div>
</li>
</ul>
</nav>
</header> </header>

@ -1,14 +1,14 @@
<section class="container__section"> <section class="container-fluid">
<div>
<h1> <h1>
Transactions Transactions
</h1> </h1>
<p> <p>
<%= gettext("Showing %{count} Pending Transactions", count: @transaction_count) %> <%= gettext("Showing %{count} Pending Transactions", count: @transaction_count) %>
</p> </p>
</div>
<div> <div class="card">
<ul class="nav nav-tabs"> <div class="card-header">
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item"> <li class="nav-item">
<%= link( <%= link(
gettext("Validated"), gettext("Validated"),
@ -25,8 +25,7 @@
</li> </li>
</ul> </ul>
</div> </div>
<div class="panels container__subsection"> <div class="card-body">
<div class="panels__container">
<table class="table table-responsive-sm table-font"> <table class="table table-responsive-sm table-font">
<thead> <thead>
<tr> <tr>
@ -68,7 +67,7 @@
<%= if @last_seen_pending_inserted_at do %> <%= if @last_seen_pending_inserted_at do %>
<%= link( <%= link(
gettext("Next Page"), gettext("Next Page"),
class: "button button--secondary button--sm u-float-right", class: "button button--secondary button--sm u-float-right mt-3",
to: pending_transaction_path( to: pending_transaction_path(
@conn, @conn,
:index, :index,

@ -1,12 +1,14 @@
<section class="container__section"> <section class="container-fluid">
<h1> <h1>
Transactions Transactions
</h1> </h1>
<p> <p>
<%= gettext("Showing %{count} Validated Transactions", count: @transaction_count) %> <%= gettext("Showing %{count} Validated Transactions", count: @transaction_count) %>
</p> </p>
<div>
<ul class="nav nav-tabs"> <div class="card">
<div class="card-header">
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item"> <li class="nav-item">
<%= link( <%= link(
gettext("Validated"), gettext("Validated"),
@ -24,8 +26,7 @@
</li> </li>
</ul> </ul>
</div> </div>
<div class="panels container__subsection"> <div class="card-body">
<div class="panels__container">
<table class="table table-responsive-sm table-font"> <table class="table table-responsive-sm table-font">
<thead> <thead>
<tr> <tr>
@ -75,7 +76,7 @@
<%= if @last_seen_collated_hash do %> <%= if @last_seen_collated_hash do %>
<%= link( <%= link(
gettext("Next Page"), gettext("Next Page"),
class: "button button--secondary button--sm u-float-right", class: "button button--secondary button--sm u-float-right mt-3",
to: transaction_path( to: transaction_path(
@conn, @conn,
:index, :index,
@ -84,4 +85,4 @@
) )
) %> ) %>
<% end %> <% end %>
</section> </section>

@ -1,7 +1,10 @@
<h1><%= gettext "Transaction Details" %></h1> <section>
<p data-test="transaction_detail_hash"><%= @transaction %></p> <h1><%= gettext "Transaction Details" %></h1>
<div class="panels container__subsection"> <p data-test="transaction_detail_hash"><%= @transaction %></p>
<div class="panels__container row">
<div class="card mb-3">
<div class="card-body">
<div class="row">
<div class="col-md-6"> <div class="col-md-6">
<table class="table table-font table-responsive-sm table-horizontal"> <table class="table table-font table-responsive-sm table-horizontal">
<tbody> <tbody>
@ -115,7 +118,7 @@
<th scope="row"> <th scope="row">
<%= gettext "Gas Limit" %> <%= gettext "Gas Limit" %>
</th> </th>
<td title="<%= last_seen %>"> <td title="<%= format_gas_limit(@transaction.gas) %>">
<%= format_gas_limit(@transaction.gas) %> <%= gettext("Gas") %> <%= format_gas_limit(@transaction.gas) %> <%= gettext("Gas") %>
</td> </td>
</tr> </tr>
@ -123,8 +126,8 @@
<th scope="row"> <th scope="row">
<%= gettext "Gas Price" %> <%= gettext "Gas Price" %>
</th> </th>
<td title="<%= last_seen %>"> <td title="<%= gas_price(@transaction, :wei) %>">
<%= gas_price(@transaction, :ether) %> <%= gas_price(@transaction, :wei) %>
(<%= gas_price(@transaction, :gwei) %>) (<%= gas_price(@transaction, :gwei) %>)
</td> </td>
</tr> </tr>
@ -141,7 +144,7 @@
<th scope="row"> <th scope="row">
<%= gettext "Total Gas Used" %> <%= gettext "Total Gas Used" %>
</th> </th>
<td title="<%= last_seen %>"> <td title="<%= cumulative_gas_used(@transaction) %>">
<%= cumulative_gas_used(@transaction) %> <%= gettext("Wei") %> <%= cumulative_gas_used(@transaction) %> <%= gettext("Wei") %>
</td> </td>
</tr> </tr>
@ -157,4 +160,6 @@
</table> </table>
</div> </div>
</div> </div>
</div> </div>
</div>
</section>

@ -1,7 +1,11 @@
<section class="container__section"> <section class="container-fluid">
<%= render ExplorerWeb.TransactionView, "overview.html", assigns %> <%= render ExplorerWeb.TransactionView, "overview.html", assigns %>
<div>
<ul class="nav nav-tabs"> <section>
<div class="card">
<div class="card-header">
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item"> <li class="nav-item">
<%= link( <%= link(
gettext("Internal Transactions"), gettext("Internal Transactions"),
@ -19,8 +23,7 @@
</li> </li>
</ul> </ul>
</div> </div>
<div class="panels container__subsection"> <div class="card-body">
<div class="panels__container">
<%= if length(@internal_transactions.entries) > 0 do %> <%= if length(@internal_transactions.entries) > 0 do %>
<table class="table table-responsive-sm table-font"> <table class="table table-responsive-sm table-font">
<thead> <thead>
@ -51,4 +54,5 @@
<% end %> <% end %>
</div> </div>
</div> </div>
</section>
</section> </section>

@ -1,7 +1,11 @@
<section class="container__section"> <section class="container-fluid">
<%= render ExplorerWeb.TransactionView, "overview.html", assigns %> <%= render ExplorerWeb.TransactionView, "overview.html", assigns %>
<div>
<ul class="nav nav-tabs"> <section>
<div class="card">
<div class="card-header">
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item"> <li class="nav-item">
<%= link( <%= link(
gettext("Internal Transactions"), gettext("Internal Transactions"),
@ -18,8 +22,7 @@
</li> </li>
</ul> </ul>
</div> </div>
<div class="panels container__subsection"> <div class="card-body">
<div class="panels__container">
<%= if length(@logs.entries) > 0 do %> <%= if length(@logs.entries) > 0 do %>
<table class="table table-responsive-sm table-font"> <table class="table table-responsive-sm table-font">
<thead> <thead>
@ -65,4 +68,5 @@
<% end %> <% end %>
</div> </div>
</div> </div>
</section>
</section> </section>

@ -1,25 +1,25 @@
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:67 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:72
#: lib/explorer_web/templates/address_transaction/index.html.eex:70 #: lib/explorer_web/templates/address_transaction/index.html.eex:74
#: lib/explorer_web/templates/block/index.html.eex:18 #: lib/explorer_web/templates/block/index.html.eex:18
#: lib/explorer_web/templates/block_transaction/index.html.eex:135 #: lib/explorer_web/templates/block_transaction/index.html.eex:140
#: lib/explorer_web/templates/chain/_blocks.html.eex:9 #: lib/explorer_web/templates/chain/_blocks.html.eex:8
#: lib/explorer_web/templates/chain/_transactions.html.eex:12 #: lib/explorer_web/templates/chain/_transactions.html.eex:11
#: lib/explorer_web/templates/transaction/index.html.eex:35 #: lib/explorer_web/templates/transaction/index.html.eex:36
#: lib/explorer_web/templates/transaction/overview.html.eex:35 #: lib/explorer_web/templates/transaction/overview.html.eex:38
msgid "Age" msgid "Age"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:66 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:71
#: lib/explorer_web/templates/address_transaction/index.html.eex:69 #: lib/explorer_web/templates/address_transaction/index.html.eex:73
#: lib/explorer_web/templates/block_transaction/index.html.eex:134 #: lib/explorer_web/templates/block_transaction/index.html.eex:139
#: lib/explorer_web/templates/chain/show.html.eex:6 #: lib/explorer_web/templates/chain/show.html.eex:7
#: lib/explorer_web/templates/transaction/index.html.eex:34 #: lib/explorer_web/templates/transaction/index.html.eex:35
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/_blocks.html.eex:4 #: lib/explorer_web/templates/chain/_blocks.html.eex:4
#: lib/explorer_web/templates/layout/_sidebar.html.eex:30 #: lib/explorer_web/templates/layout/_sidebar.html.eex:30
#: lib/explorer_web/templates/layout/_topnav.html.eex:22 #: lib/explorer_web/templates/layout/_topnav.html.eex:21
msgid "Blocks" msgid "Blocks"
msgstr "" msgstr ""
@ -28,20 +28,20 @@ msgid "Copyright %{year} POA"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block/index.html.eex:20 #: lib/explorer_web/templates/block/index.html.eex:20
#: lib/explorer_web/templates/block_transaction/index.html.eex:87 #: lib/explorer_web/templates/block_transaction/index.html.eex:88
msgid "Gas Used" msgid "Gas Used"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_transaction/index.html.eex:68 #: lib/explorer_web/templates/address_transaction/index.html.eex:72
#: lib/explorer_web/templates/block_transaction/index.html.eex:29 #: lib/explorer_web/templates/block_transaction/index.html.eex:30
#: lib/explorer_web/templates/block_transaction/index.html.eex:133 #: lib/explorer_web/templates/block_transaction/index.html.eex:138
#: lib/explorer_web/templates/pending_transaction/index.html.eex:36 #: lib/explorer_web/templates/pending_transaction/index.html.eex:35
#: lib/explorer_web/templates/transaction/index.html.eex:33 #: lib/explorer_web/templates/transaction/index.html.eex:34
msgid "Hash" msgid "Hash"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block/index.html.eex:17 #: lib/explorer_web/templates/block/index.html.eex:17
#: lib/explorer_web/templates/chain/_blocks.html.eex:8 #: lib/explorer_web/templates/chain/_blocks.html.eex:7
msgid "Height" msgid "Height"
msgstr "" msgstr ""
@ -49,24 +49,24 @@ msgstr ""
msgid "POA Network Explorer" msgid "POA Network Explorer"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:7 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:11
#: lib/explorer_web/templates/address_transaction/index.html.eex:7 #: lib/explorer_web/templates/address_transaction/index.html.eex:11
#: lib/explorer_web/templates/block/index.html.eex:19 #: lib/explorer_web/templates/block/index.html.eex:19
#: lib/explorer_web/templates/block_transaction/index.html.eex:118 #: lib/explorer_web/templates/block_transaction/index.html.eex:124
#: lib/explorer_web/templates/chain/_transactions.html.eex:4 #: lib/explorer_web/templates/chain/_transactions.html.eex:4
#: lib/explorer_web/templates/layout/_sidebar.html.eex:36 #: lib/explorer_web/templates/layout/_sidebar.html.eex:36
#: lib/explorer_web/templates/layout/_topnav.html.eex:29 #: lib/explorer_web/templates/layout/_topnav.html.eex:27
msgid "Transactions" msgid "Transactions"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:70 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:75
#: lib/explorer_web/templates/address_transaction/index.html.eex:74 #: lib/explorer_web/templates/address_transaction/index.html.eex:78
#: lib/explorer_web/templates/block_transaction/index.html.eex:139 #: lib/explorer_web/templates/block_transaction/index.html.eex:144
#: lib/explorer_web/templates/chain/_transactions.html.eex:11 #: lib/explorer_web/templates/chain/_transactions.html.eex:10
#: lib/explorer_web/templates/pending_transaction/index.html.eex:40 #: lib/explorer_web/templates/pending_transaction/index.html.eex:39
#: lib/explorer_web/templates/transaction/index.html.eex:38 #: lib/explorer_web/templates/transaction/index.html.eex:39
#: lib/explorer_web/templates/transaction/overview.html.eex:43 #: lib/explorer_web/templates/transaction/overview.html.eex:46
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:30 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:33
msgid "Value" msgid "Value"
msgstr "" msgstr ""
@ -74,23 +74,23 @@ msgstr ""
msgid "Block #%{number} Details" msgid "Block #%{number} Details"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block_transaction/index.html.eex:57 #: lib/explorer_web/templates/block_transaction/index.html.eex:58
msgid "Difficulty" msgid "Difficulty"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block/index.html.eex:21 #: lib/explorer_web/templates/block/index.html.eex:21
#: lib/explorer_web/templates/block_transaction/index.html.eex:95 #: lib/explorer_web/templates/block_transaction/index.html.eex:96
#: lib/explorer_web/templates/transaction/overview.html.eex:116 #: lib/explorer_web/templates/transaction/overview.html.eex:119
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:31 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:34
msgid "Gas Limit" msgid "Gas Limit"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block_transaction/index.html.eex:49 #: lib/explorer_web/templates/block_transaction/index.html.eex:50
msgid "Miner" msgid "Miner"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block_transaction/index.html.eex:103 #: lib/explorer_web/templates/block_transaction/index.html.eex:104
#: lib/explorer_web/templates/transaction/overview.html.eex:84 #: lib/explorer_web/templates/transaction/overview.html.eex:87
msgid "Nonce" msgid "Nonce"
msgstr "" msgstr ""
@ -98,27 +98,27 @@ msgstr ""
msgid "Number" msgid "Number"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block_transaction/index.html.eex:37 #: lib/explorer_web/templates/block_transaction/index.html.eex:38
msgid "Parent Hash" msgid "Parent Hash"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block_transaction/index.html.eex:79 #: lib/explorer_web/templates/block_transaction/index.html.eex:80
msgid "Size" msgid "Size"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block_transaction/index.html.eex:13 #: lib/explorer_web/templates/block_transaction/index.html.eex:14
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block_transaction/index.html.eex:71 #: lib/explorer_web/templates/block_transaction/index.html.eex:72
msgid "Total Difficulty" msgid "Total Difficulty"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:19 #: lib/explorer_web/templates/transaction/overview.html.eex:22
msgid "Block Number" msgid "Block Number"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:1 #: lib/explorer_web/templates/transaction/overview.html.eex:2
msgid "Transaction Details" msgid "Transaction Details"
msgstr "" msgstr ""
@ -128,44 +128,44 @@ msgstr ""
#: lib/explorer_web/templates/block/index.html.eex:20 #: lib/explorer_web/templates/block/index.html.eex:20
#: lib/explorer_web/templates/block/index.html.eex:21 #: lib/explorer_web/templates/block/index.html.eex:21
#: lib/explorer_web/templates/chain/_blocks.html.eex:11 #: lib/explorer_web/templates/chain/_blocks.html.eex:10
#: lib/explorer_web/templates/transaction/overview.html.eex:119 #: lib/explorer_web/templates/transaction/overview.html.eex:122
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:31 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:34
msgid "Gas" msgid "Gas"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block/index.html.eex:22 #: lib/explorer_web/templates/block/index.html.eex:22
#: lib/explorer_web/templates/transaction/overview.html.eex:124 #: lib/explorer_web/templates/transaction/overview.html.eex:127
msgid "Gas Price" msgid "Gas Price"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:150 #: lib/explorer_web/templates/transaction/overview.html.eex:153
msgid "Input" msgid "Input"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:30 #: lib/explorer_web/templates/transaction/overview.html.eex:33
msgid "%{confirmations} block confirmations" msgid "%{confirmations} block confirmations"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block_transaction/index.html.eex:24 #: lib/explorer_web/templates/block_transaction/index.html.eex:25
msgid "%{count} transactions in this block" msgid "%{count} transactions in this block"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address/overview.html.eex:2 #: lib/explorer_web/templates/address/overview.html.eex:2
#: lib/explorer_web/templates/transaction_log/index.html.eex:26 #: lib/explorer_web/templates/transaction_log/index.html.eex:29
msgid "Address" msgid "Address"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:48 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:54
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:68 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:73
#: lib/explorer_web/templates/address_transaction/index.html.eex:48 #: lib/explorer_web/templates/address_transaction/index.html.eex:52
#: lib/explorer_web/templates/address_transaction/index.html.eex:71 #: lib/explorer_web/templates/address_transaction/index.html.eex:75
#: lib/explorer_web/templates/block_transaction/index.html.eex:136 #: lib/explorer_web/templates/block_transaction/index.html.eex:141
#: lib/explorer_web/templates/chain/_transactions.html.eex:9 #: lib/explorer_web/templates/chain/_transactions.html.eex:8
#: lib/explorer_web/templates/pending_transaction/index.html.eex:38 #: lib/explorer_web/templates/pending_transaction/index.html.eex:37
#: lib/explorer_web/templates/transaction/index.html.eex:36 #: lib/explorer_web/templates/transaction/index.html.eex:37
#: lib/explorer_web/templates/transaction/overview.html.eex:52 #: lib/explorer_web/templates/transaction/overview.html.eex:55
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:28 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:31
#: lib/explorer_web/views/address_internal_transaction_view.ex:7 #: lib/explorer_web/views/address_internal_transaction_view.ex:7
#: lib/explorer_web/views/address_transaction_view.ex:9 #: lib/explorer_web/views/address_transaction_view.ex:9
msgid "From" msgid "From"
@ -180,16 +180,16 @@ msgstr ""
msgid "Success" msgid "Success"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:36 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:42
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:69 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:74
#: lib/explorer_web/templates/address_transaction/index.html.eex:36 #: lib/explorer_web/templates/address_transaction/index.html.eex:40
#: lib/explorer_web/templates/address_transaction/index.html.eex:73 #: lib/explorer_web/templates/address_transaction/index.html.eex:77
#: lib/explorer_web/templates/block_transaction/index.html.eex:138 #: lib/explorer_web/templates/block_transaction/index.html.eex:143
#: lib/explorer_web/templates/chain/_transactions.html.eex:10 #: lib/explorer_web/templates/chain/_transactions.html.eex:9
#: lib/explorer_web/templates/pending_transaction/index.html.eex:39 #: lib/explorer_web/templates/pending_transaction/index.html.eex:38
#: lib/explorer_web/templates/transaction/index.html.eex:37 #: lib/explorer_web/templates/transaction/index.html.eex:38
#: lib/explorer_web/templates/transaction/overview.html.eex:68 #: lib/explorer_web/templates/transaction/overview.html.eex:71
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:29 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:32
#: lib/explorer_web/views/address_internal_transaction_view.ex:6 #: lib/explorer_web/views/address_internal_transaction_view.ex:6
#: lib/explorer_web/views/address_transaction_view.ex:8 #: lib/explorer_web/views/address_transaction_view.ex:8
msgid "To" msgid "To"
@ -200,11 +200,11 @@ msgstr ""
msgid "Transaction Hash" msgid "Transaction Hash"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:10 #: lib/explorer_web/templates/transaction/overview.html.eex:13
msgid "Transaction Status" msgid "Transaction Status"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address/overview.html.eex:11 #: lib/explorer_web/templates/address/overview.html.eex:13
msgid "Balance" msgid "Balance"
msgstr "" msgstr ""
@ -231,11 +231,11 @@ msgid "Showing %{count} Transactions"
msgstr "" msgstr ""
#: lib/explorer_web/templates/layout/_sidebar.html.eex:41 #: lib/explorer_web/templates/layout/_sidebar.html.eex:41
#: lib/explorer_web/templates/layout/_topnav.html.eex:33 #: lib/explorer_web/templates/layout/_topnav.html.eex:31
#: lib/explorer_web/templates/pending_transaction/index.html.eex:21 #: lib/explorer_web/templates/pending_transaction/index.html.eex:21
#: lib/explorer_web/templates/transaction/index.html.eex:19 #: lib/explorer_web/templates/transaction/index.html.eex:21
#: lib/explorer_web/templates/transaction/overview.html.eex:62 #: lib/explorer_web/templates/transaction/overview.html.eex:65
#: lib/explorer_web/templates/transaction/overview.html.eex:78 #: lib/explorer_web/templates/transaction/overview.html.eex:81
#: lib/explorer_web/views/transaction_view.ex:20 #: lib/explorer_web/views/transaction_view.ex:20
#: lib/explorer_web/views/transaction_view.ex:66 #: lib/explorer_web/views/transaction_view.ex:66
#: lib/explorer_web/views/transaction_view.ex:73 #: lib/explorer_web/views/transaction_view.ex:73
@ -243,25 +243,25 @@ msgstr ""
msgid "Pending" msgid "Pending"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:98 #: lib/explorer_web/templates/transaction/overview.html.eex:101
msgid "First Seen" msgid "First Seen"
msgstr "" msgstr ""
#: lib/explorer_web/templates/pending_transaction/index.html.eex:37 #: lib/explorer_web/templates/pending_transaction/index.html.eex:36
#: lib/explorer_web/templates/transaction/overview.html.eex:107 #: lib/explorer_web/templates/transaction/overview.html.eex:110
msgid "Last Seen" msgid "Last Seen"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:14 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:18
#: lib/explorer_web/templates/transaction_log/index.html.eex:14 #: lib/explorer_web/templates/transaction_log/index.html.eex:18
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
#: lib/explorer_web/templates/pending_transaction/index.html.eex:7 #: lib/explorer_web/templates/pending_transaction/index.html.eex:6
msgid "Showing %{count} Pending Transactions" msgid "Showing %{count} Pending Transactions"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction_log/index.html.eex:27 #: lib/explorer_web/templates/transaction_log/index.html.eex:30
msgid "Topic" msgid "Topic"
msgstr "" msgstr ""
@ -285,7 +285,7 @@ msgstr ""
msgid "Lag" msgid "Lag"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:11 #: lib/explorer_web/templates/chain/show.html.eex:12
msgid "Last Block" msgid "Last Block"
msgstr "" msgstr ""
@ -293,12 +293,12 @@ msgstr ""
msgid "Skipped" msgid "Skipped"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:21 #: lib/explorer_web/templates/chain/show.html.eex:22
msgid "TPM" msgid "TPM"
msgstr "" msgstr ""
#: lib/explorer_web/templates/pending_transaction/index.html.eex:70 #: lib/explorer_web/templates/pending_transaction/index.html.eex:69
#: lib/explorer_web/templates/transaction/index.html.eex:77 #: lib/explorer_web/templates/transaction/index.html.eex:78
msgid "Next Page" msgid "Next Page"
msgstr "" msgstr ""
@ -310,10 +310,10 @@ msgstr ""
msgid "Out of Gas" msgid "Out of Gas"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_transaction/index.html.eex:66 #: lib/explorer_web/templates/address_transaction/index.html.eex:70
#: lib/explorer_web/templates/block_transaction/index.html.eex:131 #: lib/explorer_web/templates/block_transaction/index.html.eex:136
#: lib/explorer_web/templates/pending_transaction/index.html.eex:34 #: lib/explorer_web/templates/pending_transaction/index.html.eex:33
#: lib/explorer_web/templates/transaction/index.html.eex:32 #: lib/explorer_web/templates/transaction/index.html.eex:33
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -325,11 +325,11 @@ msgstr ""
msgid "Showing #%{number}" msgid "Showing #%{number}"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_transaction/index.html.eex:74 #: lib/explorer_web/templates/address_transaction/index.html.eex:78
#: lib/explorer_web/templates/chain/_transactions.html.eex:11 #: lib/explorer_web/templates/chain/_transactions.html.eex:10
#: lib/explorer_web/templates/pending_transaction/index.html.eex:40 #: lib/explorer_web/templates/pending_transaction/index.html.eex:39
#: lib/explorer_web/templates/transaction/index.html.eex:38 #: lib/explorer_web/templates/transaction/index.html.eex:39
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:30 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:33
#: lib/explorer_web/views/wei_helpers.ex:71 #: lib/explorer_web/views/wei_helpers.ex:71
msgid "Ether" msgid "Ether"
msgstr "" msgstr ""
@ -339,10 +339,10 @@ msgstr ""
msgid "Gwei" msgid "Gwei"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:14 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:18
#: lib/explorer_web/templates/address_transaction/index.html.eex:14 #: lib/explorer_web/templates/address_transaction/index.html.eex:18
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:7 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:11
#: lib/explorer_web/templates/transaction_log/index.html.eex:7 #: lib/explorer_web/templates/transaction_log/index.html.eex:11
msgid "Internal Transactions" msgid "Internal Transactions"
msgstr "" msgstr ""
@ -350,12 +350,12 @@ msgstr ""
msgid "Search by address, transaction hash, or block number" msgid "Search by address, transaction hash, or block number"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:96 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:101
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:50 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:53
msgid "There are no Internal Transactions" msgid "There are no Internal Transactions"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction_log/index.html.eex:64 #: lib/explorer_web/templates/transaction_log/index.html.eex:67
msgid "There are no logs currently." msgid "There are no logs currently."
msgstr "" msgstr ""
@ -371,30 +371,30 @@ msgstr ""
msgid "Transactions To" msgid "Transactions To"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:27 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:30
msgid "Type" msgid "Type"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:145 #: lib/explorer_web/templates/transaction/overview.html.eex:148
#: lib/explorer_web/views/wei_helpers.ex:69 #: lib/explorer_web/views/wei_helpers.ex:69
msgid "Wei" msgid "Wei"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:30 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:36
#: lib/explorer_web/templates/address_transaction/index.html.eex:30 #: lib/explorer_web/templates/address_transaction/index.html.eex:34
#: lib/explorer_web/views/address_internal_transaction_view.ex:8 #: lib/explorer_web/views/address_internal_transaction_view.ex:8
#: lib/explorer_web/views/address_transaction_view.ex:10 #: lib/explorer_web/views/address_transaction_view.ex:10
msgid "All" msgid "All"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_transaction/index.html.eex:75 #: lib/explorer_web/templates/address_transaction/index.html.eex:79
msgid "Fee" msgid "Fee"
msgstr "" msgstr ""
#: lib/explorer_web/templates/layout/_sidebar.html.eex:40 #: lib/explorer_web/templates/layout/_sidebar.html.eex:40
#: lib/explorer_web/templates/layout/_topnav.html.eex:32 #: lib/explorer_web/templates/layout/_topnav.html.eex:30
#: lib/explorer_web/templates/pending_transaction/index.html.eex:14 #: lib/explorer_web/templates/pending_transaction/index.html.eex:14
#: lib/explorer_web/templates/transaction/index.html.eex:12 #: lib/explorer_web/templates/transaction/index.html.eex:14
msgid "Validated" msgid "Validated"
msgstr "" msgstr ""
@ -402,31 +402,34 @@ msgstr ""
msgid "Block Details" msgid "Block Details"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:65 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:70
msgid "Parent Tx Hash" msgid "Parent Tx Hash"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:39 #: lib/explorer_web/templates/chain/show.html.eex:43
msgid "24h Volume" msgid "24h Volume"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:16 #: lib/explorer_web/templates/chain/show.html.eex:17
msgid "Avg Block Time" msgid "Avg Block Time"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:35 #: lib/explorer_web/templates/chain/show.html.eex:39
msgid "Market Cap" msgid "Market Cap"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:30 #: lib/explorer_web/templates/chain/show.html.eex:34
msgid "Price" msgid "Price"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:35
#: lib/explorer_web/templates/chain/show.html.eex:40
#: lib/explorer_web/templates/chain/show.html.eex:44
#: lib/explorer_web/views/currency_helpers.ex:32 #: lib/explorer_web/views/currency_helpers.ex:32
msgid "USD" msgid "USD"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address/overview.html.eex:18 #: lib/explorer_web/templates/address/overview.html.eex:22
msgid "Number of Transactions" msgid "Number of Transactions"
msgstr "" msgstr ""
@ -446,11 +449,11 @@ msgstr ""
msgid "Switch Network " msgid "Switch Network "
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/_transactions.html.eex:8 #: lib/explorer_web/templates/chain/_transactions.html.eex:7
msgid "TX Hash" msgid "TX Hash"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/_blocks.html.eex:10 #: lib/explorer_web/templates/chain/_blocks.html.eex:9
msgid "TXNs" msgid "TXNs"
msgstr "" msgstr ""
@ -458,15 +461,15 @@ msgstr ""
msgid "Tokens" msgid "Tokens"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:142 #: lib/explorer_web/templates/transaction/overview.html.eex:145
msgid "Total Gas Used" msgid "Total Gas Used"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block_transaction/index.html.eex:21 #: lib/explorer_web/templates/block_transaction/index.html.eex:22
msgid "Transaction" msgid "Transaction"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/_blocks.html.eex:12 #: lib/explorer_web/templates/chain/_blocks.html.eex:11
msgid "Validator" msgid "Validator"
msgstr "" msgstr ""
@ -475,6 +478,6 @@ msgstr ""
msgid "View All" msgid "View All"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:133 #: lib/explorer_web/templates/transaction/overview.html.eex:136
msgid "TX Fee" msgid "TX Fee"
msgstr "" msgstr ""

@ -10,28 +10,28 @@ msgid ""
msgstr "" msgstr ""
"Language: en\n" "Language: en\n"
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:67 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:72
#: lib/explorer_web/templates/address_transaction/index.html.eex:70 #: lib/explorer_web/templates/address_transaction/index.html.eex:74
#: lib/explorer_web/templates/block/index.html.eex:18 #: lib/explorer_web/templates/block/index.html.eex:18
#: lib/explorer_web/templates/block_transaction/index.html.eex:135 #: lib/explorer_web/templates/block_transaction/index.html.eex:140
#: lib/explorer_web/templates/chain/_blocks.html.eex:9 #: lib/explorer_web/templates/chain/_blocks.html.eex:8
#: lib/explorer_web/templates/chain/_transactions.html.eex:12 #: lib/explorer_web/templates/chain/_transactions.html.eex:11
#: lib/explorer_web/templates/transaction/index.html.eex:35 #: lib/explorer_web/templates/transaction/index.html.eex:36
#: lib/explorer_web/templates/transaction/overview.html.eex:35 #: lib/explorer_web/templates/transaction/overview.html.eex:38
msgid "Age" msgid "Age"
msgstr "Age" msgstr "Age"
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:66 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:71
#: lib/explorer_web/templates/address_transaction/index.html.eex:69 #: lib/explorer_web/templates/address_transaction/index.html.eex:73
#: lib/explorer_web/templates/block_transaction/index.html.eex:134 #: lib/explorer_web/templates/block_transaction/index.html.eex:139
#: lib/explorer_web/templates/chain/show.html.eex:6 #: lib/explorer_web/templates/chain/show.html.eex:7
#: lib/explorer_web/templates/transaction/index.html.eex:34 #: lib/explorer_web/templates/transaction/index.html.eex:35
msgid "Block" msgid "Block"
msgstr "Block" msgstr "Block"
#: lib/explorer_web/templates/chain/_blocks.html.eex:4 #: lib/explorer_web/templates/chain/_blocks.html.eex:4
#: lib/explorer_web/templates/layout/_sidebar.html.eex:30 #: lib/explorer_web/templates/layout/_sidebar.html.eex:30
#: lib/explorer_web/templates/layout/_topnav.html.eex:22 #: lib/explorer_web/templates/layout/_topnav.html.eex:21
msgid "Blocks" msgid "Blocks"
msgstr "Blocks" msgstr "Blocks"
@ -40,20 +40,20 @@ msgid "Copyright %{year} POA"
msgstr "%{year} POA Network Ltd. All rights reserved" msgstr "%{year} POA Network Ltd. All rights reserved"
#: lib/explorer_web/templates/block/index.html.eex:20 #: lib/explorer_web/templates/block/index.html.eex:20
#: lib/explorer_web/templates/block_transaction/index.html.eex:87 #: lib/explorer_web/templates/block_transaction/index.html.eex:88
msgid "Gas Used" msgid "Gas Used"
msgstr "Gas Used" msgstr "Gas Used"
#: lib/explorer_web/templates/address_transaction/index.html.eex:68 #: lib/explorer_web/templates/address_transaction/index.html.eex:72
#: lib/explorer_web/templates/block_transaction/index.html.eex:29 #: lib/explorer_web/templates/block_transaction/index.html.eex:30
#: lib/explorer_web/templates/block_transaction/index.html.eex:133 #: lib/explorer_web/templates/block_transaction/index.html.eex:138
#: lib/explorer_web/templates/pending_transaction/index.html.eex:36 #: lib/explorer_web/templates/pending_transaction/index.html.eex:35
#: lib/explorer_web/templates/transaction/index.html.eex:33 #: lib/explorer_web/templates/transaction/index.html.eex:34
msgid "Hash" msgid "Hash"
msgstr "Hash" msgstr "Hash"
#: lib/explorer_web/templates/block/index.html.eex:17 #: lib/explorer_web/templates/block/index.html.eex:17
#: lib/explorer_web/templates/chain/_blocks.html.eex:8 #: lib/explorer_web/templates/chain/_blocks.html.eex:7
msgid "Height" msgid "Height"
msgstr "Height" msgstr "Height"
@ -61,24 +61,24 @@ msgstr "Height"
msgid "POA Network Explorer" msgid "POA Network Explorer"
msgstr "POA Network Explorer" msgstr "POA Network Explorer"
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:7 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:11
#: lib/explorer_web/templates/address_transaction/index.html.eex:7 #: lib/explorer_web/templates/address_transaction/index.html.eex:11
#: lib/explorer_web/templates/block/index.html.eex:19 #: lib/explorer_web/templates/block/index.html.eex:19
#: lib/explorer_web/templates/block_transaction/index.html.eex:118 #: lib/explorer_web/templates/block_transaction/index.html.eex:124
#: lib/explorer_web/templates/chain/_transactions.html.eex:4 #: lib/explorer_web/templates/chain/_transactions.html.eex:4
#: lib/explorer_web/templates/layout/_sidebar.html.eex:36 #: lib/explorer_web/templates/layout/_sidebar.html.eex:36
#: lib/explorer_web/templates/layout/_topnav.html.eex:29 #: lib/explorer_web/templates/layout/_topnav.html.eex:27
msgid "Transactions" msgid "Transactions"
msgstr "Transactions" msgstr "Transactions"
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:70 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:75
#: lib/explorer_web/templates/address_transaction/index.html.eex:74 #: lib/explorer_web/templates/address_transaction/index.html.eex:78
#: lib/explorer_web/templates/block_transaction/index.html.eex:139 #: lib/explorer_web/templates/block_transaction/index.html.eex:144
#: lib/explorer_web/templates/chain/_transactions.html.eex:11 #: lib/explorer_web/templates/chain/_transactions.html.eex:10
#: lib/explorer_web/templates/pending_transaction/index.html.eex:40 #: lib/explorer_web/templates/pending_transaction/index.html.eex:39
#: lib/explorer_web/templates/transaction/index.html.eex:38 #: lib/explorer_web/templates/transaction/index.html.eex:39
#: lib/explorer_web/templates/transaction/overview.html.eex:43 #: lib/explorer_web/templates/transaction/overview.html.eex:46
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:30 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:33
msgid "Value" msgid "Value"
msgstr "Value" msgstr "Value"
@ -86,23 +86,23 @@ msgstr "Value"
msgid "Block #%{number} Details" msgid "Block #%{number} Details"
msgstr "Block #%{number} Details" msgstr "Block #%{number} Details"
#: lib/explorer_web/templates/block_transaction/index.html.eex:57 #: lib/explorer_web/templates/block_transaction/index.html.eex:58
msgid "Difficulty" msgid "Difficulty"
msgstr "Difficulty" msgstr "Difficulty"
#: lib/explorer_web/templates/block/index.html.eex:21 #: lib/explorer_web/templates/block/index.html.eex:21
#: lib/explorer_web/templates/block_transaction/index.html.eex:95 #: lib/explorer_web/templates/block_transaction/index.html.eex:96
#: lib/explorer_web/templates/transaction/overview.html.eex:116 #: lib/explorer_web/templates/transaction/overview.html.eex:119
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:31 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:34
msgid "Gas Limit" msgid "Gas Limit"
msgstr "Gas Limit" msgstr "Gas Limit"
#: lib/explorer_web/templates/block_transaction/index.html.eex:49 #: lib/explorer_web/templates/block_transaction/index.html.eex:50
msgid "Miner" msgid "Miner"
msgstr "Validator" msgstr "Validator"
#: lib/explorer_web/templates/block_transaction/index.html.eex:103 #: lib/explorer_web/templates/block_transaction/index.html.eex:104
#: lib/explorer_web/templates/transaction/overview.html.eex:84 #: lib/explorer_web/templates/transaction/overview.html.eex:87
msgid "Nonce" msgid "Nonce"
msgstr "Nonce" msgstr "Nonce"
@ -110,27 +110,27 @@ msgstr "Nonce"
msgid "Number" msgid "Number"
msgstr "Height" msgstr "Height"
#: lib/explorer_web/templates/block_transaction/index.html.eex:37 #: lib/explorer_web/templates/block_transaction/index.html.eex:38
msgid "Parent Hash" msgid "Parent Hash"
msgstr "Parent Hash" msgstr "Parent Hash"
#: lib/explorer_web/templates/block_transaction/index.html.eex:79 #: lib/explorer_web/templates/block_transaction/index.html.eex:80
msgid "Size" msgid "Size"
msgstr "Size" msgstr "Size"
#: lib/explorer_web/templates/block_transaction/index.html.eex:13 #: lib/explorer_web/templates/block_transaction/index.html.eex:14
msgid "Timestamp" msgid "Timestamp"
msgstr "Timestamp" msgstr "Timestamp"
#: lib/explorer_web/templates/block_transaction/index.html.eex:71 #: lib/explorer_web/templates/block_transaction/index.html.eex:72
msgid "Total Difficulty" msgid "Total Difficulty"
msgstr "Total Difficulty" msgstr "Total Difficulty"
#: lib/explorer_web/templates/transaction/overview.html.eex:19 #: lib/explorer_web/templates/transaction/overview.html.eex:22
msgid "Block Number" msgid "Block Number"
msgstr "Block Height" msgstr "Block Height"
#: lib/explorer_web/templates/transaction/overview.html.eex:1 #: lib/explorer_web/templates/transaction/overview.html.eex:2
msgid "Transaction Details" msgid "Transaction Details"
msgstr "Transaction Details" msgstr "Transaction Details"
@ -140,44 +140,44 @@ msgstr "Cumulative Gas Used"
#: lib/explorer_web/templates/block/index.html.eex:20 #: lib/explorer_web/templates/block/index.html.eex:20
#: lib/explorer_web/templates/block/index.html.eex:21 #: lib/explorer_web/templates/block/index.html.eex:21
#: lib/explorer_web/templates/chain/_blocks.html.eex:11 #: lib/explorer_web/templates/chain/_blocks.html.eex:10
#: lib/explorer_web/templates/transaction/overview.html.eex:119 #: lib/explorer_web/templates/transaction/overview.html.eex:122
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:31 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:34
msgid "Gas" msgid "Gas"
msgstr "Gas" msgstr "Gas"
#: lib/explorer_web/templates/block/index.html.eex:22 #: lib/explorer_web/templates/block/index.html.eex:22
#: lib/explorer_web/templates/transaction/overview.html.eex:124 #: lib/explorer_web/templates/transaction/overview.html.eex:127
msgid "Gas Price" msgid "Gas Price"
msgstr "Gas Price" msgstr "Gas Price"
#: lib/explorer_web/templates/transaction/overview.html.eex:150 #: lib/explorer_web/templates/transaction/overview.html.eex:153
msgid "Input" msgid "Input"
msgstr "Input" msgstr "Input"
#: lib/explorer_web/templates/transaction/overview.html.eex:30 #: lib/explorer_web/templates/transaction/overview.html.eex:33
msgid "%{confirmations} block confirmations" msgid "%{confirmations} block confirmations"
msgstr "%{confirmations} block confirmations" msgstr "%{confirmations} block confirmations"
#: lib/explorer_web/templates/block_transaction/index.html.eex:24 #: lib/explorer_web/templates/block_transaction/index.html.eex:25
msgid "%{count} transactions in this block" msgid "%{count} transactions in this block"
msgstr "%{count} transactions in this block" msgstr "%{count} transactions in this block"
#: lib/explorer_web/templates/address/overview.html.eex:2 #: lib/explorer_web/templates/address/overview.html.eex:2
#: lib/explorer_web/templates/transaction_log/index.html.eex:26 #: lib/explorer_web/templates/transaction_log/index.html.eex:29
msgid "Address" msgid "Address"
msgstr "Address" msgstr "Address"
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:48 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:54
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:68 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:73
#: lib/explorer_web/templates/address_transaction/index.html.eex:48 #: lib/explorer_web/templates/address_transaction/index.html.eex:52
#: lib/explorer_web/templates/address_transaction/index.html.eex:71 #: lib/explorer_web/templates/address_transaction/index.html.eex:75
#: lib/explorer_web/templates/block_transaction/index.html.eex:136 #: lib/explorer_web/templates/block_transaction/index.html.eex:141
#: lib/explorer_web/templates/chain/_transactions.html.eex:9 #: lib/explorer_web/templates/chain/_transactions.html.eex:8
#: lib/explorer_web/templates/pending_transaction/index.html.eex:38 #: lib/explorer_web/templates/pending_transaction/index.html.eex:37
#: lib/explorer_web/templates/transaction/index.html.eex:36 #: lib/explorer_web/templates/transaction/index.html.eex:37
#: lib/explorer_web/templates/transaction/overview.html.eex:52 #: lib/explorer_web/templates/transaction/overview.html.eex:55
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:28 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:31
#: lib/explorer_web/views/address_internal_transaction_view.ex:7 #: lib/explorer_web/views/address_internal_transaction_view.ex:7
#: lib/explorer_web/views/address_transaction_view.ex:9 #: lib/explorer_web/views/address_transaction_view.ex:9
msgid "From" msgid "From"
@ -192,16 +192,16 @@ msgstr "Overview"
msgid "Success" msgid "Success"
msgstr "Success" msgstr "Success"
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:36 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:42
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:69 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:74
#: lib/explorer_web/templates/address_transaction/index.html.eex:36 #: lib/explorer_web/templates/address_transaction/index.html.eex:40
#: lib/explorer_web/templates/address_transaction/index.html.eex:73 #: lib/explorer_web/templates/address_transaction/index.html.eex:77
#: lib/explorer_web/templates/block_transaction/index.html.eex:138 #: lib/explorer_web/templates/block_transaction/index.html.eex:143
#: lib/explorer_web/templates/chain/_transactions.html.eex:10 #: lib/explorer_web/templates/chain/_transactions.html.eex:9
#: lib/explorer_web/templates/pending_transaction/index.html.eex:39 #: lib/explorer_web/templates/pending_transaction/index.html.eex:38
#: lib/explorer_web/templates/transaction/index.html.eex:37 #: lib/explorer_web/templates/transaction/index.html.eex:38
#: lib/explorer_web/templates/transaction/overview.html.eex:68 #: lib/explorer_web/templates/transaction/overview.html.eex:71
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:29 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:32
#: lib/explorer_web/views/address_internal_transaction_view.ex:6 #: lib/explorer_web/views/address_internal_transaction_view.ex:6
#: lib/explorer_web/views/address_transaction_view.ex:8 #: lib/explorer_web/views/address_transaction_view.ex:8
msgid "To" msgid "To"
@ -212,11 +212,11 @@ msgstr "To"
msgid "Transaction Hash" msgid "Transaction Hash"
msgstr "Transaction Hash" msgstr "Transaction Hash"
#: lib/explorer_web/templates/transaction/overview.html.eex:10 #: lib/explorer_web/templates/transaction/overview.html.eex:13
msgid "Transaction Status" msgid "Transaction Status"
msgstr "Transaction Status" msgstr "Transaction Status"
#: lib/explorer_web/templates/address/overview.html.eex:11 #: lib/explorer_web/templates/address/overview.html.eex:13
msgid "Balance" msgid "Balance"
msgstr "Balance" msgstr "Balance"
@ -243,11 +243,11 @@ msgid "Showing %{count} Transactions"
msgstr "Showing %{count} Transactions" msgstr "Showing %{count} Transactions"
#: lib/explorer_web/templates/layout/_sidebar.html.eex:41 #: lib/explorer_web/templates/layout/_sidebar.html.eex:41
#: lib/explorer_web/templates/layout/_topnav.html.eex:33 #: lib/explorer_web/templates/layout/_topnav.html.eex:31
#: lib/explorer_web/templates/pending_transaction/index.html.eex:21 #: lib/explorer_web/templates/pending_transaction/index.html.eex:21
#: lib/explorer_web/templates/transaction/index.html.eex:19 #: lib/explorer_web/templates/transaction/index.html.eex:21
#: lib/explorer_web/templates/transaction/overview.html.eex:62 #: lib/explorer_web/templates/transaction/overview.html.eex:65
#: lib/explorer_web/templates/transaction/overview.html.eex:78 #: lib/explorer_web/templates/transaction/overview.html.eex:81
#: lib/explorer_web/views/transaction_view.ex:20 #: lib/explorer_web/views/transaction_view.ex:20
#: lib/explorer_web/views/transaction_view.ex:66 #: lib/explorer_web/views/transaction_view.ex:66
#: lib/explorer_web/views/transaction_view.ex:73 #: lib/explorer_web/views/transaction_view.ex:73
@ -255,25 +255,25 @@ msgstr "Showing %{count} Transactions"
msgid "Pending" msgid "Pending"
msgstr "Pending" msgstr "Pending"
#: lib/explorer_web/templates/transaction/overview.html.eex:98 #: lib/explorer_web/templates/transaction/overview.html.eex:101
msgid "First Seen" msgid "First Seen"
msgstr "" msgstr ""
#: lib/explorer_web/templates/pending_transaction/index.html.eex:37 #: lib/explorer_web/templates/pending_transaction/index.html.eex:36
#: lib/explorer_web/templates/transaction/overview.html.eex:107 #: lib/explorer_web/templates/transaction/overview.html.eex:110
msgid "Last Seen" msgid "Last Seen"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:14 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:18
#: lib/explorer_web/templates/transaction_log/index.html.eex:14 #: lib/explorer_web/templates/transaction_log/index.html.eex:18
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
#: lib/explorer_web/templates/pending_transaction/index.html.eex:7 #: lib/explorer_web/templates/pending_transaction/index.html.eex:6
msgid "Showing %{count} Pending Transactions" msgid "Showing %{count} Pending Transactions"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction_log/index.html.eex:27 #: lib/explorer_web/templates/transaction_log/index.html.eex:30
msgid "Topic" msgid "Topic"
msgstr "" msgstr ""
@ -297,7 +297,7 @@ msgstr ""
msgid "Lag" msgid "Lag"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:11 #: lib/explorer_web/templates/chain/show.html.eex:12
msgid "Last Block" msgid "Last Block"
msgstr "" msgstr ""
@ -305,12 +305,12 @@ msgstr ""
msgid "Skipped" msgid "Skipped"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:21 #: lib/explorer_web/templates/chain/show.html.eex:22
msgid "TPM" msgid "TPM"
msgstr "" msgstr ""
#: lib/explorer_web/templates/pending_transaction/index.html.eex:70 #: lib/explorer_web/templates/pending_transaction/index.html.eex:69
#: lib/explorer_web/templates/transaction/index.html.eex:77 #: lib/explorer_web/templates/transaction/index.html.eex:78
msgid "Next Page" msgid "Next Page"
msgstr "" msgstr ""
@ -322,10 +322,10 @@ msgstr ""
msgid "Out of Gas" msgid "Out of Gas"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_transaction/index.html.eex:66 #: lib/explorer_web/templates/address_transaction/index.html.eex:70
#: lib/explorer_web/templates/block_transaction/index.html.eex:131 #: lib/explorer_web/templates/block_transaction/index.html.eex:136
#: lib/explorer_web/templates/pending_transaction/index.html.eex:34 #: lib/explorer_web/templates/pending_transaction/index.html.eex:33
#: lib/explorer_web/templates/transaction/index.html.eex:32 #: lib/explorer_web/templates/transaction/index.html.eex:33
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -337,11 +337,11 @@ msgstr ""
msgid "Showing #%{number}" msgid "Showing #%{number}"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_transaction/index.html.eex:74 #: lib/explorer_web/templates/address_transaction/index.html.eex:78
#: lib/explorer_web/templates/chain/_transactions.html.eex:11 #: lib/explorer_web/templates/chain/_transactions.html.eex:10
#: lib/explorer_web/templates/pending_transaction/index.html.eex:40 #: lib/explorer_web/templates/pending_transaction/index.html.eex:39
#: lib/explorer_web/templates/transaction/index.html.eex:38 #: lib/explorer_web/templates/transaction/index.html.eex:39
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:30 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:33
#: lib/explorer_web/views/wei_helpers.ex:71 #: lib/explorer_web/views/wei_helpers.ex:71
msgid "Ether" msgid "Ether"
msgstr "POA" msgstr "POA"
@ -351,10 +351,10 @@ msgstr "POA"
msgid "Gwei" msgid "Gwei"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:14 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:18
#: lib/explorer_web/templates/address_transaction/index.html.eex:14 #: lib/explorer_web/templates/address_transaction/index.html.eex:18
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:7 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:11
#: lib/explorer_web/templates/transaction_log/index.html.eex:7 #: lib/explorer_web/templates/transaction_log/index.html.eex:11
msgid "Internal Transactions" msgid "Internal Transactions"
msgstr "" msgstr ""
@ -362,12 +362,12 @@ msgstr ""
msgid "Search by address, transaction hash, or block number" msgid "Search by address, transaction hash, or block number"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:96 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:101
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:50 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:53
msgid "There are no Internal Transactions" msgid "There are no Internal Transactions"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction_log/index.html.eex:64 #: lib/explorer_web/templates/transaction_log/index.html.eex:67
msgid "There are no logs currently." msgid "There are no logs currently."
msgstr "" msgstr ""
@ -383,30 +383,30 @@ msgstr ""
msgid "Transactions To" msgid "Transactions To"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:27 #: lib/explorer_web/templates/transaction_internal_transaction/index.html.eex:30
msgid "Type" msgid "Type"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:145 #: lib/explorer_web/templates/transaction/overview.html.eex:148
#: lib/explorer_web/views/wei_helpers.ex:69 #: lib/explorer_web/views/wei_helpers.ex:69
msgid "Wei" msgid "Wei"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:30 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:36
#: lib/explorer_web/templates/address_transaction/index.html.eex:30 #: lib/explorer_web/templates/address_transaction/index.html.eex:34
#: lib/explorer_web/views/address_internal_transaction_view.ex:8 #: lib/explorer_web/views/address_internal_transaction_view.ex:8
#: lib/explorer_web/views/address_transaction_view.ex:10 #: lib/explorer_web/views/address_transaction_view.ex:10
msgid "All" msgid "All"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_transaction/index.html.eex:75 #: lib/explorer_web/templates/address_transaction/index.html.eex:79
msgid "Fee" msgid "Fee"
msgstr "" msgstr ""
#: lib/explorer_web/templates/layout/_sidebar.html.eex:40 #: lib/explorer_web/templates/layout/_sidebar.html.eex:40
#: lib/explorer_web/templates/layout/_topnav.html.eex:32 #: lib/explorer_web/templates/layout/_topnav.html.eex:30
#: lib/explorer_web/templates/pending_transaction/index.html.eex:14 #: lib/explorer_web/templates/pending_transaction/index.html.eex:14
#: lib/explorer_web/templates/transaction/index.html.eex:12 #: lib/explorer_web/templates/transaction/index.html.eex:14
msgid "Validated" msgid "Validated"
msgstr "" msgstr ""
@ -414,31 +414,34 @@ msgstr ""
msgid "Block Details" msgid "Block Details"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address_internal_transaction/index.html.eex:65 #: lib/explorer_web/templates/address_internal_transaction/index.html.eex:70
msgid "Parent Tx Hash" msgid "Parent Tx Hash"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:39 #: lib/explorer_web/templates/chain/show.html.eex:43
msgid "24h Volume" msgid "24h Volume"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:16 #: lib/explorer_web/templates/chain/show.html.eex:17
msgid "Avg Block Time" msgid "Avg Block Time"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:35 #: lib/explorer_web/templates/chain/show.html.eex:39
msgid "Market Cap" msgid "Market Cap"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:30 #: lib/explorer_web/templates/chain/show.html.eex:34
msgid "Price" msgid "Price"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/show.html.eex:35
#: lib/explorer_web/templates/chain/show.html.eex:40
#: lib/explorer_web/templates/chain/show.html.eex:44
#: lib/explorer_web/views/currency_helpers.ex:32 #: lib/explorer_web/views/currency_helpers.ex:32
msgid "USD" msgid "USD"
msgstr "" msgstr ""
#: lib/explorer_web/templates/address/overview.html.eex:18 #: lib/explorer_web/templates/address/overview.html.eex:22
msgid "Number of Transactions" msgid "Number of Transactions"
msgstr "" msgstr ""
@ -458,11 +461,11 @@ msgstr ""
msgid "Switch Network " msgid "Switch Network "
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/_transactions.html.eex:8 #: lib/explorer_web/templates/chain/_transactions.html.eex:7
msgid "TX Hash" msgid "TX Hash"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/_blocks.html.eex:10 #: lib/explorer_web/templates/chain/_blocks.html.eex:9
msgid "TXNs" msgid "TXNs"
msgstr "" msgstr ""
@ -470,15 +473,15 @@ msgstr ""
msgid "Tokens" msgid "Tokens"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:142 #: lib/explorer_web/templates/transaction/overview.html.eex:145
msgid "Total Gas Used" msgid "Total Gas Used"
msgstr "" msgstr ""
#: lib/explorer_web/templates/block_transaction/index.html.eex:21 #: lib/explorer_web/templates/block_transaction/index.html.eex:22
msgid "Transaction" msgid "Transaction"
msgstr "" msgstr ""
#: lib/explorer_web/templates/chain/_blocks.html.eex:12 #: lib/explorer_web/templates/chain/_blocks.html.eex:11
msgid "Validator" msgid "Validator"
msgstr "" msgstr ""
@ -487,6 +490,6 @@ msgstr ""
msgid "View All" msgid "View All"
msgstr "" msgstr ""
#: lib/explorer_web/templates/transaction/overview.html.eex:133 #: lib/explorer_web/templates/transaction/overview.html.eex:136
msgid "TX Fee" msgid "TX Fee"
msgstr "" msgstr ""

Loading…
Cancel
Save