@extends('minimalUI.blank') @push('styles') @endpush @section('icon', 'pe-7s-rocket') @section('title', 'Home') @section('header', 'Welcome, this is the LBRY Block Explorer') @section('description', 'LBRY is a secure, open, and community-run digital marketplace.') @section('content')
Block Height
{{ $blocks[0]->height }}
Difficulty
{{ number_format($blocks[0]->difficulty) }}
New Claims (last 24 hours)
{{ number_format($total_claims) }}
Latest Blocks
@foreach ($blocks as $block) @endforeach
Height Age Transactions Size
{{ $block->height }} {{ $block->age }} {{ $block->transactions }} txs {{ $block->block_size }} kB
Latest Transactions
@foreach ($transactions as $transaction) @endforeach
Hash Age Value Fee
{{ substr($transaction->hash, 0, 7) }}.. {{ $transaction->age }} {{ $transaction->value }} LBC {{ $transaction->fee }} LBC
Latest Claims
@foreach ($claims as $claim)
@include('components.claim_box', array('claim' => $claim))
@endforeach
@endsection