mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 11:47:03 +00:00
47 lines
1.6 KiB
YAML
47 lines
1.6 KiB
YAML
version: 2
|
|
models:
|
|
- name: defi__fact_liquidity_provider_actions
|
|
description: Includes all actions entering and exiting liquidity pools.
|
|
columns:
|
|
- name: BLOCK_ID
|
|
description: "{{ doc('block_id') }}"
|
|
tests:
|
|
- dbt_expectations.expect_column_to_exist
|
|
- name: BLOCK_TIMESTAMP
|
|
description: "{{ doc('block_timestamp') }}"
|
|
tests:
|
|
- dbt_expectations.expect_column_to_exist
|
|
- name: TX_ID
|
|
description: "{{ doc('tx_id') }}"
|
|
tests:
|
|
- dbt_expectations.expect_column_to_exist
|
|
- name: TX_SUCCEEDED
|
|
description: "{{ doc('tx_succeeded') }}"
|
|
tests:
|
|
- dbt_expectations.expect_column_to_exist
|
|
- name: LIQUIDITY_PROVIDER_ADDRESS
|
|
description: "{{ doc('liquidity_provider_address') }}"
|
|
tests:
|
|
- dbt_expectations.expect_column_to_exist
|
|
- name: ACTION
|
|
description: "{{ doc('action') }}"
|
|
tests:
|
|
- dbt_expectations.expect_column_to_exist
|
|
- name: POOL_ID
|
|
description: "{{ doc('pool_id') }}"
|
|
tests:
|
|
- dbt_expectations.expect_column_to_exist
|
|
- name: AMOUNT
|
|
description: "{{ doc('amount') }}"
|
|
tests:
|
|
- dbt_expectations.expect_column_to_exist
|
|
- name: CURRENCY
|
|
description: "{{ doc('currency') }}"
|
|
tests:
|
|
- dbt_expectations.expect_column_to_exist
|
|
- name: DECIMAL
|
|
description: "{{ doc('decimal') }}"
|
|
- name: MSG_GROUP
|
|
description: "{{ doc('msg_group') }}"
|
|
tests:
|
|
- dbt_expectations.expect_column_to_exist |