transaction.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!--
  2. This file is part of DarkFi (https://dark.fi)
  3. Copyright (C) 2020-2026 Dyne.org foundation
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU Affero General Public License as
  6. published by the Free Software Foundation, either version 3 of the
  7. License, or (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Affero General Public License for more details.
  12. You should have received a copy of the GNU Affero General Public License
  13. along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. -->
  15. {% extends "base.html" %}
  16. {% block title %}Transaction {{ transaction[0] }}{% endblock %}
  17. {% block content %}
  18. <div class="content-container">
  19. <!-- Page Content Header -->
  20. <div class="content-header" style="padding-bottom: 8px">
  21. <h1 class="content-section-header">Transaction Details</h1>
  22. <div class="">{{ transaction[0] }}</div>
  23. </div>
  24. <!-- Transaction Details -->
  25. <ul>
  26. <li><strong>Timestamp:</strong> {{ transaction[3] }}</li>
  27. <li><strong>Block:</strong> <a href="../block/{{ transaction[1] }}">{{ transaction[1] }}</a></li>
  28. <li><strong>Payload:</strong> {{ transaction[2] }}</li>
  29. </ul>
  30. <!-- Page Content Divider -->
  31. <hr class="content-divider"/>
  32. <!-- Transaction Gas Consumption -->
  33. <div class="content-section" style="padding-top: 12px;">
  34. <h2 class="content-section-header">Gas Consumption</h2>
  35. <ul>
  36. <li><strong>Total:</strong> {{ transaction[4] }}</li>
  37. <li><strong>WASM:</strong> {{ transaction[5] }}</li>
  38. <li><strong>ZK Circuits:</strong> {{ transaction[6] }}</li>
  39. <li><strong>Signatures:</strong> {{ transaction[7] }}</li>
  40. <li><strong>Deployments:</strong> {{ transaction[8] }}</li>
  41. </ul>
  42. </div>
  43. </div>
  44. {% endblock %}