This commit is contained in:
Eric Laurello 2023-05-15 09:40:00 -04:00
parent ecb097508b
commit 8fa59e75d9
11 changed files with 52 additions and 2 deletions

View File

@ -49,7 +49,7 @@ INSERT INTO
(
SELECT
*,
NTILE (200) over(PARTITION BY getdate()
NTILE (500) over(PARTITION BY getdate()
ORDER BY
block_height) AS grp
FROM
@ -66,7 +66,7 @@ INSERT INTO
ORDER BY
1 DESC
LIMIT
2000
500
)
)
GROUP BY

View File

@ -0,0 +1,5 @@
{% docs amount %}
The amount that was used in the transaction message.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs block_id %}
The block height the block was recorded at.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs block_timestamp %}
The date and time at which the block began.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs currency %}
The currency that was used in the transaction message.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs msg_group %}
Value grouping different messages together to represent a single action. Format will include the numeric msg_group and msg_sub_group with a ":" seperator. The subgroup will always be 0 except for "Exec" actions. NULL group means messages are related to the header (overall transaction)
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs tx_caller_address %}
The wallet address of the individual who initiated the transaction.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs tx_id %}
A unique key that identifies a transaction. Called "TxHash" on block explorers.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs validator_address %}
The wallet address of the validator related to the staking action.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs delegator_address %}
The wallet address of the individual who owns the delegated asset.
{% enddocs %}

View File

@ -0,0 +1,5 @@
{% docs inserted_timestamp %}
The time the block was inserted into to the Flipside database.
{% enddocs %}