> ## Documentation Index
> Fetch the complete documentation index at: https://tokenterminal.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# polkadotpeople

> Tables in tt-blockchain.polkadotpeople

## Tables

### blocks

Block header data containing sequential numbering, cryptographic hashes linking to parent blocks, timestamps, and consensus metadata. Primary source for blockchain state verification and chain navigation.

<Accordion title="Columns">
  | Column             | Type        | Description                                                                                                                                                                      |
  | ------------------ | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `relay_chain`      | `STRING`    | Identifier of the relay chain to which the parachain is connected. Lowercase string (e.g., 'polkadot', 'kusama').                                                                |
  | `chain`            | `STRING`    | Blockchain network identifier. Lowercase string indicating the specific chain (e.g., 'acala', 'polkadot', 'kusama').                                                             |
  | `timestamp`        | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone.                                                                                                                             |
  | `number`           | `INT64`     | Sequential block number indicating the position of the block in the blockchain. Increments by 1 for each new block in the chain.                                                 |
  | `block_hash`       | `STRING`    | Unique identifier for the block. 66-character hex string including 0x prefix.                                                                                                    |
  | `parent_hash`      | `STRING`    | Hash of the parent block in the blockchain. 66-character hex string including 0x prefix.                                                                                         |
  | `state_root`       | `STRING`    | Merkle root hash representing the complete state of the blockchain after block execution. 66-character hex string including 0x prefix.                                           |
  | `extrinsics_root`  | `STRING`    | Merkle root hash of all extrinsics included in the block. 66-character hex string including 0x prefix.                                                                           |
  | `author_id`        | `STRING`    | Identifier of the validator or collator who authored the block. Base58-encoded string representing the block producer's public key.                                              |
  | `finalized`        | `BOOL`      | Boolean indicator of whether the block has been finalized by the network consensus mechanism. True indicates the block has achieved finality and is immutable in the blockchain. |
  | `block_date`       | `TIMESTAMP` | Date when the block was produced. Derived from block timestamp, truncated to day precision.                                                                                      |
  | `extrinsics_count` | `INT64`     | Number of extrinsics included in the block. Integer value representing the total count of transactions and other state-changing operations.                                      |
</Accordion>

