PKs to core

This commit is contained in:
WHYTEWYLL 2023-11-09 12:45:45 -03:00
parent bb22483444
commit aba26dfe96
6 changed files with 11 additions and 2 deletions

View File

@ -7,6 +7,7 @@
WITH trailing AS (
SELECT
id,
day,
txns,
inserted_timestamp,

View File

@ -6,6 +6,9 @@ models:
Summary of NFT transactions from the 'silver__atlas_nft_transactions' table. It provides a daily count of transactions, accounting for a 29-day lookback period for each day within the specified date range.
columns:
- name: id
description: "{{ doc('id')}}"
- name: day
description: "{{ doc('date')}}"

View File

@ -7,6 +7,7 @@
WITH nft_detailed AS (
SELECT
id,
day,
receiver_id,
tokens,

View File

@ -6,8 +6,8 @@ models:
Oveeview of NFT transactions in NEAR.
columns:
- name: action_id
description: "A unique identifier for the action, constructed as a concatenation of the day and receiver_id."
- name: id
description: "{{ doc('id')}}"
- name: day
description: "{{ doc('date')}}"

View File

@ -7,6 +7,7 @@
WITH nft_data AS (
SELECT
id,
receiver_id,
tokens,
transfers_24h,

View File

@ -6,6 +6,9 @@ models:
NFT transaction activities by receiver_id. It includes counts of unique tokens, transfers within the last 24 hours and 3 days, all transfers, unique owners, total transactions, and minting events.
columns:
- name: id
description: "{ { doc('id')}}"
- name: receiver_id
description: "{ { doc('receiver_id')}}"