mirror of
https://github.com/FlipsideCrypto/ethereum-models.git
synced 2026-02-06 21:01:57 +00:00
* new columns ymls and docs * new column in silver logs * core model updates * find and replace updates for core tables downstream * decoded traces updates * nft model updates * misc updates * mis updates * misc updates for defi * misc nft updates * misc nft updates * docs * updates for identifier * deprecation docs * docs * native transfers table * SO on native transfers * core column changes and docs * add new nft columns * formatting * merge2 * type * gold updates * full_decoded_data edits * token transfers notice * misc timestamp and id updates * identifier * decoded log * tx status * misc updates * misc refs * typo * misc updates for timestamps * misc updates * misc * nft updates and ez_token_transfers * missing_decoding macro * removed trace address column from silver native transfers * incremental logic on ez decoded tables, tx_status on bridge tables, updated docs * flagged contract metadata for deprecation and fixed typo * incremental predicates --------- Co-authored-by: sam <sam@flipsidecrypto.com>
51 lines
1.3 KiB
SQL
51 lines
1.3 KiB
SQL
{% test missing_decoded_logs(model) %}
|
|
SELECT
|
|
l.block_number,
|
|
CONCAT(
|
|
l.tx_hash,
|
|
'-',
|
|
l.event_index
|
|
) AS _log_id
|
|
FROM
|
|
{{ ref('core__fact_event_logs') }}
|
|
l
|
|
LEFT JOIN {{ model }}
|
|
d
|
|
ON l.block_number = d.block_number
|
|
AND CONCAT(
|
|
l.tx_hash,
|
|
'-',
|
|
l.event_index
|
|
) = d._log_id
|
|
WHERE
|
|
l.contract_address = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' -- WETH
|
|
AND l.topics [0] :: STRING = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef' -- Transfer
|
|
AND l.block_timestamp BETWEEN DATEADD('hour', -48, SYSDATE())
|
|
AND DATEADD('hour', -6, SYSDATE())
|
|
AND d._log_id IS NULL
|
|
{% endtest %}
|
|
|
|
{% test missing_decoded_traces(model) %}
|
|
SELECT
|
|
t.block_number,
|
|
t.tx_hash,
|
|
t.trace_index
|
|
FROM
|
|
{{ ref('core__fact_traces') }}
|
|
t
|
|
LEFT JOIN {{ model }}
|
|
d
|
|
ON t.block_number = d.block_number
|
|
AND t.tx_hash = d.tx_hash
|
|
AND t.trace_index = d.trace_index
|
|
WHERE
|
|
t.to_address = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' -- WETH
|
|
AND LEFT(
|
|
t.input,
|
|
10
|
|
) = '0xa9059cbb' -- transfer(address,uint256)
|
|
AND t.block_timestamp BETWEEN DATEADD('hour', -48, SYSDATE())
|
|
AND DATEADD('hour', -6, SYSDATE())
|
|
AND d.trace_index IS NULL
|
|
{% endtest %}
|