|
|
@ -6,6 +6,8 @@ defmodule Explorer.Chain.Transaction.Schema do |
|
|
|
- Explorer.Chain.Import.Runner.Transactions |
|
|
|
- Explorer.Chain.Import.Runner.Transactions |
|
|
|
""" |
|
|
|
""" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
alias Explorer.Chain |
|
|
|
|
|
|
|
|
|
|
|
alias Explorer.Chain.{ |
|
|
|
alias Explorer.Chain.{ |
|
|
|
Address, |
|
|
|
Address, |
|
|
|
Beacon.BlobTransaction, |
|
|
|
Beacon.BlobTransaction, |
|
|
@ -302,6 +304,8 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
Wei |
|
|
|
Wei |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
alias Explorer.Chain.SmartContract.Proxy.Models.Implementation |
|
|
|
|
|
|
|
|
|
|
|
alias Explorer.SmartContract.SigProviderInterface |
|
|
|
alias Explorer.SmartContract.SigProviderInterface |
|
|
|
|
|
|
|
|
|
|
|
@optional_attrs ~w(max_priority_fee_per_gas max_fee_per_gas block_hash block_number |
|
|
|
@optional_attrs ~w(max_priority_fee_per_gas max_fee_per_gas block_hash block_number |
|
|
@ -751,28 +755,59 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
boolean(), |
|
|
|
boolean(), |
|
|
|
[Chain.api?()], |
|
|
|
[Chain.api?()], |
|
|
|
full_abi_acc, |
|
|
|
full_abi_acc, |
|
|
|
methods_acc |
|
|
|
methods_acc, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
) :: |
|
|
|
) :: |
|
|
|
{error_type | success_type, full_abi_acc, methods_acc} |
|
|
|
{error_type | success_type, full_abi_acc, methods_acc} |
|
|
|
when full_abi_acc: map(), |
|
|
|
when full_abi_acc: map(), |
|
|
|
methods_acc: map(), |
|
|
|
methods_acc: map(), |
|
|
|
|
|
|
|
proxy_implementation_addresses_map: map(), |
|
|
|
error_type: {:error, any()} | {:error, :contract_not_verified | :contract_verified, list()}, |
|
|
|
error_type: {:error, any()} | {:error, :contract_not_verified | :contract_verified, list()}, |
|
|
|
success_type: {:ok | binary(), any()} | {:ok, binary(), binary(), list()} |
|
|
|
success_type: {:ok | binary(), any()} | {:ok, binary(), binary(), list()} |
|
|
|
def decoded_input_data(tx, skip_sig_provider? \\ false, options, full_abi_acc \\ %{}, methods_acc \\ %{}) |
|
|
|
def decoded_input_data( |
|
|
|
|
|
|
|
tx, |
|
|
|
|
|
|
|
skip_sig_provider? \\ false, |
|
|
|
|
|
|
|
options, |
|
|
|
|
|
|
|
full_abi_acc \\ %{}, |
|
|
|
|
|
|
|
methods_acc \\ %{}, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map \\ %{} |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
def decoded_input_data(%__MODULE__{to_address: nil}, _, _, full_abi_acc, methods_acc), |
|
|
|
def decoded_input_data( |
|
|
|
do: {{:error, :no_to_address}, full_abi_acc, methods_acc} |
|
|
|
%__MODULE__{to_address: nil}, |
|
|
|
|
|
|
|
_, |
|
|
|
|
|
|
|
_, |
|
|
|
|
|
|
|
full_abi_acc, |
|
|
|
|
|
|
|
methods_acc, |
|
|
|
|
|
|
|
_proxy_implementation_addresses_map |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
do: {{:error, :no_to_address}, full_abi_acc, methods_acc} |
|
|
|
|
|
|
|
|
|
|
|
def decoded_input_data(%NotLoaded{}, _, _, full_abi_acc, methods_acc), |
|
|
|
def decoded_input_data(%NotLoaded{}, _, _, full_abi_acc, methods_acc, _proxy_implementation_addresses_map), |
|
|
|
do: {{:error, :not_loaded}, full_abi_acc, methods_acc} |
|
|
|
do: {{:error, :not_loaded}, full_abi_acc, methods_acc} |
|
|
|
|
|
|
|
|
|
|
|
def decoded_input_data(%__MODULE__{input: %{bytes: bytes}}, _, _, full_abi_acc, methods_acc) |
|
|
|
def decoded_input_data( |
|
|
|
when bytes in [nil, <<>>], |
|
|
|
%__MODULE__{input: %{bytes: bytes}}, |
|
|
|
do: {{:error, :no_input_data}, full_abi_acc, methods_acc} |
|
|
|
_, |
|
|
|
|
|
|
|
_, |
|
|
|
|
|
|
|
full_abi_acc, |
|
|
|
|
|
|
|
methods_acc, |
|
|
|
|
|
|
|
_proxy_implementation_addresses_map |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
when bytes in [nil, <<>>] do |
|
|
|
|
|
|
|
{{:error, :no_input_data}, full_abi_acc, methods_acc} |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
if not Application.compile_env(:explorer, :decode_not_a_contract_calls) do |
|
|
|
if not Application.compile_env(:explorer, :decode_not_a_contract_calls) do |
|
|
|
def decoded_input_data(%__MODULE__{to_address: %{contract_code: nil}}, _, _, full_abi_acc, methods_acc), |
|
|
|
def decoded_input_data( |
|
|
|
do: {{:error, :not_a_contract_call}, full_abi_acc, methods_acc} |
|
|
|
%__MODULE__{to_address: %{contract_code: nil}}, |
|
|
|
|
|
|
|
_, |
|
|
|
|
|
|
|
_, |
|
|
|
|
|
|
|
full_abi_acc, |
|
|
|
|
|
|
|
methods_acc, |
|
|
|
|
|
|
|
_proxy_implementation_addresses_map |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
do: {{:error, :not_a_contract_call}, full_abi_acc, methods_acc} |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def decoded_input_data( |
|
|
|
def decoded_input_data( |
|
|
@ -784,7 +819,8 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
skip_sig_provider?, |
|
|
|
skip_sig_provider?, |
|
|
|
options, |
|
|
|
options, |
|
|
|
full_abi_acc, |
|
|
|
full_abi_acc, |
|
|
|
methods_acc |
|
|
|
methods_acc, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
) do |
|
|
|
) do |
|
|
|
decoded_input_data( |
|
|
|
decoded_input_data( |
|
|
|
%__MODULE__{ |
|
|
|
%__MODULE__{ |
|
|
@ -795,7 +831,8 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
skip_sig_provider?, |
|
|
|
skip_sig_provider?, |
|
|
|
options, |
|
|
|
options, |
|
|
|
full_abi_acc, |
|
|
|
full_abi_acc, |
|
|
|
methods_acc |
|
|
|
methods_acc, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
) |
|
|
|
) |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
@ -808,7 +845,8 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
skip_sig_provider?, |
|
|
|
skip_sig_provider?, |
|
|
|
options, |
|
|
|
options, |
|
|
|
full_abi_acc, |
|
|
|
full_abi_acc, |
|
|
|
methods_acc |
|
|
|
methods_acc, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
) do |
|
|
|
) do |
|
|
|
decoded_input_data( |
|
|
|
decoded_input_data( |
|
|
|
%__MODULE__{ |
|
|
|
%__MODULE__{ |
|
|
@ -819,7 +857,8 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
skip_sig_provider?, |
|
|
|
skip_sig_provider?, |
|
|
|
options, |
|
|
|
options, |
|
|
|
full_abi_acc, |
|
|
|
full_abi_acc, |
|
|
|
methods_acc |
|
|
|
methods_acc, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
) |
|
|
|
) |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
@ -832,7 +871,8 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
skip_sig_provider?, |
|
|
|
skip_sig_provider?, |
|
|
|
options, |
|
|
|
options, |
|
|
|
full_abi_acc, |
|
|
|
full_abi_acc, |
|
|
|
methods_acc |
|
|
|
methods_acc, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
) do |
|
|
|
) do |
|
|
|
{methods, methods_acc} = |
|
|
|
{methods, methods_acc} = |
|
|
|
method_id |
|
|
|
method_id |
|
|
@ -841,7 +881,14 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
candidates = |
|
|
|
candidates = |
|
|
|
methods |
|
|
|
methods |
|
|
|
|> Enum.flat_map(fn candidate -> |
|
|
|
|> Enum.flat_map(fn candidate -> |
|
|
|
case do_decoded_input_data(data, %SmartContract{abi: [candidate.abi], address_hash: nil}, hash, options, %{}) do |
|
|
|
case do_decoded_input_data( |
|
|
|
|
|
|
|
data, |
|
|
|
|
|
|
|
%SmartContract{abi: [candidate.abi], address_hash: nil}, |
|
|
|
|
|
|
|
hash, |
|
|
|
|
|
|
|
options, |
|
|
|
|
|
|
|
%{}, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
|
|
|
|
) do |
|
|
|
{{:ok, _, _, _} = decoded, _} -> [decoded] |
|
|
|
{{:ok, _, _, _} = decoded, _} -> [decoded] |
|
|
|
_ -> [] |
|
|
|
_ -> [] |
|
|
|
end |
|
|
|
end |
|
|
@ -852,7 +899,14 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
full_abi_acc, methods_acc} |
|
|
|
full_abi_acc, methods_acc} |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def decoded_input_data(%__MODULE__{to_address: %NotLoaded{}}, _, _, full_abi_acc, methods_acc) do |
|
|
|
def decoded_input_data( |
|
|
|
|
|
|
|
%__MODULE__{to_address: %NotLoaded{}}, |
|
|
|
|
|
|
|
_, |
|
|
|
|
|
|
|
_, |
|
|
|
|
|
|
|
full_abi_acc, |
|
|
|
|
|
|
|
methods_acc, |
|
|
|
|
|
|
|
_proxy_implementation_addresses_map |
|
|
|
|
|
|
|
) do |
|
|
|
{{:error, :contract_not_verified, []}, full_abi_acc, methods_acc} |
|
|
|
{{:error, :contract_not_verified, []}, full_abi_acc, methods_acc} |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
@ -865,9 +919,17 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
skip_sig_provider?, |
|
|
|
skip_sig_provider?, |
|
|
|
options, |
|
|
|
options, |
|
|
|
full_abi_acc, |
|
|
|
full_abi_acc, |
|
|
|
methods_acc |
|
|
|
methods_acc, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
) do |
|
|
|
) do |
|
|
|
case do_decoded_input_data(data, smart_contract, hash, options, full_abi_acc) do |
|
|
|
case do_decoded_input_data( |
|
|
|
|
|
|
|
data, |
|
|
|
|
|
|
|
smart_contract, |
|
|
|
|
|
|
|
hash, |
|
|
|
|
|
|
|
options, |
|
|
|
|
|
|
|
full_abi_acc, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
|
|
|
|
) do |
|
|
|
# In some cases transactions use methods of some unpredictable contracts, so we can try to look up for method in a whole DB |
|
|
|
# In some cases transactions use methods of some unpredictable contracts, so we can try to look up for method in a whole DB |
|
|
|
{{:error, :could_not_decode}, full_abi_acc} -> |
|
|
|
{{:error, :could_not_decode}, full_abi_acc} -> |
|
|
|
case decoded_input_data( |
|
|
|
case decoded_input_data( |
|
|
@ -879,7 +941,8 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
skip_sig_provider?, |
|
|
|
skip_sig_provider?, |
|
|
|
options, |
|
|
|
options, |
|
|
|
full_abi_acc, |
|
|
|
full_abi_acc, |
|
|
|
methods_acc |
|
|
|
methods_acc, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
) do |
|
|
|
) do |
|
|
|
{{:error, :contract_not_verified, []}, full_abi_acc, methods_acc} -> |
|
|
|
{{:error, :contract_not_verified, []}, full_abi_acc, methods_acc} -> |
|
|
|
{decode_function_call_via_sig_provider_wrapper(input, hash, skip_sig_provider?), full_abi_acc, methods_acc} |
|
|
|
{decode_function_call_via_sig_provider_wrapper(input, hash, skip_sig_provider?), full_abi_acc, methods_acc} |
|
|
@ -906,8 +969,16 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
defp do_decoded_input_data(data, smart_contract, hash, options, full_abi_acc) do |
|
|
|
defp do_decoded_input_data( |
|
|
|
{full_abi, full_abi_acc} = check_full_abi_cache(smart_contract, full_abi_acc, options) |
|
|
|
data, |
|
|
|
|
|
|
|
smart_contract, |
|
|
|
|
|
|
|
hash, |
|
|
|
|
|
|
|
options, |
|
|
|
|
|
|
|
full_abi_acc, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map \\ %{} |
|
|
|
|
|
|
|
) do |
|
|
|
|
|
|
|
{full_abi, full_abi_acc} = |
|
|
|
|
|
|
|
check_full_abi_cache(smart_contract, full_abi_acc, options, proxy_implementation_addresses_map) |
|
|
|
|
|
|
|
|
|
|
|
{with( |
|
|
|
{with( |
|
|
|
{:ok, {selector, values}} <- find_and_decode(full_abi, data, hash), |
|
|
|
{:ok, {selector, values}} <- find_and_decode(full_abi, data, hash), |
|
|
@ -948,11 +1019,22 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
defp check_full_abi_cache(%{address_hash: address_hash} = smart_contract, full_abi_acc, options) do |
|
|
|
defp check_full_abi_cache( |
|
|
|
|
|
|
|
%{address_hash: address_hash} = smart_contract, |
|
|
|
|
|
|
|
full_abi_acc, |
|
|
|
|
|
|
|
options, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
|
|
|
|
) do |
|
|
|
if !is_nil(address_hash) && Map.has_key?(full_abi_acc, address_hash) do |
|
|
|
if !is_nil(address_hash) && Map.has_key?(full_abi_acc, address_hash) do |
|
|
|
{full_abi_acc[address_hash], full_abi_acc} |
|
|
|
{full_abi_acc[address_hash], full_abi_acc} |
|
|
|
else |
|
|
|
else |
|
|
|
full_abi = Proxy.combine_proxy_implementation_abi(smart_contract, options) |
|
|
|
full_abi = |
|
|
|
|
|
|
|
Proxy.combine_proxy_implementation_abi( |
|
|
|
|
|
|
|
smart_contract, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map, |
|
|
|
|
|
|
|
false, |
|
|
|
|
|
|
|
options |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
{full_abi, Map.put(full_abi_acc, address_hash, full_abi)} |
|
|
|
{full_abi, Map.put(full_abi_acc, address_hash, full_abi)} |
|
|
|
end |
|
|
|
end |
|
|
@ -1911,10 +1993,19 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
""" |
|
|
|
""" |
|
|
|
@spec decode_transactions([Transaction.t()], boolean(), Keyword.t()) :: {[any()], map(), map()} |
|
|
|
@spec decode_transactions([Transaction.t()], boolean(), Keyword.t()) :: {[any()], map(), map()} |
|
|
|
def decode_transactions(transactions, skip_sig_provider?, opts) do |
|
|
|
def decode_transactions(transactions, skip_sig_provider?, opts) do |
|
|
|
|
|
|
|
proxy_implementation_addresses_map = combine_proxy_implementation_addresses_map(transactions) |
|
|
|
|
|
|
|
|
|
|
|
{results, abi_acc, methods_acc} = |
|
|
|
{results, abi_acc, methods_acc} = |
|
|
|
Enum.reduce(transactions, {[], %{}, %{}}, fn transaction, {results, abi_acc, methods_acc} -> |
|
|
|
Enum.reduce(transactions, {[], %{}, %{}}, fn transaction, {results, abi_acc, methods_acc} -> |
|
|
|
{result, abi_acc, methods_acc} = |
|
|
|
{result, abi_acc, methods_acc} = |
|
|
|
decoded_input_data(transaction, skip_sig_provider?, opts, abi_acc, methods_acc) |
|
|
|
decoded_input_data( |
|
|
|
|
|
|
|
transaction, |
|
|
|
|
|
|
|
skip_sig_provider?, |
|
|
|
|
|
|
|
opts, |
|
|
|
|
|
|
|
abi_acc, |
|
|
|
|
|
|
|
methods_acc, |
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
{[format_decoded_input(result) | results], abi_acc, methods_acc} |
|
|
|
{[format_decoded_input(result) | results], abi_acc, methods_acc} |
|
|
|
end) |
|
|
|
end) |
|
|
@ -1922,6 +2013,42 @@ defmodule Explorer.Chain.Transaction do |
|
|
|
{Enum.reverse(results), abi_acc, methods_acc} |
|
|
|
{Enum.reverse(results), abi_acc, methods_acc} |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
defp combine_proxy_implementation_addresses_map(transactions) do |
|
|
|
|
|
|
|
# parse unique address hashes of smart-contracts from to_address and created_contract_address properties of the transactions list |
|
|
|
|
|
|
|
unique_to_address_hashes = |
|
|
|
|
|
|
|
transactions |
|
|
|
|
|
|
|
|> Enum.flat_map(fn |
|
|
|
|
|
|
|
%Transaction{to_address: %Address{hash: hash}} -> [hash] |
|
|
|
|
|
|
|
%Transaction{created_contract_address: %Address{hash: hash}} -> [hash] |
|
|
|
|
|
|
|
_ -> [] |
|
|
|
|
|
|
|
end) |
|
|
|
|
|
|
|
|> Enum.uniq() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# query from the DB proxy implementation objects for those address hashes |
|
|
|
|
|
|
|
multiple_proxy_implementations = |
|
|
|
|
|
|
|
Implementation.get_proxy_implementations_for_multiple_proxies(unique_to_address_hashes) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# query from the DB address objects with smart_contract preload for all found above implementation addresses |
|
|
|
|
|
|
|
implementation_addresses_with_smart_contracts = |
|
|
|
|
|
|
|
multiple_proxy_implementations |
|
|
|
|
|
|
|
|> Enum.flat_map(fn proxy_implementations -> proxy_implementations.address_hashes end) |
|
|
|
|
|
|
|
|> Chain.hashes_to_addresses(necessity_by_association: %{smart_contract: :optional}) |
|
|
|
|
|
|
|
|> Enum.into(%{}, &{&1.hash, &1}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# combine map %{proxy_address_hash => the list of implementations as Address.t() object with preloaded SmartContract.t()} |
|
|
|
|
|
|
|
multiple_proxy_implementations |
|
|
|
|
|
|
|
|> Enum.reduce(%{}, fn proxy_implementations, proxy_implementation_addresses_map -> |
|
|
|
|
|
|
|
implementation_addresses_with_smart_contract_preload = |
|
|
|
|
|
|
|
proxy_implementations.address_hashes |
|
|
|
|
|
|
|
|> Enum.map(fn implementation_address_hash -> |
|
|
|
|
|
|
|
Map.get(implementation_addresses_with_smart_contracts, implementation_address_hash) |
|
|
|
|
|
|
|
end) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
proxy_implementation_addresses_map |
|
|
|
|
|
|
|
|> Map.put(proxy_implementations.proxy_address_hash, implementation_addresses_with_smart_contract_preload) |
|
|
|
|
|
|
|
end) |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
@doc """ |
|
|
|
@doc """ |
|
|
|
Receives as input result of decoded_input_data/5, returns either nil or decoded input in format: {:ok, _identifier, _text, _mapping} |
|
|
|
Receives as input result of decoded_input_data/5, returns either nil or decoded input in format: {:ok, _identifier, _text, _mapping} |
|
|
|
""" |
|
|
|
""" |
|
|
|