You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
3.1 KiB

  1. <div class="row">
  2. <div class="col-sm-4">
  3. <div class="panel">
  4. <div class="panel-heading c_deepPurpleG300to500">
  5. <h3 class="panel-title">Block Height {{block.height}}</h3>
  6. </div>
  7. <div class="panel-body">
  8. Block Hash:
  9. <p style="font-size: 9px;">
  10. {{block.hash}}
  11. </p>
  12. </div>
  13. </div>
  14. </div>
  15. <div class="col-sm-8">
  16. <div class="panel">
  17. <div class="panel-heading c_deepPurpleG300to500">
  18. <h3 class="panel-title">Block transactions flow</h3>
  19. </div>
  20. <div class="panel-body" style="height: 300px;overflow-y: hidden;">
  21. <div id="sankeyChart">
  22. <canvas></canvas>
  23. <svg></svg>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. <div class="row">
  30. <div class="col-sm-12">
  31. <div class="panel">
  32. <div class="panel-heading c_deepPurpleG300to500">
  33. <h3 class="panel-title">Tx in block</h3>
  34. </div>
  35. <div class="panel-body">
  36. <div class="col-sm-12">
  37. <table class="table table-hover">
  38. <thead>
  39. <tr>
  40. <th>Txid</th>
  41. <th>Input</th>
  42. <th>Output</th>
  43. </tr>
  44. </thead>
  45. <tbody>
  46. <tr ng-repeat="tx in block.txs">
  47. <td style="max-width:20px; overflow:hidden;">
  48. <a ng-href="#!/tx/{{tx.txid}}" class="list-group-item-text">
  49. {{tx.txid}}
  50. </a>
  51. </td>
  52. <td style="max-width:20px; overflow:hidden;">
  53. <table><tbody><tr ng-repeat="vin in tx.vin"><td>
  54. <a ng-href="#!/address/{{vin.address}}" class="list-group-item-text">
  55. {{vin.address}}
  56. </a>
  57. :{{vin.amount}}
  58. </td></tr></tbody></table>
  59. </td>
  60. <td style="max-width:20px; overflow:hidden;">
  61. <table><tbody><tr ng-repeat="vout in tx.vout"><td>
  62. <a ng-href="#!/address/{{vout.address}}" class="list-group-item-text">
  63. {{vout.address}}
  64. </a>
  65. :{{vout.value}}
  66. </td></tr></tbody></table>
  67. </td>
  68. </tr>
  69. </tbody>
  70. </table>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. </div>