Skip to main content

Tables

Settlement_Interaction_event

Settlement interaction events from the UniDex V1 protocol recording contract calls with function selectors, target addresses, and value parameters. Used for tracking cross-protocol settlement operations and DEX aggregator interactions.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_targetSTRINGAddress of the recipient contract or account receiving tokens or funds. Hex-encoded, 0x-prefixed, 42-character string.
in_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
in_selectorSTRINGFunction selector identifying the smart contract method being called. 10-character hex string including 0x prefix representing the first 4 bytes of the keccak256 hash of the function signature.
addressremovedin_valuein_targetlog_indexin_selectorblock_numberblock_timestamptransaction_hash
0x103d0634ec6c9e1f633381b16f8e2fe56a2e7372false00xdef171fe48cf0115b1d80b88dc8eab59176fee572930xa6886da9463705652023-08-16T09:15:57.000Z0x3197616a304e2d0296954d3e254b401b17e075764963ceac33df0a92b081d371
0x103d0634ec6c9e1f633381b16f8e2fe56a2e7372false00xdef171fe48cf0115b1d80b88dc8eab59176fee571620x46c67b6d440400932023-06-18T05:10:58.000Z0xb95af2246f385b476f231ebbb3637c7a3da5988bdd70ef4865a98584768f0292
0x103d0634ec6c9e1f633381b16f8e2fe56a2e7372false00x580a84c73811e1839f75d86d75d88cca0c241ff43520x095ea7b3405513042023-03-20T03:51:06.000Z0x8c7c9adb05598aeaae09c8732b725699ac7386dfa5c0861503f1740df973f9b0
Query with partition filter
SELECT *
FROM `tt-contracts.unidex_v1_polygon.Settlement_Interaction_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Settlement_Settlement_event

Settlement execution events from the UniDex v1 protocol containing solver addresses authorized to execute settlements. Records when solvers are added to or removed from the settlement allow list across multiple chains.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_solverSTRINGAddress of the solver that executed the settlement or was added to the allow list. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_solverlog_indexblock_numberblock_timestamptransaction_hash
0x103d0634ec6c9e1f633381b16f8e2fe56a2e7372false0x5870c519ee1c93573bd8f451fb0715d44f6984a8220433027252023-05-29T21:14:13.000Z0x989084b21905dbdc86c73bd965c47df95be4cb61a7140ffb8dbc4616c2cac015
0x103d0634ec6c9e1f633381b16f8e2fe56a2e7372false0x5870c519ee1c93573bd8f451fb0715d44f6984a8110433024182023-05-29T21:03:16.000Z0x53fc6e1d8e7149bee29b9c0da542fc3ea56f9b1f3d126359e461add1fb154f68
0x103d0634ec6c9e1f633381b16f8e2fe56a2e7372false0x5870c519ee1c93573bd8f451fb0715d44f6984a8399435915642023-06-06T09:33:47.000Z0x8cdb1d882dab69f5e88fbf2c4b2b1aacf1ec37d6145c8d67b05aa8f86b91b63c
Query with partition filter
SELECT *
FROM `tt-contracts.unidex_v1_polygon.Settlement_Settlement_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Settlement_Trade_event

Trade execution events from UniDex V1 settlement contracts containing order identifiers, token swap details (buy/sell tokens and amounts), owner addresses, and fee information. Used for tracking DEX (Decentralized Exchange) order settlement and trade volume analysis across multiple chains.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_sellTokenSTRINGContract address of the token being sold in the trade. Hex-encoded, 0x-prefixed, 42-character string.
in_buyTokenSTRINGContract address of the token being purchased in the trade. Hex-encoded, 0x-prefixed, 42-character string.
in_sellAmountSTRINGAmount of tokens sold in the trade. Numeric string representation of token quantity in smallest denomination.
in_buyAmountSTRINGAmount of tokens received in the trade. Numeric string representation of token quantity in smallest denomination.
in_feeAmountSTRINGFee amount charged for the flash loan or transaction. Numeric string representation of fee quantity in smallest denomination.
in_orderUidSTRINGUnique identifier for the order being executed in the trade. Hex-encoded string containing order hash, owner address, and validity timestamp.
addressremovedin_ownerlog_indexin_buyTokenin_orderUidblock_numberin_buyAmountin_feeAmountin_sellTokenin_sellAmountblock_timestamptransaction_hash
0x103d0634ec6c9e1f633381b16f8e2fe56a2e7372false0xc797dbcb6d0518b4cd8dadd58f831365bbdb0e6c1510x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700xecfd25ea47a9da60bc9d482aa62dfba05f8d9d7173c7097eb2fa5bdcff5c29ffc797dbcb6d0518b4cd8dadd58f831365bbdb0e6c642893d941030132453424354959085753178910x2791bca1f2de4661ed88a30c99a7a9449aa841745196842023-04-01T19:59:25.000Z0x8c9451401cf4579f259d99b72b6d5d29058cb30b6ed15a1d9df9b7780e531a4e
0x103d0634ec6c9e1f633381b16f8e2fe56a2e7372false0x970a0575a3e5a1c76493b5744b90bd0a490b08862000x2791bca1f2de4661ed88a30c99a7a9449aa841740x275c01a0bb4501bbc9e48070baa4425bbccca9a1797f27e0cc445d49e704c778970a0575a3e5a1c76493b5744b90bd0a490b0886ffffffff41029939519684280768841399847920x0d500b1d8e8ef31e21c99d1db9a6444d3adf12705000000000000000002023-04-01T19:51:29.000Z0x8865ae50157447756d01f3b19869bf5dd395078e5fdd13b05c5023eb6fd86e75
0x103d0634ec6c9e1f633381b16f8e2fe56a2e7372false0xfbbe90dd04250b5e789ed9d1bfba2476e524a8522500x8f3cf7ad23cd3cadbd9735aff958023239c6a0630xedefe9a10f4d77c1f8fc4f3c1d38e4d72189a8ae28be5736bd4df0ecffcfaa08fbbe90dd04250b5e789ed9d1bfba2476e524a852640fecb8403212209922875925878557587641210x2791bca1f2de4661ed88a30c99a7a9449aa84174100000002023-03-14T03:11:10.000Z0x31dbb689de886fd442901f90c698b3167e013129a2aa6f5926af6d980989fd28
Query with partition filter
SELECT *
FROM `tt-contracts.unidex_v1_polygon.Settlement_Trade_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100