transaction.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # This file is part of DarkFi (https://dark.fi)
  2. #
  3. # Copyright (C) 2020-2026 Dyne.org foundation
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU Affero General Public License as
  7. # published by the Free Software Foundation, either version 3 of the
  8. # License, or (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU Affero General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License
  16. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. """
  18. Blueprint: transaction_bp
  19. This module defines a Flask blueprint (`transaction_bp`) for handling transaction-related functionality,
  20. serving as a primary location for Flask code related to routes and related features associated with transactions.
  21. """
  22. from flask import Blueprint, render_template
  23. import rpc
  24. # Create transaction blueprint
  25. transaction_bp = Blueprint("transaction", __name__)
  26. @transaction_bp.route('/tx/<transaction_hash>')
  27. async def transaction(transaction_hash):
  28. """
  29. Retrieves transaction details based on the provided hash using RPC calls to the explorer daemon
  30. and returns a rendered template displaying the information.
  31. Path Args:
  32. transaction_hash (str): The hash of the transaction to retrieve.
  33. """
  34. # Fetch the transaction details
  35. transaction = await rpc.get_transaction(transaction_hash)
  36. # Render the template using the fetched transaction details
  37. return render_template('transaction.html', transaction=transaction)