<Accordion title="Sample Data">
  | chain          | number | author\_id                                      | finalized | timestamp                | block\_date | block\_hash                                                        | state\_root                                                        | parent\_hash                                                       | relay\_chain | extrinsics\_root                                                   | extrinsics\_count |
  | -------------- | ------ | ----------------------------------------------- | --------- | ------------------------ | ----------- | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------ | ------------------------------------------------------------------ | ----------------- |
  | polkadotpeople | 499091 | 16WWmr2Xqgy5fna35GsNHXMU7vDBM12gzHCFGibQjSmKpAN | true      | 2024-09-28T02:22:48.000Z |             | 0x008ae46ca38930cc83f84fd4a4a677abd9cf133ca7f1e39c039f9dbfdbcb508a | 0x3ab3b3fc8eaddfbf5d406ac3e8a11e4aecb6d5a770e3eae8ee8f1008e87a7015 | 0x315354c3f72385883272a7df3f4081cc9d33caca94c976c2db5aaf79c0f90528 | polkadot     | 0xe6b8b794b32584c47e561a314ce823102cd129f285af8c92737556eecf7f1617 | 2                 |
  | polkadotpeople | 499713 | 16WWmr2Xqgy5fna35GsNHXMU7vDBM12gzHCFGibQjSmKpAN | true      | 2024-09-28T04:37:12.000Z |             | 0x12c0af8b96b77b1f3b2c2b99774106581e701e88fb99bd93350a9b4d2627afd7 | 0xe5ba982f5835c4bf18a5697eaaa25861404edd65ec35f0c497776f575e7e483f | 0xe96fc839d8a3e22715b3f7cc76cfe134a25915b0ed899527544114d8df422c32 | polkadot     | 0x1f50d95a799e8801e639dc361082889e9409c9633df5b993cd4365330eebdca6 | 2                 |
  | polkadotpeople | 498936 | 16WWmr2Xqgy5fna35GsNHXMU7vDBM12gzHCFGibQjSmKpAN | true      | 2024-09-28T01:49:12.000Z |             | 0x341ad40c5c1a6e7a3a1c19b9e0a04a7bca7b301c84b339a7198427aac50f9e59 | 0x3e820872d21144dc004605757714c9af7e478072f8f0ccbae1df6b8f6864e3e6 | 0x25dd488dd2274ff1c9b0aa14c81b63628b4cfbef9e23159adcd42e9de76688bd | polkadot     | 0x314524a913153d7bf9d9fbd73dd4a4d88b9e3793e3f2dfbf6141107a5c0cbd18 | 2                 |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-blockchain.polkadotpeople.blocks`
  WHERE timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### events

Blockchain state change notifications emitted by runtime modules during transaction execution and block processing. Contains event metadata (pallet, method, index), encoded parameters, block context, and optional extrinsic linkage for analyzing on-chain activity across Substrate-based chains.

<Accordion title="Columns">
  | Column            | Type          | Description                                                                                                                                                                                                                                                        |
  | ----------------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `relay_chain`     | `STRING`      | Identifier of the relay chain to which the parachain is connected. Lowercase string (e.g., 'polkadot', 'kusama').                                                                                                                                                  |
  | `chain`           | `STRING`      | Blockchain network identifier. Lowercase string indicating the specific chain (e.g., 'acala', 'polkadot', 'kusama').                                                                                                                                               |
  | `block_number`    | `INT64`       | Sequential number of the block in the blockchain. Starts at 0 for the genesis block and increments by 1 for each subsequent block.                                                                                                                                 |
  | `block_timestamp` | `TIMESTAMP`   | Timestamp when the block was produced. UTC timezone, microsecond precision.                                                                                                                                                                                        |
  | `block_hash`      | `STRING`      | Unique identifier for the block. 66-character hex string including 0x prefix.                                                                                                                                                                                      |
  | `pallet`          | `STRING`      | Name of the substrate runtime module containing the operation being executed. Identifies the pallet (functional module) such as balances, staking, or governance.                                                                                                  |
  | `method`          | `STRING`      | Name of the operation or function being executed. Identifies the specific action within a pallet or module, such as transfer, stake, or swap.                                                                                                                      |
  | `id`              | `STRING`      | Unique identifier for the record. String format, specific structure varies by table and blockchain implementation.                                                                                                                                                 |
  | `extrinsic_hash`  | `STRING`      | Unique identifier for the extrinsic. 66-character hex string including 0x prefix.                                                                                                                                                                                  |
  | `extrinsic_id`    | `STRING`      | Composite identifier linking an event or extrinsic to its block and position within that block. Format is `\{block_number\}-\{index\}` where index represents the sequential position of the extrinsic within the block, starting from 0.                          |
  | `success`         | `BOOL`        | Boolean indicator of whether the operation completed successfully without errors.                                                                                                                                                                                  |
  | `event_method`    | `STRING`      | Name of the event triggered by the blockchain operation. Identifies the specific state change or notification emitted by a pallet, such as Transfer, Deposit, or NewSession.                                                                                       |
  | `event_pallet`    | `STRING`      | Name of the substrate runtime module that emitted the blockchain event. Identifies the pallet (functional module) responsible for the event, such as balances, session, or treasury.                                                                               |
  | `event_data`      | `ARRAY<JSON>` | Array of JSON-encoded parameters associated with the blockchain event. Contains ordered arguments specific to the event method being executed, such as account addresses, token amounts, transaction hashes, or state changes.                                     |
  | `event_index`     | `INT64`       | Sequential position of the event within its containing block. Zero-indexed integer indicating the order in which events occurred during block processing.                                                                                                          |
  | `event_type`      | `STRING`      | Processing phase within the blockchain's block lifecycle. Values include 'initialize' for events occurring during block initialization, 'finalize' for events during block finalization, and chain-specific event type identifiers for transaction-related events. |
</Accordion>

<Accordion title="Sample Data">
  | id | chain          | method | pallet | success | block\_hash                                                        | event\_data                                                                                                                                    | event\_type | event\_index | relay\_chain | block\_number | event\_method | event\_pallet | extrinsic\_id | extrinsic\_hash | block\_timestamp         |
  | -- | -------------- | ------ | ------ | ------- | ------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | ------------ | ------------ | ------------- | ------------- | ------------- | ------------- | --------------- | ------------------------ |
  |    | polkadotpeople |        |        |         | 0x01ead31d78e54464a87ae3532aecf0c8425cac8ca3a3bb531b310327eca799ad | \[""118""]                                                                                                                                     | initialize  | 0            | polkadot     | 212400        | NewSession    | session       |               |                 | 2024-08-17T14:56:00.000Z |
  |    | polkadotpeople |        |        |         | 0x6be1818f75cd915d3fdd90f0787bc48b2e8250db8945d13e3851778de4c40fd2 | \[""0x8cd06e577885dbe99e6c14d5f038455682a0cec9caeea69bd0e37f7b57addab9"","\{"parent":null}","\{"proofSize":"0","refTime":"160150000"}","true"] | initialize  | 4            | polkadot     | 208162        | Processed     | messageQueue  |               |                 | 2024-08-17T00:35:42.000Z |
  |    | polkadotpeople |        |        |         | 0x6be1818f75cd915d3fdd90f0787bc48b2e8250db8945d13e3851778de4c40fd2 | \[""167xwLzY4z3uNBMQSdDJmPnLgPKBY1SRsvQXbyaeHcnwd4um"",""49998712766""]                                                                        | initialize  | 2            | polkadot     | 208162        | Minted        | balances      |               |                 | 2024-08-17T00:35:42.000Z |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-blockchain.polkadotpeople.events`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***

### extrinsics

Substrate blockchain operations submitted to blocks, containing pallet module calls with method parameters, signatures, and execution metadata. Fundamental unit for tracking on-chain state transitions and user interactions across Substrate-based networks.

