Skip to content

Commit

Permalink
updated sql file
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason4276 committed Jan 31, 2025
1 parent 0dd356c commit fc08200
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ WITH uniswap_v3_op_addresses AS (
(token0 = 0x4200000000000000000000000000000000000042
OR token1 = 0x4200000000000000000000000000000000000042)
{% if is_incremental() %}
AND {{ incremental_predicate('creation_block_time') }}
AND {{ incremental_predicate('creation_time') }}
{% endif %}
),

Expand All @@ -44,7 +44,7 @@ uniswap_v2_op_addresses AS (
(token0 = 0x4200000000000000000000000000000000000042
OR token1 = 0x4200000000000000000000000000000000000042)
{% if is_incremental() %}
AND {{ incremental_predicate('creation_block_time') }}
AND {{ incremental_predicate('creation_time') }}
{% endif %}
),

Expand All @@ -63,7 +63,7 @@ velodrome_v2_op_addresses AS (
(token0 = 0x4200000000000000000000000000000000000042
OR token1 = 0x4200000000000000000000000000000000000042)
{% if is_incremental() %}
AND {{ incremental_predicate('creation_block_time') }}
AND {{ incremental_predicate('creation_time') }}
{% endif %}
),

Expand All @@ -82,7 +82,7 @@ velodrome_v2_cl_op_addresses AS (
(token0 = 0x4200000000000000000000000000000000000042
OR token1 = 0x4200000000000000000000000000000000000042)
{% if is_incremental() %}
AND {{ incremental_predicate('creation_block_time') }}
AND {{ incremental_predicate('creation_time') }}
{% endif %}
),

Expand All @@ -101,7 +101,7 @@ velodrome_v1_op_addresses AS (
(token0 = 0x4200000000000000000000000000000000000042
OR token1 = 0x4200000000000000000000000000000000000042)
{% if is_incremental() %}
AND {{ incremental_predicate('creation_block_time') }}
AND {{ incremental_predicate('creation_time') }}
{% endif %}
),

Expand All @@ -120,7 +120,7 @@ solidly_v3_op_addresses AS (
(token0 = 0x4200000000000000000000000000000000000042
OR token1 = 0x4200000000000000000000000000000000000042)
{% if is_incremental() %}
AND {{ incremental_predicate('creation_block_time') }}
AND {{ incremental_predicate('creation_time') }}
{% endif %}
),

Expand All @@ -139,7 +139,7 @@ openxswap_v1_op_addresses AS (
(token0 = 0x4200000000000000000000000000000000000042
OR token1 = 0x4200000000000000000000000000000000000042)
{% if is_incremental() %}
AND {{ incremental_predicate('creation_block_time') }}
AND {{ incremental_predicate('creation_time') }}
{% endif %}
),

Expand Down

0 comments on commit fc08200

Please sign in to comment.