mirror of
https://github.com/FlipsideCrypto/aptos-models.git
synced 2026-02-06 14:06:44 +00:00
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
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:
commit
6829c84664
@ -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 (
|
||||
|
||||
@ -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'
|
||||
) }}
|
||||
|
||||
@ -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')),
|
||||
|
||||
@ -55,4 +55,5 @@ sources:
|
||||
- name: nft_sales_seashrine
|
||||
- name: nft_sales_souffl3
|
||||
- name: nft_sales_topaz
|
||||
- name: nft_sales_bluemove_v2
|
||||
|
||||
Loading…
Reference in New Issue
Block a user