{data.meta.title}


{#if nodeInfo === undefined}

Loading...

{:else if nodeInfo === null}

Node ID does not exist

{:else}
Hostname:Port {nodeInfo?.hostname}:{nodeInfo?.port}
Public IP {nodeInfo?.ip}
Net Type {nodeInfo?.nettype.toUpperCase()}
Est. FeeDate CheckedRuntime {#each $rows as row (row.id)} {#if row.status !== 1} {:else} {/if} {/each}
#ID Prober ID Height Adjusted Time DB Size Difficulty
{row.id} {row.prober_id} {row.status === 1 ? 'OK' : 'ERR'}{row.failed_reason ?? ''}{row.height.toLocaleString(undefined)} {format(row.adjusted_time * 1000, 'yyyy-MM-dd HH:mm')} {formatBytes(row.database_size, 2)} {formatHashes(row.difficulty)} {row.estimate_fee.toLocaleString(undefined)} {format(row.date_checked * 1000, 'PP HH:mm')}
{formatDistance(row.date_checked * 1000, new Date(), { addSuffix: true })}
{parseRuntime(row.fetch_runtime)}
{/if}