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.
170 lines
5.6 KiB
170 lines
5.6 KiB
defmodule EthereumJSONRPC.Parity do
|
|
@moduledoc """
|
|
Ethereum JSONRPC methods that are only supported by [Parity](https://wiki.parity.io/).
|
|
"""
|
|
|
|
import EthereumJSONRPC, only: [id_to_params: 1, integer_to_quantity: 1, json_rpc: 2, request: 1]
|
|
|
|
alias EthereumJSONRPC.Parity.{FetchedBeneficiaries, Traces}
|
|
alias EthereumJSONRPC.{Transaction, Transactions}
|
|
|
|
@behaviour EthereumJSONRPC.Variant
|
|
|
|
@impl EthereumJSONRPC.Variant
|
|
def fetch_beneficiaries(block_numbers, json_rpc_named_arguments)
|
|
when is_list(block_numbers) and is_list(json_rpc_named_arguments) do
|
|
id_to_params =
|
|
block_numbers
|
|
|> block_numbers_to_params_list()
|
|
|> id_to_params()
|
|
|
|
with {:ok, responses} <-
|
|
id_to_params
|
|
|> FetchedBeneficiaries.requests()
|
|
|> json_rpc(json_rpc_named_arguments) do
|
|
{:ok, FetchedBeneficiaries.from_responses(responses, id_to_params)}
|
|
end
|
|
end
|
|
|
|
@doc """
|
|
Internal transaction fetching for individual transactions is no longer supported for Parity.
|
|
|
|
To signal to the caller that fetching is not supported, `:ignore` is returned.
|
|
"""
|
|
@impl EthereumJSONRPC.Variant
|
|
def fetch_internal_transactions(_transactions_params, _json_rpc_named_arguments), do: :ignore
|
|
|
|
@doc """
|
|
Fetches the `t:Explorer.Chain.InternalTransaction.changeset/2` params from the Parity trace URL.
|
|
"""
|
|
@impl EthereumJSONRPC.Variant
|
|
def fetch_block_internal_transactions(block_numbers, json_rpc_named_arguments) when is_list(block_numbers) do
|
|
id_to_params = id_to_params(block_numbers)
|
|
|
|
with {:ok, responses} <-
|
|
id_to_params
|
|
|> trace_replay_block_transactions_requests()
|
|
|> json_rpc(json_rpc_named_arguments) do
|
|
trace_replay_block_transactions_responses_to_internal_transactions_params(responses, id_to_params)
|
|
end
|
|
end
|
|
|
|
@doc """
|
|
Fetches the pending transactions from the Parity node.
|
|
|
|
*NOTE*: The pending transactions are local to the node that is contacted and may not be consistent across nodes based
|
|
on the transactions that each node has seen and how each node prioritizes collating transactions into the next block.
|
|
"""
|
|
@impl EthereumJSONRPC.Variant
|
|
@spec fetch_pending_transactions(EthereumJSONRPC.json_rpc_named_arguments()) ::
|
|
{:ok, [Transaction.params()]} | {:error, reason :: term}
|
|
def fetch_pending_transactions(json_rpc_named_arguments) do
|
|
with {:ok, transactions} <-
|
|
%{id: 1, method: "parity_pendingTransactions", params: []}
|
|
|> request()
|
|
|> json_rpc(json_rpc_named_arguments) do
|
|
transactions_params =
|
|
transactions
|
|
|> Transactions.to_elixir()
|
|
|> Transactions.elixir_to_params()
|
|
|
|
{:ok, transactions_params}
|
|
end
|
|
end
|
|
|
|
defp block_numbers_to_params_list(block_numbers) when is_list(block_numbers) do
|
|
Enum.map(block_numbers, &%{block_quantity: integer_to_quantity(&1)})
|
|
end
|
|
|
|
defp trace_replay_block_transactions_responses_to_internal_transactions_params(responses, id_to_params)
|
|
when is_list(responses) and is_map(id_to_params) do
|
|
with {:ok, traces} <- trace_replay_block_transactions_responses_to_traces(responses, id_to_params) do
|
|
params =
|
|
traces
|
|
|> Traces.to_elixir()
|
|
|> Traces.elixir_to_params()
|
|
|
|
{:ok, params}
|
|
end
|
|
end
|
|
|
|
defp trace_replay_block_transactions_responses_to_traces(responses, id_to_params)
|
|
when is_list(responses) and is_map(id_to_params) do
|
|
responses
|
|
|> Enum.map(&trace_replay_block_transactions_response_to_traces(&1, id_to_params))
|
|
|> Enum.reduce(
|
|
{:ok, []},
|
|
fn
|
|
{:ok, traces}, {:ok, acc_traces_list} ->
|
|
{:ok, [traces | acc_traces_list]}
|
|
|
|
{:ok, _}, {:error, _} = acc_error ->
|
|
acc_error
|
|
|
|
{:error, reason}, {:ok, _} ->
|
|
{:error, [reason]}
|
|
|
|
{:error, reason}, {:error, acc_reason} ->
|
|
{:error, [reason | acc_reason]}
|
|
end
|
|
)
|
|
|> case do
|
|
{:ok, traces_list} ->
|
|
traces =
|
|
traces_list
|
|
|> Enum.reverse()
|
|
|> List.flatten()
|
|
|
|
{:ok, traces}
|
|
|
|
{:error, reverse_reasons} ->
|
|
reasons = Enum.reverse(reverse_reasons)
|
|
{:error, reasons}
|
|
end
|
|
end
|
|
|
|
defp trace_replay_block_transactions_response_to_traces(%{id: id, result: results}, id_to_params)
|
|
when is_list(results) and is_map(id_to_params) do
|
|
block_number = Map.fetch!(id_to_params, id)
|
|
|
|
annotated_traces =
|
|
results
|
|
|> Stream.with_index()
|
|
|> Enum.flat_map(fn {%{"trace" => traces, "transactionHash" => transaction_hash}, transaction_index} ->
|
|
traces
|
|
|> Stream.with_index()
|
|
|> Enum.map(fn {trace, index} ->
|
|
Map.merge(trace, %{
|
|
"blockNumber" => block_number,
|
|
"transactionHash" => transaction_hash,
|
|
"transactionIndex" => transaction_index,
|
|
"index" => index
|
|
})
|
|
end)
|
|
end)
|
|
|
|
{:ok, annotated_traces}
|
|
end
|
|
|
|
defp trace_replay_block_transactions_response_to_traces(%{id: id, error: error}, id_to_params)
|
|
when is_map(id_to_params) do
|
|
block_number = Map.fetch!(id_to_params, id)
|
|
|
|
annotated_error =
|
|
Map.put(error, :data, %{
|
|
"blockNumber" => block_number
|
|
})
|
|
|
|
{:error, annotated_error}
|
|
end
|
|
|
|
defp trace_replay_block_transactions_requests(id_to_params) when is_map(id_to_params) do
|
|
Enum.map(id_to_params, fn {id, block_number} ->
|
|
trace_replay_block_transactions_request(%{id: id, block_number: block_number})
|
|
end)
|
|
end
|
|
|
|
defp trace_replay_block_transactions_request(%{id: id, block_number: block_number}) do
|
|
request(%{id: id, method: "trace_replayBlockTransactions", params: [integer_to_quantity(block_number), ["trace"]]})
|
|
end
|
|
end
|
|
|