Skip to content

Commit

Permalink
Merge pull request #287 from FlipsideCrypto/upd-models
Browse files Browse the repository at this point in the history
add _partition col and manual fix logic to transfers models
  • Loading branch information
forgxyz authored Apr 30, 2024
2 parents 74660ed + 299ed0a commit 4e48007
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 27 deletions.
19 changes: 14 additions & 5 deletions models/silver/curated/nft/silver__nft_transfers.sql
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,16 @@ WITH actions_events AS (
receiver_id,
logs,
_inserted_timestamp,
modified_timestamp as _modified_timestamp
modified_timestamp as _modified_timestamp,
_partition_by_block_number
FROM
{{ ref('silver__actions_events_function_call_s3') }}
WHERE
receipt_succeeded = TRUE
AND logs [0] IS NOT NULL
{% if var("MANUAL_FIX") %}
AND {{ partition_load_manual('no_buffer') }}
{% else %}
{% if is_incremental() %}
AND modified_timestamp >= (
SELECT
Expand All @@ -32,6 +36,7 @@ WITH actions_events AS (
{{ this }}
)
{% endif %}
{% endif %}
),

-------------------------------- NFT Transfers --------------------------------
Expand All @@ -46,7 +51,8 @@ nft_logs AS (
receiver_id AS contract_id,
b.index as logs_rn,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
actions_events
JOIN LATERAL FLATTEN(
Expand Down Expand Up @@ -78,7 +84,8 @@ nft_transfers AS (
token_ids [0] :: STRING AS token_id,
logs_rn + A.index as transfer_rn,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
nft_logs
JOIN LATERAL FLATTEN(
Expand All @@ -100,7 +107,8 @@ nft_final AS (
B.value :: STRING AS token_id,
transfer_rn + B.index as rn,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
nft_transfers
JOIN LATERAL FLATTEN(
Expand All @@ -119,7 +127,8 @@ FINAL AS (
to_address,
token_id,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
nft_final
)
Expand Down
69 changes: 47 additions & 22 deletions models/silver/curated/silver__token_transfers.sql
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,16 @@ WITH actions_events AS (
logs,
receipt_succeeded,
_inserted_timestamp,
modified_timestamp as _modified_timestamp
modified_timestamp as _modified_timestamp,
_partition_by_block_number
FROM
{{ ref('silver__actions_events_function_call_s3') }}
WHERE
receipt_succeeded = TRUE
AND logs [0] IS NOT NULL
{% if var("MANUAL_FIX") %}
AND {{ partition_load_manual('no_buffer') }}
{% else %}
{% if is_incremental() %}
AND _modified_timestamp >= (
SELECT
Expand All @@ -38,6 +42,7 @@ WITH actions_events AS (
{{ this }}
)
{% endif %}
{% endif %}
),
swaps_raw AS (
SELECT
Expand All @@ -53,18 +58,23 @@ swaps_raw AS (
amount_in_raw,
amount_out_raw,
_inserted_timestamp,
modified_timestamp AS _modified_timestamp
modified_timestamp AS _modified_timestamp,
_partition_by_block_number
FROM
{{ ref('silver__dex_swaps_v2') }}
{% if is_incremental() %}
WHERE
_modified_timestamp >= (
SELECT
MAX(modified_timestamp)
FROM
{{ this }}
)
{% endif %}
{% if var("MANUAL_FIX") %}
AND {{ partition_load_manual('no_buffer') }}
{% else %}
{% if is_incremental() %}
WHERE
_modified_timestamp >= (
SELECT
MAX(modified_timestamp)
FROM
{{ this }}
)
{% endif %}
{% endif %}
),
---------------------------- Native Token Transfers ------------------------------
native_transfers AS (
Expand All @@ -80,11 +90,15 @@ native_transfers AS (
--numeric validation (there are some exceptions that needs to be ignored)
receipt_succeeded,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
{{ ref('silver__transfers_s3') }}
WHERE
status = TRUE AND deposit != 0
{% if var("MANUAL_FIX") %}
AND {{ partition_load_manual('no_buffer') }}
{% else %}
{% if is_incremental() %}
AND inserted_timestamp >= (
SELECT
Expand All @@ -93,6 +107,7 @@ native_transfers AS (
{{ this }}
)
{% endif %}
{% endif %}
),
------------------------------ NEAR Tokens (NEP 141) --------------------------------
swaps AS (
Expand All @@ -108,7 +123,8 @@ swaps AS (
'swap' AS memo,
swap_index as rn,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
swaps_raw
UNION ALL
Expand All @@ -124,7 +140,8 @@ swaps AS (
'swap' AS memo,
swap_index + 1 as rn,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
swaps_raw
),
Expand All @@ -139,7 +156,8 @@ orders AS (
DATA :event :: STRING AS event,
g.index as rn,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
actions_events
JOIN LATERAL FLATTEN(
Expand All @@ -163,7 +181,8 @@ orders_final AS (
'order' AS memo,
f.index as rn,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
orders
JOIN LATERAL FLATTEN(
Expand Down Expand Up @@ -199,7 +218,8 @@ add_liquidity AS (
'add_liquidity' AS memo,
index as rn,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
actions_events,
LATERAL FLATTEN (
Expand All @@ -224,7 +244,8 @@ ft_transfers_mints AS (
b.index as logs_rn,
receiver_id AS contract_address,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
actions_events
JOIN LATERAL FLATTEN(
Expand Down Expand Up @@ -255,7 +276,8 @@ ft_transfers_mints_final AS (
f.value :memo :: STRING AS memo,
logs_rn + f.index as rn,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
ft_transfers_mints
JOIN LATERAL FLATTEN(
Expand Down Expand Up @@ -302,7 +324,8 @@ native_final AS (
amount_unadjusted :: STRING AS amount_raw,
amount_unadjusted :: FLOAT AS amount_raw_precise,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
native_transfers
),
Expand All @@ -322,7 +345,8 @@ nep_final AS (
amount_unadjusted :: STRING AS amount_raw,
amount_unadjusted :: FLOAT AS amount_raw_precise,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
nep_transfers
),
Expand Down Expand Up @@ -354,7 +378,8 @@ FINAL AS (
amount_raw_precise,
transfer_type,
_inserted_timestamp,
_modified_timestamp
_modified_timestamp,
_partition_by_block_number
FROM
transfer_union

Expand Down

0 comments on commit 4e48007

Please sign in to comment.