|
|
|
@ -5,9 +5,9 @@ defmodule Explorer.Etherscan.Logs do |
|
|
|
|
|
|
|
|
|
""" |
|
|
|
|
|
|
|
|
|
import Ecto.Query, only: [from: 2, where: 3, subquery: 1, order_by: 3, limit: 2] |
|
|
|
|
import Ecto.Query, only: [from: 2, where: 3, subquery: 1] |
|
|
|
|
|
|
|
|
|
alias Explorer.Chain.Log |
|
|
|
|
alias Explorer.Chain.{Block, InternalTransaction, Log, Transaction} |
|
|
|
|
alias Explorer.Repo |
|
|
|
|
|
|
|
|
|
@base_filter %{ |
|
|
|
@ -67,33 +67,99 @@ defmodule Explorer.Etherscan.Logs do |
|
|
|
|
|
|
|
|
|
""" |
|
|
|
|
@spec list_logs(map()) :: [map()] |
|
|
|
|
def list_logs(filter) do |
|
|
|
|
def list_logs(%{address_hash: address_hash} = filter) when not is_nil(address_hash) do |
|
|
|
|
prepared_filter = Map.merge(@base_filter, filter) |
|
|
|
|
|
|
|
|
|
query = |
|
|
|
|
from( |
|
|
|
|
l in Log, |
|
|
|
|
inner_join: t in assoc(l, :transaction), |
|
|
|
|
inner_join: b in assoc(t, :block), |
|
|
|
|
where: b.number >= ^prepared_filter.from_block, |
|
|
|
|
where: b.number <= ^prepared_filter.to_block, |
|
|
|
|
logs_query = where_topic_match(Log, prepared_filter) |
|
|
|
|
|
|
|
|
|
internal_transaction_log_query = |
|
|
|
|
from(internal_transaction in InternalTransaction, |
|
|
|
|
join: transaction in assoc(internal_transaction, :transaction), |
|
|
|
|
join: log in ^logs_query, |
|
|
|
|
on: log.transaction_hash == internal_transaction.transaction_hash, |
|
|
|
|
where: internal_transaction.block_number >= ^prepared_filter.from_block, |
|
|
|
|
where: internal_transaction.block_number <= ^prepared_filter.to_block, |
|
|
|
|
where: internal_transaction.to_address_hash == ^address_hash, |
|
|
|
|
or_where: internal_transaction.from_address_hash == ^address_hash, |
|
|
|
|
or_where: internal_transaction.created_contract_address_hash == ^address_hash, |
|
|
|
|
select: |
|
|
|
|
merge(map(l, ^@log_fields), %{ |
|
|
|
|
gas_price: t.gas_price, |
|
|
|
|
gas_used: t.gas_used, |
|
|
|
|
transaction_index: t.index, |
|
|
|
|
block_number: b.number, |
|
|
|
|
block_timestamp: b.timestamp |
|
|
|
|
merge(map(log, ^@log_fields), %{ |
|
|
|
|
gas_price: transaction.gas_price, |
|
|
|
|
gas_used: transaction.gas_used, |
|
|
|
|
transaction_index: transaction.index, |
|
|
|
|
block_number: transaction.block_number |
|
|
|
|
}) |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
query |
|
|
|
|
|> subquery() |
|
|
|
|
|> where_address_match(prepared_filter) |
|
|
|
|
|> where_topic_match(prepared_filter) |
|
|
|
|
|> order_by([l], l.block_number) |
|
|
|
|
|> limit(1_000) |
|
|
|
|
|> Repo.all() |
|
|
|
|
all_transaction_logs_query = |
|
|
|
|
from(transaction in Transaction, |
|
|
|
|
join: log in ^logs_query, |
|
|
|
|
on: log.transaction_hash == transaction.hash, |
|
|
|
|
where: transaction.block_number >= ^prepared_filter.from_block, |
|
|
|
|
where: transaction.block_number <= ^prepared_filter.to_block, |
|
|
|
|
where: transaction.to_address_hash == ^address_hash, |
|
|
|
|
or_where: transaction.from_address_hash == ^address_hash, |
|
|
|
|
or_where: transaction.created_contract_address_hash == ^address_hash, |
|
|
|
|
select: |
|
|
|
|
merge(map(log, ^@log_fields), %{ |
|
|
|
|
gas_price: transaction.gas_price, |
|
|
|
|
gas_used: transaction.gas_used, |
|
|
|
|
transaction_index: transaction.index, |
|
|
|
|
block_number: transaction.block_number |
|
|
|
|
}), |
|
|
|
|
union: ^internal_transaction_log_query |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
query_with_blocks = |
|
|
|
|
from(log_transaction_data in subquery(all_transaction_logs_query), |
|
|
|
|
join: block in Block, |
|
|
|
|
on: block.number == log_transaction_data.block_number, |
|
|
|
|
on: block.consensus == true, |
|
|
|
|
where: log_transaction_data.address_hash == ^address_hash, |
|
|
|
|
order_by: block.number, |
|
|
|
|
limit: 1000, |
|
|
|
|
select_merge: %{ |
|
|
|
|
block_timestamp: block.timestamp |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
Repo.all(query_with_blocks) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
# Since address_hash was not present, we know that a |
|
|
|
|
# topic filter has been applied, and th |
|
|
|
|
def list_logs(filter) do |
|
|
|
|
prepared_filter = Map.merge(@base_filter, filter) |
|
|
|
|
|
|
|
|
|
logs_query = where_topic_match(Log, prepared_filter) |
|
|
|
|
|
|
|
|
|
block_transaction_query = |
|
|
|
|
from(transaction in Transaction, |
|
|
|
|
join: block in assoc(transaction, :block), |
|
|
|
|
on: block.number >= ^prepared_filter.from_block, |
|
|
|
|
on: block.number <= ^prepared_filter.to_block, |
|
|
|
|
on: block.consensus == true, |
|
|
|
|
select: %{ |
|
|
|
|
transaction_hash: transaction.hash, |
|
|
|
|
gas_price: transaction.gas_price, |
|
|
|
|
gas_used: transaction.gas_used, |
|
|
|
|
transaction_index: transaction.index, |
|
|
|
|
block_number: block.number, |
|
|
|
|
block_timestamp: block.timestamp |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
query_with_block_transaction_data = |
|
|
|
|
from(log in logs_query, |
|
|
|
|
join: block_transaction_data in subquery(block_transaction_query), |
|
|
|
|
on: block_transaction_data.transaction_hash == log.transaction_hash, |
|
|
|
|
order_by: block_transaction_data.block_number, |
|
|
|
|
limit: 1000, |
|
|
|
|
select: block_transaction_data, |
|
|
|
|
select_merge: map(log, ^@log_fields) |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
Repo.all(query_with_block_transaction_data) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
@topics [ |
|
|
|
@ -112,12 +178,6 @@ defmodule Explorer.Etherscan.Logs do |
|
|
|
|
topic2_3_opr: {:third_topic, :fourth_topic} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
defp where_address_match(query, %{address_hash: address_hash}) when not is_nil(address_hash) do |
|
|
|
|
where(query, [l], l.address_hash == ^address_hash) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
defp where_address_match(query, _), do: query |
|
|
|
|
|
|
|
|
|
defp where_topic_match(query, filter) do |
|
|
|
|
case Enum.filter(@topics, &filter[&1]) do |
|
|
|
|
[] -> |
|
|
|
|