Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
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.
blockscout/lib/explorer_web/controllers/transaction_controller.ex

77 lines
1.6 KiB

defmodule ExplorerWeb.TransactionController do
use ExplorerWeb, :controller
import Ecto.Query
alias Explorer.Repo.NewRelic, as: Repo
alias Explorer.Transaction
alias Explorer.TransactionForm
alias Explorer.Transaction.Service.Query
def index(conn, %{"last_seen" => last_seen}) do
query =
Transaction
|> Query.recently_seen(last_seen)
|> Query.include_addresses()
|> Query.require_receipt()
|> Query.require_block()
total_query =
from(
transaction in Transaction,
order_by: [desc: transaction.id],
limit: 1
)
total =
case Repo.one(total_query) do
nil -> 0
total -> total.id
end
entries =
query
|> Repo.all()
|> Enum.map(&TransactionForm.build_and_merge/1)
last = List.last(entries) || Transaction.null()
render(
conn,
"index.html",
transactions: %{
entries: entries,
total_entries: total,
last_seen: last.id
}
)
end
def index(conn, params) do
query =
from(
t in Transaction,
select: t.id,
order_by: [desc: t.id],
limit: 1
)
first_id = Repo.one(query) || 0
last_seen = Integer.to_string(first_id + 1)
index(conn, Map.put(params, "last_seen", last_seen))
end
def show(conn, params) do
transaction =
Transaction
|> Query.by_hash(params["id"])
|> Query.include_addresses()
|> Query.include_receipt()
|> Query.include_block()
|> Repo.one()
|> TransactionForm.build_and_merge()
render(conn, "show.html", transaction: transaction)
end
end