Skip to content

Commit

Permalink
Rename index.md to index.mdx (#248)
Browse files Browse the repository at this point in the history
* Rename index.md to index.mdx

reverting back to .mdx extension (i tried .md so .mp4 would display but nextra expects .mdx file)

* Update wallet08.mdx

Update sentence
  • Loading branch information
johnnygreeney authored Nov 4, 2024
1 parent 3a30644 commit c27afff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/pages/use-cases/WalletQueries/wallet08.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The `SELECT ...` clause specifies the columns to be included in our results:
- `ltb.lifetime_blocks`... the total number of blocks minted by the pool (calculated in the subquery).
- `sa.view AS stake_account`...the stake address associated with the pool's rewards

The `FROM pool_hash ph` clause specifies that we are selecting data from the [pool_hash](/../../schema.md#pool_hash)table, aliased as `ph`. This table likely stores core pool identification information.
The `FROM pool_hash ph` clause specifies that we are selecting data from the [pool_hash](/../../schema.md#pool_hash)table, aliased as `ph`. This table stores core pool identification information.

`LEFT JOIN pool_offline_data po ON ...` performs a left `JOIN` with the [pool_offline_data](/../../schema.md#pool_offline_data) table. It matches rows based on `pool_id` and ensures that if multiple entries exist for the same pool, only the latest one is selected (using a subquery to find the maximum id).

Expand Down

0 comments on commit c27afff

Please sign in to comment.