bitomc 0.1.4

BitOMC wallet and indexer
Documentation
<h1>Status</h1>
<dl>
  <dt>chain</dt>
  <dd>{{ self.chain }}</dd>
%% if let Some(height) = self.height {
  <dt>height</dt>
  <dd><a href=/block/{{ height }}>{{ height }}</a></dd>
%% }
  <dt>runes</dt>
  <dd><a href=/runes>{{ self.runes }}</a></dd>
  <dt>lost sats</dt>
  <dd>{{ self.lost_sats }}</dd>
  <dt>started</dt>
  <dd>{{ self.started }}</dd>
  <dt>uptime</dt>
  <dd>{{ humantime::format_duration(self.uptime) }}</dd>
  <dt>initial sync time</dt>
  <dd>{{ humantime::format_duration(self.initial_sync_time) }}</dd>
  <dt>version</dt>
  <dd>{{ env!("CARGO_PKG_VERSION") }}</dd>
  <dt>unrecoverably reorged</dt>
  <dd>{{ self.unrecoverably_reorged }}</dd>
  <dt>address index</dt>
  <dd>{{ self.address_index }}</dd>
  <dt>transaction index</dt>
  <dd>{{ self.transaction_index }}</dd>
%% if !env!("GIT_BRANCH").is_empty() {
  <dt>git branch</dt>
  <dd>{{ env!("GIT_BRANCH") }}</dd>
%% }
%% if !env!("GIT_COMMIT").is_empty() {
  <dt>git commit</dt>
  <dd>
    <a href=https://github.com/BitOMC/BitOMC/commit/{{ env!("GIT_COMMIT") }}>
      {{ env!("GIT_COMMIT") }}
    </a>
  </dd>
%% }
</dl>