update tags/docs (#321)

This commit is contained in:
tarikceric 2023-08-02 17:56:35 +02:00 committed by GitHub
parent 800aef5654
commit b72bd178d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 42 additions and 12 deletions

View File

@ -42,11 +42,17 @@ There is more information on how to use dbt docs in the last section of this doc
- [fact_transactions](#!/model/model.solana_models.core__fact_transactions)
- [fact_transfers](#!/model/model.solana_models.core__fact_transfers)
- [fact_votes_agg_block](#!/model/model.solana_models.core__fact_votes_agg_block)
- [fact_stake_accounts](#!/model/model.solana_models.core__fact_stake_accounts)
- [fact_vote_accounts](#!/model/model.solana_models.core__fact_vote_accounts)
- [fact_block_production](#!/model/model.solana_models.core__fact_block_production)
- [fact_validators](#!/model/model.solana_models.core__fact_validators)
- [fact_decoded_instructions](#!/model/model.solana_models.core__fact_decoded_instructions)
**Convenience Tables:**
- [ez_signers](#!/model/model.solana_models.core__ez_signers)
- [ez_staking_lp_actions](#!/model/model.solana_models.core__ez_staking_lp_actions)
- [ez_token_prices_hourly](#!/model/model.solana_models.core__ez_token_prices_hourly)
- [ez_events_decoded](#!/model/model.solana_models.core__ez_events_decoded)
## **Data Model Overview**

View File

@ -1,7 +1,13 @@
{{ config(
materialized='view'
)
}}
materialized = 'view',
meta={
'database_tags':{
'table': {
'PURPOSE': 'VALIDATOR'
}
}
}
) }}
SELECT
epoch,

View File

@ -1,7 +1,13 @@
{{ config(
materialized='view'
)
}}
materialized = 'view',
meta={
'database_tags':{
'table': {
'PURPOSE': 'VALIDATOR'
}
}
}
) }}
SELECT
epoch_recorded::INT as epoch,

View File

@ -1,7 +1,13 @@
{{ config(
materialized='view'
)
}}
materialized = 'view',
meta={
'database_tags':{
'table': {
'PURPOSE': 'VALIDATOR'
}
}
}
) }}
SELECT
epoch_recorded::INT as epoch,

View File

@ -1,7 +1,13 @@
{{ config(
materialized='view'
)
}}
materialized = 'view',
meta={
'database_tags':{
'table': {
'PURPOSE': 'VALIDATOR'
}
}
}
) }}
SELECT
epoch_recorded :: int as epoch,