{#key transitionDirection} {#each ((block != null && visible && $blocksEnabled) ? [block] : []) as block (block.id)}
{#if block.height == $latestBlockHeight}Latest {/if}Block: { numberFormat.format(block.height) }
{ formatDateTime(block.time) } { formattedBlockValue }
{ formatBytes(block.bytes) } { formatCount(block.txnCount) } transaction{block.txnCount == 1 ? '' : 's'}
 
avg fee rate {#if block.fees != null} { formatFee(block.avgFeerate) } sats/vbyte {:else} unavailable {/if}
{#if block.height == $latestBlockHeight}Latest {/if}Block: { numberFormat.format(block.height) }
{ formatDateTime(block.time) } { formattedBlockValue }
{ formatCount(block.txnCount) } transaction{block.txnCount == 1 ? '' : 's'} {#if block.fees != null} { formatFee(block.avgFeerate) } sats/vb {:else} { formatBytes(block.bytes) } {/if}
{#if hasPrevBlock } {/if} {#if hasNextBlock } {/if}
{/each} {/key}