Skip to content

Commit

Permalink
fix lineage and remove date filters
Browse files Browse the repository at this point in the history
  • Loading branch information
0xBoxer committed Jan 28, 2025
1 parent e7b5eb6 commit 3032bad
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,4 @@
{% set topic0 = '0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822' %}

{{ evm_event_decoding_base(logs, abi, topic0) }}
where block_date > DATE '2024-06-01'
{% endmacro %}
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,5 @@ SELECT
, tx_to
, tx_index
FROM dexs
where CAST(date_trunc('day', block_time) AS date) > DATE '2024-06-01'

{% endmacro %}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@
{% set topic0 = '0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67' %}

{{ evm_event_decoding_base(logs, abi, topic0) }}
where block_date > DATE '2024-06-01'
{% endmacro %}

Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,4 @@ SELECT
, tx_to
, tx_index
FROM dexs
where CAST(date_trunc('day', block_time) AS date) > DATE '2024-06-01'

{% endmacro %}
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ with base_union as (
{% for model in models %}
SELECT
blockchain
, project
, project_status
, version
, factory_address
, dex_type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ FROM (
{% for base_model in base_models %}
SELECT
blockchain
, project
, project_status
, version
, dex_type
, factory_address
Expand Down

0 comments on commit 3032bad

Please sign in to comment.