<Accordion title="Columns">
  | Column            | Type        | Description                                                                                                                                                       |
  | ----------------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `relay_chain`     | `STRING`    | Identifier of the relay chain to which the parachain is connected. Lowercase string (e.g., 'polkadot', 'kusama').                                                 |
  | `chain`           | `STRING`    | Blockchain network identifier. Lowercase string indicating the specific chain (e.g., 'acala', 'polkadot', 'kusama').                                              |
  | `block_number`    | `INT64`     | Sequential number of the block in the blockchain. Starts at 0 for the genesis block and increments by 1 for each subsequent block.                                |
  | `block_timestamp` | `TIMESTAMP` | Timestamp when the block was produced. UTC timezone, microsecond precision.                                                                                       |
  | `block_hash`      | `STRING`    | Unique identifier for the block. 66-character hex string including 0x prefix.                                                                                     |
  | `pallet`          | `STRING`    | Name of the substrate runtime module containing the operation being executed. Identifies the pallet (functional module) such as balances, staking, or governance. |
  | `method`          | `STRING`    | Name of the operation or function being executed. Identifies the specific action within a pallet or module, such as transfer, stake, or swap.                     |
  | `signature`       | `STRING`    | # Canonical Column Description: signature                                                                                                                         |

  Cryptographic signature authorizing the operation. Hex-encoded string format, typically 130-132 characters including 0x prefix for signed transactions and operations. |
  \| `id` | `STRING` | Unique identifier for the record. String format, specific structure varies by table and blockchain implementation. |
  \| `nonce` | `INT64` | Sequential counter for transactions or operations from an account. Increments by 1 for each new transaction to prevent replay attacks and ensure transaction ordering. |
  \| `args` | `JSON` | JSON object containing the operation's input parameters. Structure and fields vary by pallet and method, encoding the specific arguments required to execute the operation. |
  \| `tip` | `BIGNUMERIC` | Optional amount paid to the block producer to prioritize the extrinsic. Numeric value representing additional fee in the chain's native token denomination, above the standard transaction fee. |
  \| `extrinsic_hash` | `STRING` | Unique identifier for the extrinsic. 66-character hex string including 0x prefix. |
  \| `extrinsic_id` | `STRING` | Composite identifier linking an event or extrinsic to its block and position within that block. Format is `\{block_number\}-\{index\}` where index represents the sequential position of the extrinsic within the block, starting from 0. |
  \| `info` | `JSON` | JSON object containing metadata about the extrinsic's execution. Stores information such as weight consumed, fees paid, and dispatch result class for successful operations. |
  \| `immortal_era` | `NUMERIC` | Boolean indicator of whether the transaction has an immortal era. Value of 0 indicates an immortal transaction that never expires; null indicates a mortal transaction with a finite validity period. |
  \| `success` | `BOOL` | Boolean indicator of whether the operation completed successfully without errors. |
  \| `pays_fee` | `BOOL` | Boolean indicator of whether the extrinsic requires a transaction fee to be paid by the submitter. |
</Accordion>

