Tables
LeverageManager_ManagementFeeCharged_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_leverageToken | STRING | - |
in_sharesFee | STRING | - |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
LeverageManager_Mint_event
Leverage position mint events from Seamless Protocol v1 on Ethereum, recording collateralized debt positions with debt amounts, share allocations, and collateral values. Used for tracking leveraged position openings and analyzing protocol utilization across different token markets.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_token | STRING | Token address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_sender | STRING | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_actionData | STRUCT<collateral STRING, debt STRING, shares STRING, tokenFee STRING, treasuryFee STRING> | Structured data containing financial metrics for the leverage operation. Fields include collateral, debt, shares, tokenFee, and treasuryFee amounts as numeric strings representing token quantities in smallest denomination. |
Sample Data
Sample Data
| address | removed | in_token | in_sender | log_index | block_number | in_actionData | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|
| 0x5c37eb148d4a261acd101e2b997a0f163fb3e351 | false | 0x6426811ff283fa7c78f0bc5d71858c2f79c0fc3d | 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | 147 | 23795687 | {“debt”:“6950236”,“shares”:“952561023261393633”,“tokenFee”:“0”,“collateral”:“6476332562135674880”,“treasuryFee”:“0”} | 2025-11-14T06:37:35.000Z | 0x2c9742f0426efdbd1bb0102fb2b436c39af4bdf34ca9cc7d04983dd73c7ba116 |
| 0x5c37eb148d4a261acd101e2b997a0f163fb3e351 | false | 0x6426811ff283fa7c78f0bc5d71858c2f79c0fc3d | 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | 539 | 23794271 | {“debt”:“57643594749”,“shares”:“7900580449620814002648”,“tokenFee”:“0”,“collateral”:“53714969619968418028360”,“treasuryFee”:“0”} | 2025-11-14T01:52:59.000Z | 0x806675f1ceac2cdbd58032a19dad7484eab2dd16a2a73788bcc87e81b14b5bcb |
| 0x5c37eb148d4a261acd101e2b997a0f163fb3e351 | false | 0x10041dffbe8fb54ca4dfa56f2286680ec98a37c3 | 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | 116 | 23498990 | {“debt”:“1228015790588854”,“shares”:“927928150811181”,“tokenFee”:“0”,“collateral”:“2020845655052208”,“treasuryFee”:“0”} | 2025-10-03T18:17:35.000Z | 0x96cfa3ae3171dc2ae488b6609260d2d7db1d45326a816dbcaa974fa74a97ed8d |
Example Query
Example Query
Query with partition filter
LeverageManager_Rebalance_event
Leverage position rebalancing events from Seamless Protocol on Ethereum, capturing debt and collateral adjustments with before/after position states. Contains action types, collateral ratios, and equity changes for analyzing automated position management and liquidation risk.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_token | STRING | Token address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_sender | STRING | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_stateBefore | STRUCT<collateralInDebtAsset STRING, debt STRING, equity STRING, collateralRatio STRING> | Position state snapshot before the rebalance operation executed, containing debt, equity, collateral ratio (18 decimal precision), and collateral value denominated in debt asset units. All monetary values are in token’s smallest unit (wei for ETH-based tokens). |
in_stateAfter | STRUCT<collateralInDebtAsset STRING, debt STRING, equity STRING, collateralRatio STRING> | Position state snapshot after the rebalance operation, including debt, equity, collateral ratio, and collateral value denominated in the debt asset. Values are in wei (10^18) or smallest token units, with collateralRatio expressed as a decimal with 18 decimal places. |
in_actions | ARRAY<STRUCT<actionType INT64, amount STRING>> | Array of actions executed during the rebalance operation, each containing an amount and actionType (0 for deposits, 2 for borrows). Multiple actions can occur in a single rebalance to adjust the position’s collateral ratio. |
Sample Data
Sample Data
| address | removed | in_token | in_sender | log_index | in_actions | block_number | in_stateAfter | in_stateBefore | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|---|---|
| 0x5c37eb148d4a261acd101e2b997a0f163fb3e351 | false | 0x6426811ff283fa7c78f0bc5d71858c2f79c0fc3d | 0x5e6b01ca7a604f0c7b5a97b7de6d2d46d9c30110 | 475 | [{“amount”:“387406944143914966518”,“actionType”:0},{“amount”:“485963373”,“actionType”:2}] | 23647617 | {“debt”:“689969853479”,“equity”:“120336056701”,“collateralRatio”:“1174407702154283414”,“collateralInDebtAsset”:“810305910180”} | {“debt”:“689483890106”,“equity”:“120336902044”,“collateralRatio”:“1174531854581112291”,“collateralInDebtAsset”:“809820792150”} | 2025-10-24T13:26:59.000Z | 0xd047f4f7f5e6aa3e7fd9d47195ffb3611383e423b4af1a0c9b4769cb8375692b |
| 0x5c37eb148d4a261acd101e2b997a0f163fb3e351 | false | 0x10041dffbe8fb54ca4dfa56f2286680ec98a37c3 | 0x0a4490233fd6ea02873af11c744d286dc3d6c127 | 703 | [{“amount”:“450744871966”,“actionType”:0},{“amount”:“545886594480”,“actionType”:2}] | 24068144 | {“debt”:“5489519802572903”,“equity”:“5489530210615526”,“collateralRatio”:“2000001895984165704”,“collateralInDebtAsset”:“10979050013188429”} | {“debt”:“5488973915978423”,“equity”:“5489525065654724”,“collateralRatio”:“2000100410328913497”,“collateralInDebtAsset”:“10978498981633147”} | 2025-12-22T12:26:59.000Z | 0x6d83ee1a69405f3c946de3ec336557398aabf538347f9831a7381428a1cb832a |
| 0x5c37eb148d4a261acd101e2b997a0f163fb3e351 | false | 0x98c4e43e3bde7b649e5aa2f88de1658e8d3ed1bf | 0x42fc033435f4640affed1d5cf6f3bbe240d081af | 270 | [{“amount”:“10779115588335084846”,“actionType”:0},{“amount”:“13176074465984573183”,“actionType”:2}] | 24068761 | {“debt”:“12465895108106506598175”,“equity”:“519419065266396720864”,“collateralRatio”:“1041667209675831558”,“collateralInDebtAsset”:“12985314173372903319039”} | {“debt”:“12452719033640522024992”,“equity”:“519417767794021997916”,“collateralRatio”:“1041711193064810640”,“collateralInDebtAsset”:“12972136801434544022908”} | 2025-12-22T14:30:59.000Z | 0xd7a85afe893b2cc54ef086b1ab002493a857eb51aff0ff4be54d8667f69c5a85 |
Example Query
Example Query
Query with partition filter
LeverageManager_Redeem_event
Redemption events from Seamless Protocol’s leverage manager on Ethereum, capturing when users close leveraged positions by repaying debt and withdrawing collateral. Records debt amounts, collateral shares redeemed, and associated fees for analyzing position unwinding and leverage utilization patterns.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_token | STRING | Token address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_sender | STRING | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_actionData | STRUCT<collateral STRING, debt STRING, shares STRING, tokenFee STRING, treasuryFee STRING> | Structured data containing financial metrics for the leverage operation. Fields include collateral, debt, shares, tokenFee, and treasuryFee amounts as numeric strings representing token quantities in smallest denomination. |
Sample Data
Sample Data
| address | removed | in_token | in_sender | log_index | block_number | in_actionData | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|
| 0x5c37eb148d4a261acd101e2b997a0f163fb3e351 | false | 0x98c4e43e3bde7b649e5aa2f88de1658e8d3ed1bf | 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | 384 | 23934799 | {“debt”:“1100978468271934303”,“shares”:“36882981830329131”,“tokenFee”:“0”,“collateral”:“939365185276832322”,“treasuryFee”:“0”} | 2025-12-03T18:48:47.000Z | 0x2ef62d183bb5d3f2515c3f38b027bb6c2f6489039f5de455912f6dd99888bdf3 |
| 0x5c37eb148d4a261acd101e2b997a0f163fb3e351 | false | 0x6426811ff283fa7c78f0bc5d71858c2f79c0fc3d | 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | 963 | 23934790 | {“debt”:“1097982750”,“shares”:“149855990309687289105”,“tokenFee”:“0”,“collateral”:“1019162880396477009579”,“treasuryFee”:“0”} | 2025-12-03T18:46:59.000Z | 0xa1381ee57f0b3cce5d0178696551278868368c07db75c8a6ec9ec9424668d158 |
| 0x5c37eb148d4a261acd101e2b997a0f163fb3e351 | false | 0x6426811ff283fa7c78f0bc5d71858c2f79c0fc3d | 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | 145 | 23685736 | {“debt”:“7453866”,“shares”:“1029211506544223826”,“tokenFee”:“0”,“collateral”:“6981395730270327609”,“treasuryFee”:“0”} | 2025-10-29T21:29:11.000Z | 0x5ad802ea991a0ab95a2e68b40b8966883ae5562c4457f239d04a858084993efd |
Example Query
Example Query
Query with partition filter
LeverageToken_Approval_event
ERC-20 token approval events from Seamless Protocol leverage tokens on Ethereum, capturing owner authorization grants to spender addresses. Used for tracking delegated spending permissions and protocol integration patterns.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_owner | STRING | Address that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string. |
in_spender | STRING | Address authorized to spend tokens on behalf of the owner. Hex-encoded, 0x-prefixed, 42-character string. |
in_value | STRING | Amount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values. |
Sample Data
Sample Data
| address | removed | in_owner | in_value | log_index | in_spender | block_number | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|
| 0x98c4e43e3bde7b649e5aa2f88de1658e8d3ed1bf | false | 0xd71007cbba9207138fe032feb3eaf92bedb29e3c | 1553893677115637 | 384 | 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | 24140682 | 2026-01-01T15:28:59.000Z | 0xd12155ccc411093684b6b42c5f93c4d76db2a8bb0dedc61fc831fd8819bf88a5 |
| 0x98c4e43e3bde7b649e5aa2f88de1658e8d3ed1bf | false | 0x3b57bd130baf955930feb24e4787442327c6fc17 | 204369421009896678 | 428 | 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | 23610992 | 2025-10-19T10:09:23.000Z | 0xba018aa015383c8bd1ed9192c293c13a7a7d7d8b80d3dec5eb93db2c7c08eda2 |
| 0x6426811ff283fa7c78f0bc5d71858c2f79c0fc3d | false | 0x33397fc20943bba65bab8c34d962bfb488d32d44 | 7888462545499746634 | 6775 | 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | 24029182 | 2025-12-17T01:54:59.000Z | 0xaf2c48ce247de15c85d8a4e8bb5c906b01aa6b291620a02a5b2f60e1712af605 |
Example Query
Example Query
Query with partition filter
LeverageToken_Initialized_event
Initialization events for leverage token contracts deployed on Seamless Protocol v1 on Ethereum. Tracks when new leveraged position tokens are created, useful for monitoring protocol expansion and identifying new trading instruments.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_version | STRING | Version identifier for the contract or event schema. String or integer value indicating the initialization or state version. |
Sample Data
Sample Data
| address | removed | log_index | in_version | block_number | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|
| 0x0e5eb844bc0a29c9b949137bbb13327f86809779 | false | 429 | 1 | 23741830 | 2025-11-06T17:48:35.000Z | 0x35795404d4ce40ad6934e2bdd81c6776453bae7e9df0b260a5be4828b904254f |
| 0x734a39fca4562c5a2f6337555b34e4ca78678f6f | false | 791 | 1 | 23948706 | 2025-12-05T19:06:35.000Z | 0x6a9b3bac6ee9869cc9eaf029ed89da2f6fa57ada104cc0f1e47e7cbd54f99bf6 |
| 0xee2ae3a033154de692f1e14b4e8fbad5bce18e7a | false | 553 | 1 | 23948942 | 2025-12-05T19:54:59.000Z | 0x5597e02463d9ddbab0abab88a3efb19beb19ce9b0567a0985abca489f1d569a5 |
Example Query
Example Query
Query with partition filter
LeverageToken_LeverageTokenInitialized_event
Leverage token initialization events from Seamless Protocol on Ethereum, recording when new leveraged positions are created with their trading pair, leverage multiplier, and token identifiers. Used to track available leverage products and their deployment history across different asset pairs like wstETH/WETH and stablecoin combinations.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_name | STRING | Name or label identifier for the entity being created, registered, or updated in the event. |
in_symbol | STRING | Symbol of the token involved in the transaction or event. |
Sample Data
Sample Data
| address | in_name | removed | in_symbol | log_index | block_number | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|
| 0x604d37747f3382fa51519e7542d54f1e730b97a3 | siUSD / USDC 11x Leverage Token | false | SIUSD-USDC-11x | 436 | 24019072 | 2025-12-15T16:03:47.000Z | 0x071f23bbeb2e618e52694ff1c65869d574badf185494bd972f211143d018d586 |
| 0xee2ae3a033154de692f1e14b4e8fbad5bce18e7a | wstETH / WETH 2x Leverage Token Test | false | WSTETH-WETH-2xt | 552 | 23948942 | 2025-12-05T19:54:59.000Z | 0x5597e02463d9ddbab0abab88a3efb19beb19ce9b0567a0985abca489f1d569a5 |
| 0x734a39fca4562c5a2f6337555b34e4ca78678f6f | wstETH / WETH 2x Leverage Token | false | WSTETH-WETH-2x | 790 | 23948706 | 2025-12-05T19:06:35.000Z | 0x6a9b3bac6ee9869cc9eaf029ed89da2f6fa57ada104cc0f1e47e7cbd54f99bf6 |
Example Query
Example Query
Query with partition filter
LeverageToken_Transfer_event
ERC-20 token transfer events for Seamless Protocol leverage tokens on Ethereum, tracking mints (from zero address), burns (to zero address), and transfers between accounts. Used for analyzing leverage token supply changes and holder movement patterns.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_from | STRING | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_to | STRING | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_value | STRING | Amount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values. |
Sample Data
Sample Data
| in_to | address | in_from | removed | in_value | log_index | block_number | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|
| 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | 0x6426811ff283fa7c78f0bc5d71858c2f79c0fc3d | 0x0000000000000000000000000000000000000000 | false | 361963717737530911203 | 124 | 23936806 | 2025-12-04T01:44:23.000Z | 0x00bd73b4f986923ebf01419080b102da34db38c471d0fd10afa96d9482432493 |
| 0x941fffd912cc9f4ea3c1d56aff4d2af8f163de6c | 0x6426811ff283fa7c78f0bc5d71858c2f79c0fc3d | 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | false | 361963717737530911203 | 127 | 23936806 | 2025-12-04T01:44:23.000Z | 0x00bd73b4f986923ebf01419080b102da34db38c471d0fd10afa96d9482432493 |
| 0xb0764de7eef0ac69855c431334b7bc51a96e6dba | 0x98c4e43e3bde7b649e5aa2f88de1658e8d3ed1bf | 0x0000000000000000000000000000000000000000 | false | 552824886802637127 | 152 | 23938141 | 2025-12-04T07:01:35.000Z | 0x08c6f00aa7a963c88ea8f50b45c5ef8c2e55093ce96af149d6f330bc15afff20 |
Example Query
Example Query
Query with partition filter
LeverageTokenFactory_BeaconProxyCreated_event
Leverage token proxy deployment events from Seamless Protocol on Ethereum, capturing the creation of beacon proxies with associated initialization data and unique salt identifiers. Used for tracking the deployment history and addresses of leveraged token contracts within the protocol’s factory pattern.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_proxy | STRING | Contract address of the newly created proxy contract. Hex-encoded, 0x-prefixed, 42-character string. |
in_data | STRING | Encoded input data for the contract function call. Hex-encoded byte string representing function parameters and additional call data. |
in_baseSalt | STRING | Base salt value used to deterministically generate the proxy contract address, combined with other parameters in the CREATE2 deployment. Hex-encoded 32-byte value that increments sequentially for each new proxy deployment. |
Sample Data
Sample Data
| address | in_data | removed | in_proxy | log_index | in_baseSalt | block_number | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|
| 0x603da735780e6bc7d04f3fb85c26dcccd4ff0a82 | 0x906571470000000000000000000000005c37eb148d4a261acd101e2b997a0f163fb3e351000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001f7369555344202f205553444320313178204c6576657261676520546f6b656e00000000000000000000000000000000000000000000000000000000000000000e53495553442d555344432d313178000000000000000000000000000000000000 | false | 0x604d37747f3382fa51519e7542d54f1e730b97a3 | 438 | 0x0000000000000000000000000000000000000000000000000000000000000007 | 24019072 | 2025-12-15T16:03:47.000Z | 0x071f23bbeb2e618e52694ff1c65869d574badf185494bd972f211143d018d586 |
| 0x603da735780e6bc7d04f3fb85c26dcccd4ff0a82 | 0x906571470000000000000000000000005c37eb148d4a261acd101e2b997a0f163fb3e351000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000002850542d524c502d3444454332303235202f2055534443203278204c6576657261676520546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001750542d524c502d34444543323032352d555344432d3278000000000000000000 | false | 0x0e5eb844bc0a29c9b949137bbb13327f86809779 | 430 | 0x0000000000000000000000000000000000000000000000000000000000000003 | 23741830 | 2025-11-06T17:48:35.000Z | 0x35795404d4ce40ad6934e2bdd81c6776453bae7e9df0b260a5be4828b904254f |
| 0x603da735780e6bc7d04f3fb85c26dcccd4ff0a82 | 0x906571470000000000000000000000005c37eb148d4a261acd101e2b997a0f163fb3e351000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001f777374455448202f2057455448203278204c6576657261676520546f6b656e00000000000000000000000000000000000000000000000000000000000000000e5753544554482d574554482d3278000000000000000000000000000000000000 | false | 0x734a39fca4562c5a2f6337555b34e4ca78678f6f | 792 | 0x0000000000000000000000000000000000000000000000000000000000000005 | 23948706 | 2025-12-05T19:06:35.000Z | 0x6a9b3bac6ee9869cc9eaf029ed89da2f6fa57ada104cc0f1e47e7cbd54f99bf6 |
Example Query
Example Query
Query with partition filter