|
|
@ -1,35 +1,15 @@ |
|
|
|
<div class="tile"> |
|
|
|
<tr> |
|
|
|
<div class="row"> |
|
|
|
<td class="stakes-td"> |
|
|
|
<!-- rank --> |
|
|
|
|
|
|
|
<div class="col-2 col-md-1 d-flex justify-content-center align-items-center"> |
|
|
|
|
|
|
|
<!-- incremented number by order in the list --> |
|
|
|
<!-- incremented number by order in the list --> |
|
|
|
<span> |
|
|
|
<span class="color-lighten"> |
|
|
|
<%= @index %> |
|
|
|
<%= @index %> |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
|
|
|
|
<td class="stakes-td"> |
|
|
|
<div class="col-10 col-md-11"> |
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
|
|
|
<div class="col-md-6 d-flex flex-column"> |
|
|
|
|
|
|
|
<%= @address |> BlockScoutWeb.AddressView.address_partial_selector(nil, nil) |> BlockScoutWeb.RenderHelpers.render_partial() %> |
|
|
|
<%= @address |> BlockScoutWeb.AddressView.address_partial_selector(nil, nil) |> BlockScoutWeb.RenderHelpers.render_partial() %> |
|
|
|
<!-- number of txns for this address --> |
|
|
|
</td> |
|
|
|
<span class="mr-4"> |
|
|
|
<td class="stakes-td"> |
|
|
|
<span data-test="transaction_count"> |
|
|
|
<span data-test="address_balance"><%= balance(@address) %></span> |
|
|
|
<%= @tx_count %> |
|
|
|
|
|
|
|
</span> <%= gettext "Transactions sent" %> |
|
|
|
|
|
|
|
<% if validator?(@address) do %> |
|
|
|
|
|
|
|
<span data-test="validation_count"> |
|
|
|
|
|
|
|
<%= @validation_count %> |
|
|
|
|
|
|
|
</span> <%= gettext "Validations" %> |
|
|
|
|
|
|
|
<% end %> |
|
|
|
|
|
|
|
</span> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- balance and percentage --> |
|
|
|
|
|
|
|
<div class="col-md-6 d-flex flex-column text-md-right mt-3 mt-md-0"> |
|
|
|
|
|
|
|
<!-- address coin balance --> |
|
|
|
|
|
|
|
<span class="tile-title" data-test="address_balance"><%= balance(@address) %></span> |
|
|
|
|
|
|
|
<div class="d-flex flex-column flex-md-row justify-content-md-end"> |
|
|
|
|
|
|
|
<!-- USD value of the balance --> |
|
|
|
<!-- USD value of the balance --> |
|
|
|
<span |
|
|
|
<span |
|
|
|
data-wei-value="<%= if @address.fetched_coin_balance, do: @address.fetched_coin_balance.value %>" |
|
|
|
data-wei-value="<%= if @address.fetched_coin_balance, do: @address.fetched_coin_balance.value %>" |
|
|
@ -37,15 +17,23 @@ |
|
|
|
data-usd-exchange-rate="<%= @exchange_rate.usd_value %>"> |
|
|
|
data-usd-exchange-rate="<%= @exchange_rate.usd_value %>"> |
|
|
|
<% end %> |
|
|
|
<% end %> |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
|
|
|
|
</td> |
|
|
|
|
|
|
|
<td class="stakes-td color-lighten"> |
|
|
|
<!-- percentage of coins from total supply --> |
|
|
|
<!-- percentage of coins from total supply --> |
|
|
|
<span class="ml-0 ml-md-2"> |
|
|
|
|
|
|
|
<%= if @total_supply do %> |
|
|
|
<%= if @total_supply do %> |
|
|
|
(<%= balance_percentage(@address, @total_supply) %>) |
|
|
|
(<%= balance_percentage(@address, @total_supply) %>) |
|
|
|
<% end %> |
|
|
|
<% end %> |
|
|
|
|
|
|
|
</td> |
|
|
|
|
|
|
|
<td class="stakes-td"> |
|
|
|
|
|
|
|
<span class="mr-4"> |
|
|
|
|
|
|
|
<span data-test="transaction_count"> |
|
|
|
|
|
|
|
<%= @tx_count %> |
|
|
|
|
|
|
|
</span> <%= gettext "Transactions sent" %> |
|
|
|
|
|
|
|
<% if validator?(@address) do %> |
|
|
|
|
|
|
|
<span data-test="validation_count"> |
|
|
|
|
|
|
|
<%= @validation_count %> |
|
|
|
|
|
|
|
</span> <%= gettext "Validations" %> |
|
|
|
|
|
|
|
<% end %> |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
</div> |
|
|
|
</tr> |
|
|
|
</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|