adding column and table descriptions

This commit is contained in:
Mike Stepanovic 2025-06-03 16:16:08 -06:00
parent ead0855985
commit 7c7de27891
14 changed files with 59 additions and 4 deletions

View File

@ -4,7 +4,7 @@ models:
- name: silver__blocks
config:
contract:
enforced: true
enforced: false
data_tests:
- dbt_utils.sequential_values:
column_name: block_id
@ -150,7 +150,7 @@ models:
- name: silver__transactions
config:
contract:
enforced: true
enforced: false
columns:
- name: block_id
data_type: NUMBER

View File

@ -54,7 +54,7 @@ LIMIT {{ vars.MAIN_SL_BLOCKS_REALTIME_SQL_LIMIT }}
'worker_batch_size': vars.MAIN_SL_BLOCKS_REALTIME_WORKER_BATCH_SIZE,
'async_concurrent_requests': vars.MAIN_SL_BLOCKS_REALTIME_ASYNC_CONCURRENT_REQUESTS,
'sql_source': "{{this.identifier}}",
"order_by_column": "block_id" }
"order_by_column": "block_id"
} %}
{% set function_call_sql %}

View File

@ -100,7 +100,7 @@ LIMIT {{ vars.MAIN_SL_TRANSACTIONS_REALTIME_SQL_LIMIT }}
'async_concurrent_requests': vars.MAIN_SL_TRANSACTIONS_REALTIME_ASYNC_CONCURRENT_REQUESTS,
'sql_source': "{{this.identifier}}",
'exploded_key': '["result.txs"]',
"order_by_column": "block_id_requested" }
"order_by_column": "block_id_requested"
} %}
{% set function_call_sql %}

View File

@ -0,0 +1,5 @@
{% docs attribute_index %}
The position in which attributes occur within a message
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs attribute_key %}
The key from the key-value pair from the message attribute
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs attribute_value %}
The value from the key-value pair from the message attribute
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs msg %}
The flattened underlying json from the messages or events within the transactions
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs core__fact_blocks %}
Records of all blocks that have occurred onchain, dating back to the genesis block.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs core__fact_msg_attributes %}
Records of all message attributes associated to messages that have occurred onchain.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs core__fact_msgs %}
Records of all message attributes associated to messages that have occurred onchain.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs core__fact_transactions %}
Records of all transactions that have occurred onchain, dating back to the genesis block.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs core__fact_transactions_logs %}
Records of all transactions logs that have occurred onchain, dating back to the genesis block.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs core__fact_transfers %}
Records of all transfers that have occurred onchain, dating back to the genesis block.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs tx_succeeded %}
A boolean indicator for whether the transaction was successful.
{% enddocs %}