mirror of
https://github.com/FlipsideCrypto/external-models.git
synced 2026-02-06 11:41:50 +00:00
Some checks failed
docs_update / docs_update (push) Has been cancelled
docs_update / notify-failure (push) Has been cancelled
dbt_run_scheduled_weekly / run_dbt_jobs (push) Has been cancelled
dbt_run_scheduled_weekly / notify-failure (push) Has been cancelled
dbt_run_streamline_daily / run_dbt_jobs (push) Has been cancelled
dbt_run_dev_refresh / run_dbt_jobs_refresh (push) Has been cancelled
dbt_run_scheduled_daily / run_dbt_jobs (push) Has been cancelled
dbt_test / run_dbt_jobs (push) Has been cancelled
dbt_run_daily_aptos_gas / run_dbt_jobs (push) Has been cancelled
dbt_run_streamline_daily / notify-failure (push) Has been cancelled
dbt_run_dev_refresh / run_dbt_jobs_udfs (push) Has been cancelled
dbt_run_dev_refresh / notify-failure (push) Has been cancelled
dbt_run_scheduled_daily / notify-failure (push) Has been cancelled
dbt_test / notify-failure (push) Has been cancelled
dbt_run_daily_aptos_gas / notify-failure (push) Has been cancelled
dbt_run_scheduled_bi_hourly / run_dbt_jobs (push) Has been cancelled
dbt_run_scheduled_bi_hourly / notify-failure (push) Has been cancelled
dbt_run_defillama_history / run_dbt_jobs (push) Has been cancelled
dbt_run_defillama_history / notify-failure (push) Has been cancelled
37 lines
1014 B
YAML
37 lines
1014 B
YAML
version: 2
|
|
|
|
models:
|
|
- name: silver_aptos__lync
|
|
description: "Lyncwold paymaster data"
|
|
columns:
|
|
- name: metric
|
|
description: "The metric name"
|
|
tests:
|
|
- not_null
|
|
|
|
- name: metric_date
|
|
description: "The date of the metric measurement"
|
|
# tests:
|
|
# - not_null
|
|
# - dbt_expectations.expect_row_values_to_have_recent_data:
|
|
# datepart: day
|
|
# interval: 3
|
|
|
|
- name: metric_count
|
|
description: "Reported metric count"
|
|
tests:
|
|
- not_null:
|
|
where: metric <> 'Total Gas Consumed'
|
|
|
|
- name: metric_amount
|
|
description: "Reported metric amount"
|
|
tests:
|
|
- not_null:
|
|
where: metric = 'Total Gas Consumed'
|
|
|
|
- name: metric_amount_in_usd
|
|
description: "Reported metric amount in USD"
|
|
tests:
|
|
- not_null:
|
|
where: metric = 'Total Gas Consumed'
|
|
|