<Accordion title="Sample Data">
  | id | tip | args                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   | info | chain          | nonce | method            | pallet          | success | pays\_fee | signature | block\_hash                                                        | relay\_chain | block\_number | extrinsic\_id | immortal\_era | extrinsic\_hash                                                    | block\_timestamp         |
  | -- | --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---- | -------------- | ----- | ----------------- | --------------- | ------- | --------- | --------- | ------------------------------------------------------------------ | ------------ | ------------- | ------------- | ------------- | ------------------------------------------------------------------ | ------------------------ |
  |    |     | \{"now":"1725235410000"}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | \{}  | polkadotpeople |       | set               | timestamp       | true    | false     |           | 0x2c942c0d652c65bea6a523519701bff7777c0599267904441e28d452685b34ab | polkadot     | 322223        | 322223-1      | 0             | 0xf6cbc912818e9462c0fa7be4eb9da652473296be87efde3c9b6e5c278368d92f | 2024-09-02T00:03:30.000Z |
  |    |     | \{"now":"1725235482000"}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | \{}  | polkadotpeople |       | set               | timestamp       | true    | false     |           | 0x37a64621d2f12d4a42566ea83b70b673da8443e12e090c796141658348220fdd | polkadot     | 322229        | 322229-1      | 0             | 0x5a8ad24cc34a69f9ee468d58f20b45ee7fc8954e9e1bd62ceb709d784e7a0afe | 2024-09-02T00:04:42.000Z |
  |    |     | \{"data":\{"downwardMessages":\[],"horizontalMessages":\{},"relayChainState":\{"trieNodes":\["0x0000300000500000aaaa020000001000fbff0000100000000a000000403800005802000003000000020000000000500000c800008000000000e8764817000000000000000000000000e87648170000000000000000000000e80300000090010080000000009001000c01002000000600c4090000000000000601983a000000000000403800000000000000000000f401000080b2e60e80c3c90180b2e60e000000000000000000000000050000000a0000000a0000000200000001050000000006000000580200000300000059000000000000001e00000006000000020000001400000002000000080306000000","0x01da6e4c2fc0a0e24dd41016e91bf4306034956561a2ee29e544a7b132b8e7ec3e","0x36fa6fcc550ffd86ec0300004587fee0f79f3198391b74aca1da4544bd8bceb23702cb066c0e1b18e217bfe3","0x3e77dfdb8adb10f78f10a5df8742c545decabdc937f9eb58792df482b760fddc6daccae89abd12cee600674bac7ac79f","0x3f0004b49d95320d9021994c850f25b8e38560afd46d9983cc5de53321ba187493f417d4c9e4f4b521b2c2bb31d44a8443a3","0x56fa6fcc550ffd86ec03000080604680411dc94d75d85c361f6beaa0e26e855faafe3c4a6545998d2771c88b56","0x5e414cb008e0e61e46722aa60abdd672802d5c214349f5fa60732f1d51ee3436d87bdb0d9468e787c904b1aa2634a2c0c6","0x5ee678799d3eff024253b90e84927cc680ba54ede46f868713e1b88d94841b3c28a8af84a3517285c44522a95d5b4edc7e","0x800014808a7373fb0d320a8b68bb228d2ddc7470a60423f92be0a932573f899e160780fd80756536a7d7d7381e186df6a25dabf56a213fcae176973b3b90b12894851f2440","0x8000c0787694c040f5e73d9b7addd6cb603d15d3b0021d9da3ceafbd080d00000401485e4993f016e2d2f8e5f43be7bb2594860400","0x800110809181b7afec61879dade803016d823ba58e6f9ca9ab4ef69ca5676af87aea416b800ebe650369ce0e3ce85b22816181f598cc6ecf7a3b22314357ab4181b9ccb867","0x80011080db82476e2711222b5c7374172f0ebb302186439a327d5e2393c9505a3a2d88f5805c9a575d2089cd6091bbec39046c4ce39515aac95697b28ec36f6c8892e58d8e","0x8002a480d6271a4c2a039dde0fa546dc399ed48e95a8fb69893042beeea184dd1d9f3b488084d7b1f67271dfb1c2c5b92012867b514f19537d8f96b8a743fcee0d4c55e9788071b31ee2d27647a0e218629ee88eb9deeef3e7948015ad60d332a8f8ec048ad1802a7d3aa0dad864966378f081f735077ad821fd7f202fb4ef4630d41d1b1c309e","0x80040480071f0c0e2250bc87bebbcd3c88e9705afdf2368a6abfa5e12b7c4756be306003800fe6b03639ff2739e42b263a64b97458bbb7b04a7f13a7dd10b77ba5c3d3940e","0x8004648084e6e5d2c7c852a5f280b35df6fd4c7f8e97f87017bfb626112fa40cb6e1366280c2524cf564684ed29cca6307485992198f15c21409a0981803a37344bbfbe6c180a00b1177b38eab2b6d74a4e4642548d6ab2410a2d82a766eeb264e42441a29de8018cb79bcc1ec0657666547a01145fa7ea916635080cf51618aa7c6181d673256","0x8008208065fe48beae227cd50dfb6eff3386c301db4fbb26a27a173459e93b1bf3e867af485ead6eef5c4b1c68eaa71ea17a02d9de0400","0x8008d7344607000020aaaa020000001000344603000020aaaa02000000100078810088003044000020aaaa0200000010003044000020aaaa02000000100078810088003044000020aaaa0200000010003044000020aaaa020000001000344603000020aaaa020000001000344607000020aaaa020000001000344607000020aaaa020000001000","0x801017806c6fa8bd7220dbed94a29525438d2c2e95ed5b458200028188813ad86122983980cd804759cc9acbee580f71cb798d88b152d025e839d4aab895a014ee515d2cec808e185a59b6fb6d539e448ea0da1785ddfbac15ad652cdf9035e950f29a4b62808096e221af260de43f33e172223bc935e60f091c34cf092437d2f95e78ef781e4280f38def4e87d76e8cc081c8c0036ebca706d83f15328baa865943bb6c288a792e","0x806100804506c199ee87abf55fc00d29d03d011feb0aa74ae427b45f13d528069056a6eb804b9e7c8fce27de36c27572b2cb1357bf2d597376b46809e17640542d5bdd0a3e808c214cd9133e1ad6e511d8a77c4cb8429a4afaea7f5b26ce83832b97fa79e07b","0x808200809e4842a20a67b3d647eaa5869d3481b7a88da1f92191fe212bdbaba03028af7480bc0fef9c46a01282fa05f10fc21d24982841691ff66b60c4472a3a660c975d2c","0x80820454562483a7cb568540f507000020000000000000000054567a93d174890f1ff20700002000000000000000005456fa6fcc550ffd86ec030000200000000000000000","0x808206807e814a46c208e2bee34ef622f1c02b3b1c37a965ed175d56ee8adad5fd26b1a3809ada67080255fc1ec2c1afd0dde8bed22b16a51421b1fe070b75e2689f4f75e780fe04f3bdef373a0b97c461f84abda1a684182d5b86e0768f067656c96902a50380065f7e0aa290bb6111a0fc3d84f21d33dafbdd1d0f1e9be5ec7557a5c9878267","0x8083868019cc42582abb9e1919725e031edb750e1153b012b925617d012e8fae7e4645e3800af6974e42a00e4d5893511c7d23ad2477bad124e27724e43dced832c057ad7b80e15d62efd1f56e0a7a10a126f6d1ba8eab8af2de9693aaee67c20ab274d053ea80a305cd68d951ba12e6ded66c3c08b9566cfd1ef0d653a5226d7502a09dab1e78802a474c943755713eabb5314dafafe262e34a37435459e7870fb1b7b80bef8a5c80908369500c673045877f88b59ff2488c08d7158f3a06d986a3cd1994b8b3c93f","0x80882580332c92c5c5dae382bb2399531bf4ea5eaa29088aa0413bbcc37f85a0bdefb6d9804192145190e1eceeaa03841737caddbb50225426bcc9362eb5a71a3ca91c7bce8093617f28e050965a14e7f7a625faf4a2fc1887d468374e9be51b794c0adfd8b7801910ad1a024a743ae7a6a9ae0372ec2160f7c645a7dee8c0c2bfe64de096211780d03a137efa8979b33767407cea43e871038cbeb9d25942d957a209cbbb33e67d","0x80c00080b204e3e42df477fb58cbfc87b1fb551fcf739727ff9a6505f8abf8e99d7cd56f807501e5f5f8fd3b8f630d0803bf31c5165489fc5535f61dadeeb0265a846e1d5c","0x80e089807d15ea5039b964b37b7d540bdcd7d21c1f704aaca136ea7a0d8a265e30426187804ddcf2a7867a6610d6089cf28f0383d409eb982e9b3ac0e4fd03a53da186aca68089d1c99d356d3069d36598b80da881826e20328d5538de3f56a45c43e544ec71808a429fc15639fa66e6e9f62d02d48ac35b85a15de7973af876d87115393fe885800e605f0b01752038d8233ee5e0fbb7fbd904fd48ea5a7af83710a9628e5becf9809646f1b73205a02b00d780ed5d58096a594dbf00c98ea10001c626147612f962","0x80ffff809b06714d4f8c94836da13a91634d0f04d0e469d50649a95b28ee1b743d653419808043d2018d9cf7b801760d53598079048cd864cc798a566ee371730388f5ddbd80040ca8f6c22737aa32256920150a46ea7d8512d66127d6db35422b292e37d14e80bf28980503f0f4bb3a07a2e374ec1a3b559829875747e7f1532c79d9648e4f8a80de9eddf4c061d5f3f23f76433c9e895ae6774700ddc35bb3321f8dde8e7c162380113b6696c7bb8a527a49f6b011ef38bcb235306389cf8a9bda0bd34c3e46ce97800ba7d3eb347948a3eca74d00bde7c772dde1ab5683a5370dd975739eca66d76180b96a2220ed453bc5cbdcd8e10cdc33b2cf312d4cb0ca1827695b9f75c096aa6d807571843f8ee97c2bfaf088111e4baaa50cb6022f6c492374c368072d58dd018580d3734887099d6b4de9622460bd220cfa6a78f7f7d4aa881c0d704d9561ee56e680705c50c62e06e05d92afd074e11b0f2a41fb2e6a530fd7cf720086dc5fa0d5d18024784f4c1b442d7723a492f29d488a5fb38e9cf4307b7e01b4211ba4f90d264f8079432f463bfec74021ccd6a99bfb5c3e9ffc69ff1812851ab4c4689c4e90a4bd8074f1b97ed04dadd5a64d91b561c7a2fc0cac646cc3eef5f63d094ffe96b6adb8803c22d2a57c8faab9f16d5719c288c1d89d8a2c91732219ef65e66dc0d8459440807ee63019cb4b4f8837005c808dd1843ee23a1d4f330184c06cd7b339b9541c16","0x9103f8269e639f456f7c858afb20b3c9741d7872ac6c39c35b01c7a3985e9eb5aeca46ab13004362c5d2bc4b33084bde40a9243a8f09d3c052608c6403472b90ddecb5d99fc7dc687d75572ff51c839c52bf4b9f10c7b2e0280fef7c5e1409a46cf5daa7aac00c06617572612033c0910800000000045250535290a101434f999430c5800562167e4db3c107bc59dcc2accf2206e935aeeff9264b42455405056175726101010021220ea4868d1625b46205a000ddcb9d56eca0a7b94d92799373a77de951221a2be1c2b9a54cc467db9b1901481b2d916a40e8648bf2310d8591bfc2b2ef86","0x9d007f03cfdce586301014700e2c2593d1c080aae04d860dccb9347ab4dd069523d44e4082c333ea8d9dc1041e2b06dec33259505f0e7b9012096b41c4eb3aaf947f6ea429080100685f0d9ef3b78afddab7f5c7142131132ad4200200000000000000585f02275f64c354954352b71eea39cfaca210020000004c5f0ec2d17a76153ff51817f12d9cfc3c7f04008037697e3b04c90d3835f568abd4237b003e468e22dc8190549d918ab6ac824d46","0x9d0da05ca59913bc38a8630590f2627c07dd804a4197b4c6d638057c1e6d68dc26d5880dda42554ee6fd8f7744ccb732f7530780b205df1fdb1b03a64e47ac457f4948fc6bcdda26fd117d8549f660e623a05fb6800f15a1603208d1b447ab8ec6ff95e6549e073fafaf148a8803bbb33e87a1909b80fb5e43de4b6fb1b213b0900d5b40bbe91d49915d1f73b2ac3183a78469d1db2280f2aaf8b884d2eb882969b56df70e5c4b00f6d148f7c53f220df0c57b591de2b3803466ddc76ceae89263792b6cfe15916793d2cb591fb837c899d3e520d054e4158076613edbf02f0c63b64dbbde3f02ddf6fd85e4d894d17f78f3503cd1d711f44980b627c263ce30f8165a70029297376a81214fa6d18ab6ee987776456b77be65d780eef6b862d9fb266b41ab5fed926d599bfd505de17052f9671241420d5562527b","0x9e710b30bd2eab0352ddcc26417aa1945fd380ea413d4e7404eecb71766f15a161373be1fa6921924b80d0556e9c8d23fb161e80540925be359961ccfa8f44fd63b8a74ebee4090670d854699f90d7790f84fe88802b3a9a2caf7094d8ad894f88b8043658b14ae6462bd9c6dd607d22006010b9848053c6f1554674f138426018f47f1ead6eaf4e0ab9f175be889de3a3402a3cf4a680b9aee043e378f8313e68a6030679ccf3880fa1e7ab19b6244b5c262b7a152f004c5f03c716fb8fff3de61a883bb76adb34a20400805b922b8498a5bab98825aeffa59ad1b807143652bbcd492beda5f6d2eeabb7838008a0c609ab4888f02c2545c002153297c2641c5a7b4f3d8e25c634e721f80bea80b6617c764df278313c426c46961ccde8ee7a03f9007b74bc8bc6c49d1583cf7d801e455360557e7f91e17214767148d61a3b340462ac46ffa8b8468fd241f1ed2480acaaea27b9e9e139591ddc8867b3eac4c50a53b9688ff9fd091be69c07751196","0x9eb6f36e027abb2091cfb5110ab5087ff96e685f06155b3cd9a8c9e5e9a23fd5dc13a5ed206980231100000000685f08316cbf8fa0da822a20ac1c55bf1be3208c24000000000000505f0e7b9012096b41c4eb3aaf947f6ea42908000080ad415d8b46351e59e3e810605e0cfd8f1fbf5ad73b139c3221c878939e4030c280ccd7eea271ab4ba95eed0fbf898a82fb654e2a3232ed1234bcaa4ab30e8e91ec8054c430e9370ef600751239a5acd354b4c246306a16cf9648638ef8592ce17af6800d49fef039517cc312c00412803ca1df50ac6d90c50541f649a9c85b83c0fdd880e692c8a2be197916ec7f50b68d4be8b9f7b4332b407d57ea4a62b817a473e41c80e1177e9bd2b8485d332588c5f994d0a0113e82e2d6c697d02f552281e0f1ca98808efe84cf726c01a6c3783a3fc34d2603f31210ebff95a04682d5081744bf997d685f090e2fbf2d792cb324bffa9427fe1f0e20a3065501fd0f5501","0x9ede3d8a54d27e44a9d5ce189618f22d3008505f0e7b9012096b41c4eb3aaf947f6ea429080b004c5f03b4123b2e186e07fb7bad5dda5f55c0040080e8b9d9fc82b1c6da95995e28c8d999a677bae801565a79a112b54b0f14fa1618","0x9ef78c98723ddc9073523ef3beefda0c1044808a9cf80eddeb042e65b58347ed30876bba354bcabfd0ac5e76935088bfdd2c7580cc64b0c8a058b11590084b3d5fe0608844fd84df0161f3aab0fb64a04d1c8119807fafbe480fd754f61a15df5768b1e8576d5c887a9921b2ecad63b3f65c628b27","0x9f012b746dcf32e843354583c9702cc020ffbf802b07e880aa91205af670802c806b23686e1ec1b8113185e38a6f8f7f20fbd13780abfb119d2bd8cc9bdd0d0797556f084d13abb69af8080e05efe1a67130fc3bce809f650307b13e3a101f060f1cf03962836d5b14e1b85bca22b9e4774031fc310480a58997a0d12da05e740ebc3d785c2d67c0a49dc41a59cc8069b3ef0cbc8253625c570e26472d4991124a290d00002408e8030000f207000080d4da56980b78ca2be50ca171be7d145de314f27b43b40b55bf536a5cba92621180434ba644f3455be4a500c35d3d856f5530254764283cfbf6d4a512a7d10bc7315c5700bd9a93e85e3ce1d20700002408d6070000dc07000080740883c6d9e7b76273df084d7ad315ce5e7b72a3c2ba7d6f4bca40cb2f9949a4802cd9c92041bf3b9302e743b05418831fb268bbf92920fd03e259bf52fbc7c4238014ab60b82a2bdd4969b94f9326278eb925d8065d1f8ec49f5ef8565f23be554680f92fc1805b58b1c1a6cd586be2fe044f84f01a8125780ff301317c50732ec2b980477cdd86e95df4b4c9618e1d03638353a9dd312d16ec83730a2d29c79111d5f68019e9c2e1de5338b5c164ebba324dfe1526d319330b1b6dfb868ff03d770c7c6b80239130238d35af424219fe20e161c55d520d9cf94e0998aead2eed05f7b075c7","0x9f0ad157e461d71fd4c1f936839a5f1f3e7fbf801c145cc01e958be57dbedca18f3fac8a3a94edd9acd6ef14f97e98be00d7e0445857060394315fe95b98f3070000200000000000000000803c0587a558258baa384d04528923ca513d49c75463147d91968503f3e81b041b80719b1a00d76f60c8fb60e7b4b732dc836fd896cc23266cb6143a8c1c6dc0274e58570e26472d4991124a290d000020000000000000000080dd201692e326905da172c3b0545df08d5b8b71f950e592fc027e4845cedfbf1a80301a4f587cf9c675cdd69154e7092c8aa6b66146f4aea52f231cea9bd4937e7080e0bc9102a86834b5ef2029eb4c635c7d14ec8347288d2d28450594ccf555f2d580b0e496325bd904415d8e1bc9607bb0a64756433cfb52007d1e36aca9bf725f38809cdc29e8e561745cfc7524d3e54f6276e075045e616c3b7e5029c190d2ab3adb80faf7461a587742f795647832bbd5e6ef3100341d3ccc7d302fa748b194a81faf80db9c2cc6a5450b2c2840f51f7666e1d6f3f67fdea291c6270e2388360500651480d4fe3e57123722d2122f49971109b3658b13ae721b425adf35e278e6ddd4bb8c804793443a067df5e20bbe8022ed078cea4d714ade8d279591ed29d8a9dc7543e2","0x9f0b3c252fcb29d88eff4f3de5de4476c3ffff801241683d47aa9b3fb66d8c0f7487fc59f1bd10304c881c11622b273195300c13800a3bee8093db45a186c8c8849974837ffedd056bdab37ae58f3de20eeec7af14807452f9e2df0171fad2c5f1c6986123576d364bf8d340223e68ae65284b588159809bad0380c50497cc0522f58a3c1453d8d43b185610fe324fc0cc7228d8ff998980118e8071912015fd706eff89e5ae76d8f70e4323e74bfdb941fe0c8cea8023ea803c65d019b1c69050ec84f4a504e601e34bf539421abc3ed6c723064108caee608062144b89d86462d2018b80b7bd0490d346492b1e0e6542dceadc0e75586ffed480b776eb5b0717b1484f78459e9600dc10ce5b05115c8e3d41a4d01af800056f6580856e7eb07f5ec3a374540f475332f36de50863af911d663d6a6edb706aa429cf80151bc8b6b8d973db34a0b1b68e9979ff834a341fc48b1cdbf245df13d828f52d80a01a24e6cfe657170d13b126c3e01111b0215a24eff033369b7b60cfa5bd2cca807108230a6fe1cdf1e22f75568aff3a246944202e35f09cbf73d0f07e711069c080d114ce0fe5b2c5962aac595cf644beb9a2702c492169017a7d8f748ff396512d8032f680133f955c58b6cf8207f48489607ade348cc0da182044f47f3898ae9ccb8077527b37043eb312f01f8dbd7b787cd52e6ab7309c22b9d0726acbe7b823889680864690cc3b4b5b858362d7513811d6666339a50cd4d389914fe6bc42d391dde7","0x9f0d3719f5b0b12c7105c073c507445948ffbf80bda1889d04876ce16534975d2b66e02de0afff6def8bea1dffd03eda431f207480abfb119d2bd8cc9bdd0d0797556f084d13abb69af8080e05efe1a67130fc3bce809f650307b13e3a101f060f1cf03962836d5b14e1b85bca22b9e4774031fc310480d728b034475ebdeb21ec9ccd4b0789d9de067199335518ee818689a8e12a416e5c570e26472d4991124a290d00002408e8030000f207000080d4da56980b78ca2be50ca171be7d145de314f27b43b40b55bf536a5cba926211804187cb3c11c97536b8d84695e7bf4aeff9df155f8a28b1038c02c220ed459f125c5700bd9a93e85e3ce1d20700002408d6070000dc07000080740883c6d9e7b76273df084d7ad315ce5e7b72a3c2ba7d6f4bca40cb2f9949a4808d0d4052300901561eec9c828af7e76beb75301e7410094feb7567269ee94c538014ab60b82a2bdd4969b94f9326278eb925d8065d1f8ec49f5ef8565f23be5546800def162e19243ae8ca7c44d4c468ab8cbb734bab24b8ce7abd1e1e5bb89d021680477cdd86e95df4b4c9618e1d03638353a9dd312d16ec83730a2d29c79111d5f68094f696b346b1988edff6a9eda556f529d7f9fcddd6648b18e27c624c7a38ae8080239130238d35af424219fe20e161c55d520d9cf94e0998aead2eed05f7b075c7","0x9f0d7fefc408aac59dbfe80a72ac8e3ce5ffff80240ea8bdcdb9af2207bdc7dccf2f37776be7a8fd40da9a38aa8d2d93d1e4b891802f9936714ad22e94ce17cbd03cf82138b1e8c1f56036141c7cdac4d84c59b02980ab22bdf6552b931ca97b4dd53bac2a0bd72e36a2ce62d47b05bb5600c0fcd69b80f5b0b73db9d3962c3f662b8a96a75a9dacaee8bc78d6df2fed1f51f68028476f80ead1dc9533482f0bced87b455c5a09832e5352fa3a36f5742ffe4c6638ae9237807f0d5fa28fc926c0ac097b81a4eb0d01d8a00bc961c2589fab32eba12401a19380f684d80f3a0b9e5797c956e2f60b32295f92b7077588a306cc7406bb7c8be66980a9e6d29bd1ee69601d4b3bc1f545c816c3d0508772b487f6b2a3d8d3e14fadd780272dc4160e2dd07b717c6bf8806d84319d6c4833d1d9521f9aae9fd39cba2a2a80a55021760cfde1808574add1ed7c1975c70b7fd8cb06948c2108d0d76bafe7ea80903db0f95244392a8ae402ab592a958518d9e3d4daf92965e68edb74ff0c00e580cc6e977f28d267cfea22b6682a6e50f22e07018f3ae0be0480d9aa3ed0b8c32c80a7346b2aa6daaab3148a872860ba9dd840b2612d428e95cc4e91c669e6adba2d80393fa0cf47b46f58f7e43db7118b669ede0830ebe876378de959a9be67fafb8280bc27122ad7e54bb0295149f750e1801eb4ba0d214735108403a4ec8366e8dae4801aa1edea744cd021c1f0104d53c05d18cb365824b269992c8478d118b8ff2a8b","0xbf0e02656c61795f64697370617463685f71756575655f72656d61696e696e675f63617061636974790fe080792dd057260f9396f4a568f8af05f29fda85685cd206c5e43696a10476c49b328028332fe594248146bfe1a7fa978e28b99859038bbddb5cc563a7c771ddfdb395809672128c947bb3ad8db86ecf6c3447834d5362d0e50d94f6448fbc25f60bd55a7c802001344608000020aaaa020000001000344608000020aaaa02000000100080fef78087f3f979878372707cbf223b2cb5f9ff6829eec0ffe7e965d5b458dba480010bed059effe5feb8c7e81ce843f6b34ef8e42d0eb56b7001d26d05525574f980c1c5d7cd0aff0514d7affea47aff45e00929fdeffcd7bcd00f573c585559c1e5"]},"validationData":\{"maxPovSize":"5242880","parentHead":"0xf8269e639f456f7c858afb20b3c9741d7872ac6c39c35b01c7a3985e9eb5aeca46ab13004362c5d2bc4b33084bde40a9243a8f09d3c052608c6403472b90ddecb5d99fc7dc687d75572ff51c839c52bf4b9f10c7b2e0280fef7c5e1409a46cf5daa7aac00c06617572612033c0910800000000045250535290a101434f999430c5800562167e4db3c107bc59dcc2accf2206e935aeeff9264b42455405056175726101010021220ea4868d1625b46205a000ddcb9d56eca0a7b94d92799373a77de951221a2be1c2b9a54cc467db9b1901481b2d916a40e8648bf2310d8591bfc2b2ef86","relayParentNumber":"22352210","relayParentStorageRoot":"0x6b08c110a064fac173d451e0641edab7647861f3c8f3cb1a2e22c0484a9ec00d"}}} | \{}  | polkadotpeople |       | setValidationData | parachainSystem | true    | false     |           | 0xea3714fd497bf310285aca2b7e8b3b0ade2dc54f65671cffefc7fcd5f8bfb879 | polkadot     | 322258        | 322258-0      | 0             | 0xb526bf7098b382ceff2fdaada7f27efa01f09fad5ccf59649acbc0d386b48aa9 | 2024-09-02T00:10:30.000Z |
</Accordion>

<Accordion title="Example Query">
  **Query with partition filter**

  ```sql theme={null}
  SELECT *
  FROM `tt-blockchain.polkadotpeople.extrinsics`
  WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
  LIMIT 100
  ```
</Accordion>

***
