|
|
|
@ -11,57 +11,57 @@ defmodule BlockScoutWeb.BlockTransactionController do |
|
|
|
|
alias Phoenix.View |
|
|
|
|
|
|
|
|
|
def index(conn, %{"block_hash_or_number" => formatted_block_hash_or_number, "type" => "JSON"} = params) do |
|
|
|
|
with {:ok, block} <- |
|
|
|
|
param_block_hash_or_number_to_block(formatted_block_hash_or_number, []) do |
|
|
|
|
full_options = |
|
|
|
|
Keyword.merge( |
|
|
|
|
[ |
|
|
|
|
necessity_by_association: %{ |
|
|
|
|
:block => :optional, |
|
|
|
|
[created_contract_address: :names] => :optional, |
|
|
|
|
[from_address: :names] => :required, |
|
|
|
|
[to_address: :names] => :optional |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
paging_options(params) |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
transactions_plus_one = Chain.block_to_transactions(block.hash, full_options) |
|
|
|
|
|
|
|
|
|
{transactions, next_page} = split_list_by_page(transactions_plus_one) |
|
|
|
|
|
|
|
|
|
next_page_path = |
|
|
|
|
case next_page_params(next_page, transactions, params) do |
|
|
|
|
nil -> |
|
|
|
|
nil |
|
|
|
|
case param_block_hash_or_number_to_block(formatted_block_hash_or_number, []) do |
|
|
|
|
{:ok, block} -> |
|
|
|
|
full_options = |
|
|
|
|
Keyword.merge( |
|
|
|
|
[ |
|
|
|
|
necessity_by_association: %{ |
|
|
|
|
:block => :optional, |
|
|
|
|
[created_contract_address: :names] => :optional, |
|
|
|
|
[from_address: :names] => :required, |
|
|
|
|
[to_address: :names] => :optional |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
paging_options(params) |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
next_page_params -> |
|
|
|
|
block_transaction_path( |
|
|
|
|
conn, |
|
|
|
|
:index, |
|
|
|
|
block, |
|
|
|
|
Map.delete(next_page_params, "type") |
|
|
|
|
transactions_plus_one = Chain.block_to_transactions(block.hash, full_options) |
|
|
|
|
|
|
|
|
|
{transactions, next_page} = split_list_by_page(transactions_plus_one) |
|
|
|
|
|
|
|
|
|
next_page_path = |
|
|
|
|
case next_page_params(next_page, transactions, params) do |
|
|
|
|
nil -> |
|
|
|
|
nil |
|
|
|
|
|
|
|
|
|
next_page_params -> |
|
|
|
|
block_transaction_path( |
|
|
|
|
conn, |
|
|
|
|
:index, |
|
|
|
|
block, |
|
|
|
|
Map.delete(next_page_params, "type") |
|
|
|
|
) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
items = |
|
|
|
|
transactions |
|
|
|
|
|> Enum.map(fn transaction -> |
|
|
|
|
View.render_to_string( |
|
|
|
|
TransactionView, |
|
|
|
|
"_tile.html", |
|
|
|
|
transaction: transaction |
|
|
|
|
) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
items = |
|
|
|
|
transactions |
|
|
|
|
|> Enum.map(fn transaction -> |
|
|
|
|
View.render_to_string( |
|
|
|
|
TransactionView, |
|
|
|
|
"_tile.html", |
|
|
|
|
transaction: transaction |
|
|
|
|
) |
|
|
|
|
end) |
|
|
|
|
|
|
|
|
|
json( |
|
|
|
|
conn, |
|
|
|
|
%{ |
|
|
|
|
items: items, |
|
|
|
|
next_page_path: next_page_path |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
else |
|
|
|
|
end) |
|
|
|
|
|
|
|
|
|
json( |
|
|
|
|
conn, |
|
|
|
|
%{ |
|
|
|
|
items: items, |
|
|
|
|
next_page_path: next_page_path |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
{:error, {:invalid, :hash}} -> |
|
|
|
|
not_found(conn) |
|
|
|
|
|
|
|
|
@ -80,25 +80,25 @@ defmodule BlockScoutWeb.BlockTransactionController do |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
def index(conn, %{"block_hash_or_number" => formatted_block_hash_or_number}) do |
|
|
|
|
with {:ok, block} <- |
|
|
|
|
param_block_hash_or_number_to_block(formatted_block_hash_or_number, |
|
|
|
|
necessity_by_association: %{ |
|
|
|
|
[miner: :names] => :required, |
|
|
|
|
:uncles => :optional, |
|
|
|
|
:nephews => :optional, |
|
|
|
|
:rewards => :optional |
|
|
|
|
} |
|
|
|
|
) do |
|
|
|
|
block_transaction_count = Chain.block_to_transaction_count(block.hash) |
|
|
|
|
|
|
|
|
|
render( |
|
|
|
|
conn, |
|
|
|
|
"index.html", |
|
|
|
|
block: block, |
|
|
|
|
block_transaction_count: block_transaction_count, |
|
|
|
|
current_path: current_path(conn) |
|
|
|
|
) |
|
|
|
|
else |
|
|
|
|
case param_block_hash_or_number_to_block(formatted_block_hash_or_number, |
|
|
|
|
necessity_by_association: %{ |
|
|
|
|
[miner: :names] => :required, |
|
|
|
|
:uncles => :optional, |
|
|
|
|
:nephews => :optional, |
|
|
|
|
:rewards => :optional |
|
|
|
|
} |
|
|
|
|
) do |
|
|
|
|
{:ok, block} -> |
|
|
|
|
block_transaction_count = Chain.block_to_transaction_count(block.hash) |
|
|
|
|
|
|
|
|
|
render( |
|
|
|
|
conn, |
|
|
|
|
"index.html", |
|
|
|
|
block: block, |
|
|
|
|
block_transaction_count: block_transaction_count, |
|
|
|
|
current_path: current_path(conn) |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
{:error, {:invalid, :hash}} -> |
|
|
|
|
not_found(conn) |
|
|
|
|
|
|
|
|
@ -117,19 +117,23 @@ defmodule BlockScoutWeb.BlockTransactionController do |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
defp param_block_hash_or_number_to_block("0x" <> _ = param, options) do |
|
|
|
|
with {:ok, hash} <- string_to_block_hash(param) do |
|
|
|
|
hash_to_block(hash, options) |
|
|
|
|
else |
|
|
|
|
:error -> {:error, {:invalid, :hash}} |
|
|
|
|
case string_to_block_hash(param) do |
|
|
|
|
{:ok, hash} -> |
|
|
|
|
hash_to_block(hash, options) |
|
|
|
|
|
|
|
|
|
:error -> |
|
|
|
|
{:error, {:invalid, :hash}} |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
defp param_block_hash_or_number_to_block(number_string, options) |
|
|
|
|
when is_binary(number_string) do |
|
|
|
|
with {:ok, number} <- BlockScoutWeb.Chain.param_to_block_number(number_string) do |
|
|
|
|
number_to_block(number, options) |
|
|
|
|
else |
|
|
|
|
{:error, :invalid} -> {:error, {:invalid, :number}} |
|
|
|
|
case BlockScoutWeb.Chain.param_to_block_number(number_string) do |
|
|
|
|
{:ok, number} -> |
|
|
|
|
number_to_block(number, options) |
|
|
|
|
|
|
|
|
|
{:error, :invalid} -> |
|
|
|
|
{:error, {:invalid, :number}} |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|