Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

38 řádky
1.2KB

  1. extends layout
  2. block content
  3. h1 Vivocoin RPC Explorer
  4. hr
  5. :markdown-it
  6. This tool is intended to be a simple, stateless, self-hosted explorer for the Vivocoin blockchain, driven by RPC calls to your own vivod node. Because it is stateless, it is easy to run but lacks some (many?) of the features of other explorers.
  7. Start by connecting to your full, archiving smartcashd node. Make sure that the node you'll be connecting to has `txindex=1` set.
  8. form(method="post", action="/connect")
  9. div(class="card")
  10. div(class="card-body")
  11. h4(class="card-title") RPC Connect
  12. hr
  13. div(class="form-group")
  14. label(for="input-host") Host / IP
  15. input(type="text", name="host", class="form-control", value=host)
  16. div(class="form-group")
  17. label(for="input-host") Port
  18. input(type="text", name="port", class="form-control", value=port)
  19. div(class="form-group")
  20. label(for="input-host") Username
  21. input(type="text", name="username", class="form-control", value=username)
  22. div(class="form-group")
  23. label(for="input-host") Password
  24. input(type="password", name="password", class="form-control")
  25. hr
  26. input(type="submit", class="btn btn-primary btn-block" value="Connect")