mirror of
https://github.com/FlipsideCrypto/flow-models.git
synced 2026-02-06 11:47:00 +00:00
Some checks failed
docs_update / run_dbt_jobs (push) Has been cancelled
docs_update / notify-failure (push) Has been cancelled
dbt_run_streamline_decoded_logs_history / run_dbt_jobs (push) Has been cancelled
dbt_run_streamline_decoded_logs_history / notify-failure (push) Has been cancelled
dbt_run_streamline_evm_daily_silver / run_dbt_jobs (push) Has been cancelled
dbt_test_recent_evm / run_dbt_jobs (push) Has been cancelled
dbt_run_streamline_evm_daily_silver / notify-failure (push) Has been cancelled
dbt_test_recent_evm / notify-failure (push) Has been cancelled
dbt_run_scheduled_streamline_non_core / run_dbt_jobs (push) Has been cancelled
dbt_run_scheduled_scores / run_dbt_jobs (push) Has been cancelled
dbt_run_scheduled_daily / run_dbt_jobs (push) Has been cancelled
dbt_run_scheduled_streamline_non_core / notify-failure (push) Has been cancelled
dbt_run_scheduled_scores / notify-failure (push) Has been cancelled
dbt_run_scheduled_daily / notify-failure (push) Has been cancelled
dbt_test_scheduled / run_dbt_jobs (push) Has been cancelled
dbt_run_scheduled_non_core / run_dbt_jobs (push) Has been cancelled
dbt_run_scheduled_abis / run_dbt_jobs (push) Has been cancelled
dbt_run_evm / run_dbt_jobs (push) Has been cancelled
dbt_run_scheduled_non_core / notify-failure (push) Has been cancelled
dbt_run_scheduled_abis / notify-failure (push) Has been cancelled
dbt_run_evm / notify-failure (push) Has been cancelled
* added * swaps final * added * reorg files * reorg + rename --------- Co-authored-by: SAI <sairaj@flipsidecrypto.com> Co-authored-by: gregoriustanleyy <gstanleytejakusuma@gmail.com>
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
version: 2
|
|
|
|
models:
|
|
- name: silver__increment_deployed_pairs
|
|
description: |-
|
|
This table records newly deployed SwapPair contracts on the Flow blockchain, as detected from PairCreated events emitted by the SwapFactory contract.
|
|
|
|
columns:
|
|
- name: pairAddress
|
|
description: "The address of the newly created pair contract."
|
|
tests:
|
|
- not_null
|
|
|
|
- name: event_contract
|
|
description: "The fully qualified contract name for the SwapPair."
|
|
tests:
|
|
- not_null
|
|
|
|
- name: token0_contract
|
|
description: "The contract address/key for token0 in the pair."
|
|
tests:
|
|
- not_null
|
|
|
|
- name: token1_contract
|
|
description: "The contract address/key for token1 in the pair."
|
|
tests:
|
|
- not_null
|
|
|
|
- name: increment_deployed_pairs_id
|
|
description: "A surrogate key for the row, generated from event_contract."
|
|
tests:
|
|
- not_null
|
|
- unique
|
|
|
|
- name: inserted_timestamp
|
|
description: "The timestamp when the row was inserted."
|
|
tests:
|
|
- not_null
|
|
|
|
- name: modified_timestamp
|
|
description: "The timestamp when the row was last modified."
|
|
tests:
|
|
- not_null |