Merge pull request #76 from FlipsideCrypto/deprecate_bluemove_nft
Some checks failed
docs_update / docs_update (push) Has been cancelled
docs_update / notify-failure (push) Has been cancelled
dbt_test_monthly / run_dbt_jobs (push) Has been cancelled
dbt_test_monthly / notify-failure (push) Has been cancelled
dbt_test_daily / run_dbt_jobs (push) Has been cancelled
dbt_run_dev_refresh / run_dbt_jobs (push) Has been cancelled
dbt_test_daily / notify-failure (push) Has been cancelled

deprecate bluemove v2
This commit is contained in:
tarikceric 2025-10-24 11:21:21 -07:00 committed by GitHub
commit 6829c84664
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 40 additions and 2 deletions

View File

@ -4,7 +4,9 @@
incremental_strategy = 'merge',
cluster_by = ['block_timestamp::DATE','_inserted_timestamp::DATE'],
merge_exclude_columns = ["inserted_timestamp"],
tags = ['noncore']
full_refresh = false,
enabled = false,
) }}
WITH evnts AS (

View File

@ -0,0 +1,35 @@
{{ config(
materialized = 'view'
) }}
SELECT
block_timestamp,
block_number,
version,
tx_hash,
event_index,
event_type,
buyer_address,
seller_address,
nft_address,
token_version,
platform_address,
project_name,
tokenid,
platform_name,
platform_exchange_version,
total_price_raw,
platform_fee_raw,
creator_fee_raw,
total_fees_raw,
nft_sales_bluemove_v2_id,
inserted_timestamp,
modified_timestamp,
_inserted_timestamp,
_invocation_id
FROM
{{ source(
'aptos_silver',
'nft_sales_bluemove_v2'
) }}

View File

@ -5,7 +5,7 @@
{% set models = [
('a',ref('silver__nft_sales_bluemove_view')),
('a',ref('silver__nft_sales_bluemove_v2')),
('a',ref('silver__nft_sales_bluemove_v2_view')),
('a',ref('silver__nft_sales_mercato')),
('a',ref('silver__nft_sales_okx_view')),
('a',ref('silver__nft_sales_seashrine_view')),

View File

@ -55,4 +55,5 @@ sources:
- name: nft_sales_seashrine
- name: nft_sales_souffl3
- name: nft_sales_topaz
- name: nft_sales_bluemove_v2