Status

chain
{{ self.chain }}
%% if let Some(height) = self.height {
height
{{ height }}
%% }
inscriptions
{{ self.inscriptions }}
blessed inscriptions
{{ self.blessed_inscriptions }}
cursed inscriptions
{{ self.cursed_inscriptions }}
runes
{{ self.runes }}
lost sats
{{ self.lost_sats }}
started
{{ self.started }}
uptime
{{ humantime::format_duration(self.uptime) }}
minimum rune for next block
{{ self.minimum_rune_for_next_block }}
version
{{ env!("CARGO_PKG_VERSION") }}
unrecoverably reorged
{{ self.unrecoverably_reorged }}
rune index
{{ self.rune_index }}
sat index
{{ self.sat_index }}
transaction index
{{ self.transaction_index }}
%% if !env!("GIT_BRANCH").is_empty() {
git branch
{{ env!("GIT_BRANCH") }}
%% } %% if !env!("GIT_COMMIT").is_empty() {
git commit
{{ env!("GIT_COMMIT") }}
%% }
inscription content types
%% for (content_type, count) in &self.content_type_counts { %% if let Some(content_type) = content_type {
{{String::from_utf8_lossy(&content_type)}}
%% } else {
none
%% }
{{count}} %% }